Browse Source

采购付款一览表取消采购单合计

guq 7 years ago
parent
commit
70bc235134
1 changed files with 6 additions and 7 deletions
  1. 6 7
      frontend/saas-web/app/view/purchase/report/PurchasePay.js

+ 6 - 7
frontend/saas-web/app/view/purchase/report/PurchasePay.js

@@ -58,19 +58,18 @@ Ext.define('saas.view.purchase.report.PurchasePay', {
         exportFormat: 'Amount',
         dataIndex: 'pbd_amount',
         width: 110,
-        summaryType: 'sum',
         renderer: function(v) {
             var arr = (v + '.').split('.');
             var xr = (new Array(arr[1].length > 2 ? 2 : arr[1].length)).fill('0');
             var format = '0,000.' + xr.join('');
             return Ext.util.Format.number(v, format);
         },
-        summaryRenderer: function(v) {
-            var arr = (v + '.').split('.');
-            var xr = (new Array(arr[1].length > 2 ? 2 : arr[1].length)).fill('0');
-            var format = '0,000.' + xr.join('');
-            return Ext.util.Format.number(v, format);
-        }
+        // summaryRenderer: function(v) {
+        //     var arr = (v + '.').split('.');
+        //     var xr = (new Array(arr[1].length > 2 ? 2 : arr[1].length)).fill('0');
+        //     var format = '0,000.' + xr.join('');
+        //     return Ext.util.Format.number(v, format);
+        // }
     }, {//∑求和
         text: '本次付款',
         dataIndex: 'pbd_nowbalance',