X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/c9b0fd1a799f6992917f1b5fb92b661ad18cb30c..ea402a2c8bf7200a1ebaddec3428fb9af8e20fc0:/js/kivi.DeliveryOrder.js diff --git a/js/kivi.DeliveryOrder.js b/js/kivi.DeliveryOrder.js index ea6e14ba5..c28033f98 100644 --- a/js/kivi.DeliveryOrder.js +++ b/js/kivi.DeliveryOrder.js @@ -516,74 +516,6 @@ namespace('kivi.Order', function(ns) { $.post("controller.pl", data, kivi.eval_json_result); }; - ns.update_price_source = function(item_id, source, descr, price_str, price_editable) { - var row = $('#item_' + item_id).parents("tbody").first(); - var source_elt = $(row).find('[name="order.orderitems[].active_price_source"]'); - var button_elt = $(row).find('[name="price_chooser_button"]'); - - button_elt.val(button_elt.val().replace(/.*\|/, descr + " |")); - source_elt.val(source); - - var editable_div_elt = $(row).find('[name="editable_price"]'); - var not_editable_div_elt = $(row).find('[name="not_editable_price"]'); - if (price_editable == 1 && source === '') { - // editable - $(editable_div_elt).show(); - $(not_editable_div_elt).hide(); - $(editable_div_elt).find(':input').prop("disabled", false); - $(not_editable_div_elt).find(':input').prop("disabled", true); - } else { - // not editable - $(editable_div_elt).hide(); - $(not_editable_div_elt).show(); - $(editable_div_elt).find(':input').prop("disabled", true); - $(not_editable_div_elt).find(':input').prop("disabled", false); - } - - if (price_str) { - var price_elt = $(row).find('[name="order.orderitems[].sellprice_as_number"]'); - var html_elt = $(row).find('[name="sellprice_text"]'); - price_elt.val(price_str); - html_elt.html(price_str); - } - - kivi.io.close_dialog(); - }; - - ns.update_discount_source = function(item_id, source, descr, discount_str, price_editable) { - var row = $('#item_' + item_id).parents("tbody").first(); - var source_elt = $(row).find('[name="order.orderitems[].active_discount_source"]'); - var button_elt = $(row).find('[name="price_chooser_button"]'); - - button_elt.val(button_elt.val().replace(/\|.*/, "| " + descr)); - source_elt.val(source); - - var editable_div_elt = $(row).find('[name="editable_discount"]'); - var not_editable_div_elt = $(row).find('[name="not_editable_discount"]'); - if (price_editable == 1 && source === '') { - // editable - $(editable_div_elt).show(); - $(not_editable_div_elt).hide(); - $(editable_div_elt).find(':input').prop("disabled", false); - $(not_editable_div_elt).find(':input').prop("disabled", true); - } else { - // not editable - $(editable_div_elt).hide(); - $(not_editable_div_elt).show(); - $(editable_div_elt).find(':input').prop("disabled", true); - $(not_editable_div_elt).find(':input').prop("disabled", false); - } - - if (discount_str) { - var discount_elt = $(row).find('[name="order.orderitems[].discount_as_percent"]'); - var html_elt = $(row).find('[name="discount_text"]'); - discount_elt.val(discount_str); - html_elt.html(discount_str); - } - - kivi.io.close_dialog(); - }; - ns.show_vc_details_dialog = function() { if (!ns.check_cv()) return; var vc;