Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / templates / webpages / ic / sales_price_information.html
diff --git a/templates/webpages/ic/sales_price_information.html b/templates/webpages/ic/sales_price_information.html
deleted file mode 100644 (file)
index 4f5794c..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<div id='sales_price_information_sales_order'></div>
-<div id='sales_price_information_sales_quotation'></div>
-
-<script type='text/javascript'>
-  function get_report(target, source, data){
-    $.ajax({
-      url:        source,
-//      beforeSend: function () { $(target).html('<img src="image/spinner.gif">') },
-      success:    function (rsp) {
-        $(target).html(rsp);
-        $(target).find('.paginate').find('a').click(function(event){ redirect_event(event, target) });
-        $(target).find('a.report-generator-header-link').click(function(event){ redirect_event(event, target) });
-      },
-      data:       data,
-    });
-  };
-
-  function redirect_event(event, target){
-    event.preventDefault();
-    get_report(target, event.target + '', {});
-  }
-
-  $('.tabwidget').on('tabsbeforeactivate', function(event, ui){
-    if (ui.newPanel.attr('id') == 'sales_price_information') {
-      get_report('#sales_price_information_sales_order', 'controller.pl', { action: 'SellPriceInformation/list', 'filter.part.id': [% id %], 'filter.order.type': 'sales_order' });
-      get_report('#sales_price_information_sales_quotation', 'controller.pl', { action: 'SellPriceInformation/list', 'filter.part.id': [% id %], 'filter.order.type': 'sales_quotation' });
-    }
-    return 1;
-  });
-
-
-</script>