X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fkivi.Part.js;h=4f813bbf4713183b1267db65283b22970576eee7;hb=8f7bb9d5dc2b961a2efc5f241dec43583f7ca21c;hp=9e79932efec22fd6a9f2cb6a90b74912da1b0ed3;hpb=62f2141002f5b8c11fa9d881473fd3bc469b4eef;p=kivitendo-erp.git diff --git a/js/kivi.Part.js b/js/kivi.Part.js index 9e79932ef..4f813bbf4 100644 --- a/js/kivi.Part.js +++ b/js/kivi.Part.js @@ -245,6 +245,7 @@ namespace('kivi.Part', function(ns) { var data = $('#makemodel_table :input').serializeArray(); data.push({ name: 'action', value: 'Part/add_makemodel_row' }); + $('#add_makemodel').data('customer_vendor_picker').clear(); $.post("controller.pl", data, kivi.eval_json_result); }; @@ -269,10 +270,11 @@ namespace('kivi.Part', function(ns) { }; ns.add_customerprice_row = function() { - if ($('#add_customerpriceid').val() === '') return; + if ($('#add_customerprice').val() === '') return; var data = $('#customerprice_table :input').serializeArray(); data.push({ name: 'action', value: 'Part/add_customerprice_row' }); + $('#add_customerprice').data('customer_vendor_picker').clear(); $.post("controller.pl", data, kivi.eval_json_result); }; @@ -332,14 +334,18 @@ namespace('kivi.Part', function(ns) { }, ajax_data: function(term) { var data = { - 'filter.all:substr:multi::ilike': term, - 'filter.obsolete': 0, current: this.$real.val(), }; if (this.o.part_type) data['filter.part_type'] = this.o.part_type.split(','); + if (this.o.status) { + if (this.o.status == 'active') data['filter.obsolete'] = 0; + if (this.o.status == 'obsolete') data['filter.obsolete'] = 1; + } else + data['filter.obsolete'] = 0; + if (this.o.classification_id) data['filter.classification_id'] = this.o.classification_id.split(','); @@ -349,6 +355,15 @@ namespace('kivi.Part', function(ns) { if (this.o.convertible_unit) data['filter.unit_obj.convertible_to'] = this.o.convertible_unit; + var filter_name = 'all'; + if (this.o.with_makemodel) { + filter_name = 'all_with_makemodel'; + } + if (this.o.with_customer_partnumber) { + filter_name = 'all_with_customer_partnumber'; + } + data['filter.' + filter_name + ':substr:multi::ilike'] = term; + return data; }, set_item: function(item) { @@ -494,6 +509,9 @@ namespace('kivi.Part', function(ns) { }, select: function(event, ui) { self.set_item(ui.item); + if (self.o.action.commit_one) { + self.run_action(self.o.action.commit_one); + } }, search: function(event, ui) { if ((event.which == KEY.SHIFT) || (event.which == KEY.CTRL) || (event.which == KEY.ALT)) @@ -677,6 +695,11 @@ namespace('kivi.Part', function(ns) { var self = this; var data = $('#multi_items_form').serializeArray(); data.push({ name: 'type', value: self.pp.type }); + var ppdata = self.pp.ajax_data(function(){ + var val = $('#multi_items_filter').val(); + return val === undefined ? '' : val + }); + $.each(Object.keys(ppdata), function() {data.push({ name: 'multi_items.' + this, value: ppdata[this]});}); $.ajax({ url: 'controller.pl?action=Part/multi_items_update_result', data: data, @@ -744,6 +767,14 @@ namespace('kivi.Part', function(ns) { if (!$(elt).data('part_picker')) $(elt).data('part_picker', new kivi.Part.Picker($(elt))); }); + + kivi.run_once_for('#customerprice_rows', 'customerprice_row_sort_renumber', function(elt) { + $(elt).on('sortstop', kivi.Part.customerprice_renumber_positions); + }); + + kivi.run_once_for('#makemodel_rows', 'makemodel_row_sort_renumber', function(elt) { + $(elt).on('sortstop', kivi.Part.makemodel_renumber_positions); + }); } ns.init = function() { @@ -755,22 +786,6 @@ namespace('kivi.Part', function(ns) { ns.reformat_number(event); }); - $('.add_makemodel_input').keydown(function(event) { - if(event.keyCode == 13) { - event.preventDefault(); - ns.add_makemodel_row(); - return false; - } - }); - - $('.add_customerprice_input').keydown(function(event) { - if(event.keyCode == 13) { - event.preventDefault(); - ns.add_customerprice_row(); - return false; - } - }); - $('#part_warehouse_id').change(kivi.Part.reload_bin_selection); ns.init();