【发布时间】:2017-05-23 07:54:26
【问题描述】:
我尝试实现一个简单的订单管理系统,用户可以在其中创建新命令并向它们添加两种类型的产品。当用户选择产品并输入数量时,总价会动态计算并显示在最后一个字段中。为了向订单中添加新产品线,我使用 gem Cocoon。
我的问题是我无法计算每个添加了 Cocoon 的新产品的总价。每次我输入一个数量,我都会从第一行得到总价。有没有人可以帮我解决这个问题?
这是我的观点/订单/_form.html.erb:
<%= form_for @order do |f| %>
<div id="item">
<%= f.fields_for :line_items do |li| %>
<%= render partial: "line_item_fields", locals: {f: li} %>
<% end %>
<div class="link form-group"><%= link_to_add_association "Ajouter un produit", f, :line_items %></div>
</div>
<div class="actions">
<%= f.submit "Commander", class: "btn btn-primary" %>
</div>
<% end %>
这是我的观点/订单/_line_items.html.erb:
<div class="nested-fields form-inline">
<div class="form-group">
<%= f.label "Type de produit : " %>
<% if current_user.recruiter.company.pricing_profile.name == ("JobCards single" || "TM Basic") %>
<%= f.select(:name, options_for_select([['Job card', 'Job card']]), {}, {class: "product_name"}) %>
<% else %>
<%= f.select(:name, options_for_select([['Job card', 'Job card'], ['Job page', 'Job page']]), {}, {class: "product_name"}) %>
<% end %>
</div>
<div class="form-group">
<%= f.label "Quantité : " %>
<%= f.text_field :quantity, class: "quantity" %>
</div>
<div class="form-group">
<%= f.label "Prix total : " %>
<%= f.text_field :price, class: "total_price" %>
</div>
<%= link_to_remove_association "Supprimer", f %>
</div>
这是我的资产/javascripts/orders.js.erb:
$(document).ready(function() {
function getTotal(p, q) {
var r = 0;
if (q <= 4) {
r = 1;
} else if (q >= 5 && q <= 9) {
r = 0.85;
} else if (q >= 10 && q <= 24) {
r = 0.75
} else if (q >= 25 && q <= 49) {
r = 0.65
} else if (q >= 50 && q <= 99) {
r = 0.55
} else if (q >= 100 && q <= 249) {
r = 0.45
} else if (q >= 250 && q <= 500) {
r = 0.40
}
return q * p * r;
}
function getUnitCost(product_name) {
var unit_cost = 0;
if(product_name == "Job page") {
unit_cost = gon.jp_unit_cost
} else if (product_name == "Job card") {
unit_cost = gon.jc_unit_cost
}
return unit_cost;
}
$(document).on('change', '.product_name', function() {
var q = $(".quantity").val('');
$('.total_price').val('');
});
$(document).on('keyup', '.quantity', function() {
var product_name = $(".product_name").val();
var q = $(".quantity").val();
var p = getUnitCost(product_name);
var total = getTotal(p, q);
$('.total_price').val(total)
});
$("#item").on('cocoon:after-insert', function(e, insertedItem) {
var quantity = insertedItem.find('.quantity').attr('id');
$(document).on("keyup", '#' + quantity, function() {
var q = $("#" + quantity).val();
var product_name = $("#" + insertedItem.find('.product_name').attr('id')).val();
var p = getUnitCost(product_name);
var total = getTotal(p, q);
$("#" + insertedItem.find('.total_price').attr('id')).val(total);
});
});
【问题讨论】:
标签: javascript ruby-on-rails cocoon-gem