zhuth 7 years ago
parent
commit
35d8a50ccd

+ 2 - 1
frontend/saas-web/app/view/money/report/CustomerCheck.js

@@ -41,7 +41,7 @@ Ext.define('saas.view.money.report.CustomerCheckCheck', {
         }, {
             text: '单据日期',
             dataIndex: 'pi_date',
-            width: 200
+            xtype: 'datecolumn'
         }, {
             text: '序号',
             dataIndex: 'pd_pdno',
@@ -56,6 +56,7 @@ Ext.define('saas.view.money.report.CustomerCheckCheck', {
             hidden: true
         },{
             text: '物料编号',
+            width: 200,
             dataIndex: 'pr_code'
         }, {
             text: '物料名称',

+ 5 - 4
frontend/saas-web/app/view/money/report/PayDetail.js

@@ -38,6 +38,7 @@ Ext.define('saas.view.money.report.PayDetail', {
             dataIndex:'pi_vendcode'
         },{
             text:'供应商名称',
+            width: 200,
             dataIndex:'pi_vendname'
         }, {
             text: '单据类型',
@@ -45,19 +46,17 @@ Ext.define('saas.view.money.report.PayDetail', {
             width: 200
         }, {
             text: '单据日期',
+            xtype: 'datecolumn',
             dataIndex: 'pb_date',
-            width: 200
         }, {
             text: '采购员',
             dataIndex: 'pu_buyercode'
         },{
-            text: '单据日期',
-            dataIndex: 'pb_date'
-        }, {
             text: '期初应付余额',
             xtype: 'numbercolumn',
             dataIndex: 've_beginapamount',
             xtype: 'numbercolumn',
+            width: 140,
             summaryType: 'sum',
             summaryRenderer: function(v) {
                 var arr = (v + '.').split('.');
@@ -70,6 +69,7 @@ Ext.define('saas.view.money.report.PayDetail', {
             dataIndex: 'pb_pdamount',
             xtype: 'numbercolumn',
             summaryType: 'sum',
+            width: 140,
             summaryRenderer: function(v) {
                 var arr = (v + '.').split('.');
                 var xr = (new Array(arr[1].length)).fill('0');
@@ -88,6 +88,7 @@ Ext.define('saas.view.money.report.PayDetail', {
             }
         }, {
             text: '应付日期',
+            xtype: 'datecolumn',
             dataIndex: 'mustdate',
         }, {
             text: '单据总金额',

+ 1 - 2
frontend/saas-web/app/view/money/report/VendorCheck.js

@@ -42,7 +42,6 @@ Ext.define('saas.view.money.report.VendorCheck', {
             text: '单据日期',
             dataIndex: 'pi_date',
             xtype:'datecolumn',
-            format:'Y-m-d'
         }, {
             text: '序号',
             dataIndex: 'pd_pdno'
@@ -57,7 +56,7 @@ Ext.define('saas.view.money.report.VendorCheck', {
         },{
             text: '物料编号',
             dataIndex: 'pr_code',
-            width: 180
+            width: 200
         }, {
             text: '物料名称',
             dataIndex: 'pr_detail',

+ 2 - 1
frontend/saas-web/app/view/purchase/report/Purchase.js

@@ -69,7 +69,8 @@ Ext.define('saas.view.purchase.report.Purchase', {
         xtype: 'numbercolumn'
     }, {
         text: '物料编号',
-        dataIndex: 'pd_prodcode'
+        dataIndex: 'pd_prodcode',
+        width: 200
     }, {
         text: '物料名称',
         dataIndex: 'pr_detail',