PriceRule: Filter bei Kunde/Lieferantenkontext gefixt
authorSven Schöling <s.schoeling@linet-services.de>
Tue, 7 Oct 2014 15:09:35 +0000 (17:09 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Thu, 18 Dec 2014 15:18:51 +0000 (16:18 +0100)
templates/webpages/customer_vendor/tabs/price_rules.html

index dc87a68..fb5c695 100644 (file)
@@ -9,10 +9,10 @@
     $(function() {
       window.setTimeout(function(){
 [%- IF SELF.is_customer %]
-        kivi.CustomerVendor.inline_report('#price_rules_customer_report', 'controller.pl', { action: 'PriceRule/list', 'filter.item_type_matches[].customer': [% SELF.cv.id %], type: 'customer', inline: 1 });
+        kivi.CustomerVendor.inline_report('#price_rules_customer_report', 'controller.pl', { action: 'PriceRule/list', 'filter.item_type_matches[].customer': [% SELF.cv.id %], 'filter.type': 'customer', inline: 1 });
 [%- END %]
 [%- IF SELF.is_vendor %]
-        kivi.CustomerVendor.inline_report('#price_rules_vendor_report', 'controller.pl', { action: 'PriceRule/list', 'filter.item_type_matches[].vendor': [% SELF.cv.id %], type: 'vendor', inline: 1 });
+        kivi.CustomerVendor.inline_report('#price_rules_vendor_report', 'controller.pl', { action: 'PriceRule/list', 'filter.item_type_matches[].vendor': [% SELF.cv.id %], 'filter.type': 'vendor', inline: 1 });
 [%- END %]
       }, 200);
     })