DeliveryOrder: price_source feature entfernt
[kivitendo-erp.git] / js / kivi.DeliveryOrder.js
index ea6e14b..c28033f 100644 (file)
@@ -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;