|
|
@@ -42,6 +42,10 @@ Ext.define('saas.view.money.report.TotalRecDetail', {
|
|
|
dataIndex: 'cm_custname',
|
|
|
width: 200,
|
|
|
}, {
|
|
|
+ text: '期初预收',
|
|
|
+ dataIndex: 'cm_beginpreamount',
|
|
|
+ width: 150
|
|
|
+ },{
|
|
|
text: '期初应收',
|
|
|
dataIndex: 'cm_beginamount',
|
|
|
xtype: 'numbercolumn',
|
|
|
@@ -53,7 +57,7 @@ Ext.define('saas.view.money.report.TotalRecDetail', {
|
|
|
return Ext.util.Format.number(v, format);
|
|
|
}
|
|
|
}, {
|
|
|
- text: '增加应收',
|
|
|
+ text: '本期应收',
|
|
|
xtype: 'numbercolumn',
|
|
|
dataIndex: 'cm_nowamount',
|
|
|
width: 150,
|
|
|
@@ -64,9 +68,9 @@ Ext.define('saas.view.money.report.TotalRecDetail', {
|
|
|
return Ext.util.Format.number(v, format);
|
|
|
}
|
|
|
}, {
|
|
|
- text: '增加预收',
|
|
|
+ text: '本期核销',
|
|
|
xtype: 'numbercolumn',
|
|
|
- dataIndex: 'cm_nowpreamount',
|
|
|
+ dataIndex: 'cm_nowpayamount',
|
|
|
width: 150,
|
|
|
renderer: function(v) {
|
|
|
var arr = (v + '.').split('.');
|
|
|
@@ -75,6 +79,11 @@ Ext.define('saas.view.money.report.TotalRecDetail', {
|
|
|
return Ext.util.Format.number(v, format);
|
|
|
}
|
|
|
}, {
|
|
|
+ text: '预收余额',
|
|
|
+ xtype: 'numbercolumn',
|
|
|
+ dataIndex: 'cm_endpreamount',
|
|
|
+ width: 150
|
|
|
+ }, {
|
|
|
text: '应收余额',
|
|
|
dataIndex: 'cm_endamount',
|
|
|
xtype: 'numbercolumn',
|