Browse Source

物料库存数量金额表选中分仓库存后多了一个金额列

zhuth 7 years ago
parent
commit
39bcedb0c5
1 changed files with 0 additions and 18 deletions
  1. 0 18
      frontend/saas-web/app/view/stock/report/DataList.js

+ 0 - 18
frontend/saas-web/app/view/stock/report/DataList.js

@@ -112,24 +112,6 @@ Ext.define('saas.view.stock.report.DataList', {
             var format = '0.' + xr.join();
             return Ext.util.Format.number(v, format);
         }
-    }, {
-        text: "金额",
-        xtype: 'numbercolumn',
-        dataIndex: "rc_amount",
-        width: 150,
-        renderer: function (v) {
-            var arr = (v + '.').split('.');
-            var xr = (new Array(arr[1].length > 2 ? 2 : arr[1].length)).fill('0');
-            var format = '0.' + xr.join();
-            return Ext.util.Format.number(v, format);
-        },
-        summaryType: 'sum',
-        summaryRenderer: function(v) {
-            var arr = (v + '.').split('.');
-            var xr = (new Array(arr[1].length > 2 ? 2 : arr[1].length)).fill('0');
-            var format = '0.' + xr.join();
-            return Ext.util.Format.number(v, format);
-        }
     }],
 
     reportColumns: [{