X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fkivi.PriceRule.js;h=aba59873c5a7c555697c75e7931bd79ef606ba55;hb=d21bdcaf73d55909d130fbbe26137fd45114adde;hp=00ed4fb3657777a90e9c96a0d380fea78ad62e80;hpb=c383fc0b2cf6b284a428ecca41c5f00190ca640b;p=kivitendo-erp.git diff --git a/js/kivi.PriceRule.js b/js/kivi.PriceRule.js index 00ed4fb36..aba59873c 100644 --- a/js/kivi.PriceRule.js +++ b/js/kivi.PriceRule.js @@ -1,4 +1,5 @@ namespace('kivi.PriceRule', function(ns) { + "use strict"; ns.add_new_row = function (type) { var data = { @@ -6,14 +7,14 @@ namespace('kivi.PriceRule', function(ns) { type: type }; $.post('controller.pl', data, kivi.eval_json_result); - } + }; ns.open_price_type_help_popup = function() { kivi.popup_dialog({ url: 'controller.pl?action=PriceRule/price_type_help', dialog: { title: kivi.t8('Price Types') }, }); - } + }; ns.on_change_filter_type = function() { var val = $('#price_rule_filter_type').val(); @@ -27,11 +28,34 @@ namespace('kivi.PriceRule', function(ns) { $('#price_rule_filter_vendor_tr').hide(); $('#price_rule_filter_customer_tr').show(); } - if (val == '') { + if (val === '') { $('#price_rule_filter_customer_tr').show(); $('#price_rule_filter_vendor_tr').show(); } - } + }; + + ns.inline_report = function(target, source, data){ + $.ajax({ + url: source, + success: function (rsp) { + $(target).html(rsp); + $(target).find('.paginate').find('a').click(function(event){ ns.redirect_event(event, target) }); + $(target).find('a.report-generator-header-link').click(function(event){ ns.redirect_event(event, target) }); + }, + data: data, + }); + }; + ns.redirect_event = function(event, target){ + event.preventDefault(); + ns.inline_report(target, event.target + '', {}); + }; + + ns.load_price_rules_for_part = function(id) { + window.setTimeout(function(){ + ns.inline_report('#price_rules_customer_report', 'controller.pl', { action: 'PriceRule/list', 'filter.item_type_matches[].part': id, 'filter.type': 'customer', inline: 1 }); + ns.inline_report('#price_rules_vendor_report', 'controller.pl', { action: 'PriceRule/list', 'filter.item_type_matches[].part': id, 'filter.type': 'vendor', inline: 1 }); + }, 200); + }; $(function() { $('#price_rule_item_add').click(function() { @@ -43,4 +67,5 @@ namespace('kivi.PriceRule', function(ns) { $('#price_rule_price_type_help').click(ns.open_price_type_help_popup); $('#price_rule_filter_type').change(ns.on_change_filter_type); }); + });