Browse Source

应收/付账款明细取消分页

zhuth 7 years ago
parent
commit
767d8a7a68

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

@@ -11,6 +11,8 @@ Ext.define('saas.view.money.report.PayDetail', {
     defaultCondition: null,
     reportTitle: '应付账款明细表',
     QueryWidth:0.25,
+    allowPaging: false,
+
     //筛选:供应商、日期(必填)
     searchItems: [ {
         xtype: 'vendorDbfindTrigger',
@@ -117,5 +119,7 @@ Ext.define('saas.view.money.report.PayDetail', {
             text: '供应商名称',
             dataIndex: 'pd_vendname',
             hidden:true
+        }, {
+            flex: 1
         }]
 });

+ 4 - 0
frontend/saas-web/app/view/money/report/RecDetail.js

@@ -12,6 +12,8 @@ Ext.define('saas.view.money.report.RecDetail', {
     defaultCondition: null,
     reportTitle: '应收账款明细',
     QueryWidth:0.25,
+    allowPaging: false,
+
     //筛选:客户、日期(必填)
     searchItems: [ {
         xtype: 'customerDbfindTrigger',
@@ -123,5 +125,7 @@ Ext.define('saas.view.money.report.RecDetail', {
             text: '客户名称',
             dataIndex: 'rd_custname',
             hidden:true
+        }, {
+            flex: 1
         }]
 });