+function price_chooser_item_row(clicked) {
+ var row = $(clicked).parents("tbody").first();
+ var item_id_dom = $(row).find('[name="orderitem_ids[+]"]');
+
+ var data = $('#order_form').serialize();
+ data += '&action=Order/price_popup';
+ data += '&item_id=' + item_id_dom.val();
+
+ $.post("controller.pl", data, kivi.eval_json_result);
+}
+
+function update_price_source(item_id, source, descr, price_str) {
+ var row = $('#item_' + item_id).parents("tbody").first();
+ var source_elt = $(row).find('[name="order.orderitems[].active_price_source"]');
+ var price_elt = $(row).find('[name="order.orderitems[].sellprice_as_number"]');
+ var button_elt = $(row).find('[name="price_chooser_button"]');
+
+ button_elt.val(descr);
+ source_elt.val(source);
+ if (price_str) price_elt.val(price_str);
+
+ recalc_amounts_and_taxes();
+ kivi.io.close_dialog();
+}
+
+function update_discount_source(item_id, source, discount_str) {
+ var row = $('#item_' + item_id).parents("tbody").first();
+ var source_elt = $(row).find('[name="order.orderitems[].active_discount_source"]');
+ var discount_elt = $(row).find('[name="order.orderitems[].discount_as_percent"]');
+
+ source_elt.val(source);
+ if (discount_str) discount_elt.val(discount_str);
+
+ recalc_amounts_and_taxes();
+}
+