|
|
@@ -100,10 +100,11 @@ Ext.define('saas.view.document.customer.FormPanel', {
|
|
|
xtype : "numberfield",
|
|
|
hideTrigger:true,
|
|
|
name : "cu_beginaramount",
|
|
|
- fieldLabel : "期初应收",
|
|
|
+ fieldLabel : "期初应收(元)",
|
|
|
allowBlank : true,
|
|
|
columnWidth : 0.25,
|
|
|
decimalPrecision: 2,
|
|
|
+ thousandSeparator: ',',
|
|
|
minValue:0,
|
|
|
group: '交易信息',
|
|
|
renderer : function(v) {
|
|
|
@@ -113,10 +114,11 @@ Ext.define('saas.view.document.customer.FormPanel', {
|
|
|
xtype : "numberfield",
|
|
|
hideTrigger:true,
|
|
|
name : "cu_beginprerecamount",
|
|
|
- fieldLabel : "期初预收",
|
|
|
+ fieldLabel : "期初预收(元)",
|
|
|
allowBlank : true,
|
|
|
columnWidth : 0.25,
|
|
|
decimalPrecision: 2,
|
|
|
+ thousandSeparator: ',',
|
|
|
minValue:0,
|
|
|
group: '交易信息',
|
|
|
renderer : function(v) {
|
|
|
@@ -125,11 +127,12 @@ Ext.define('saas.view.document.customer.FormPanel', {
|
|
|
},{
|
|
|
xtype:'textfield',
|
|
|
name : "cu_leftamount",
|
|
|
- fieldLabel : "应收款余额",
|
|
|
+ fieldLabel : "应收余额(元)",
|
|
|
allowBlank : true,
|
|
|
readOnly:true,
|
|
|
columnWidth : 0.25,
|
|
|
decimalPrecision: 2,
|
|
|
+ thousandSeparator: ',',
|
|
|
group: '交易信息',
|
|
|
renderer : function(v) {
|
|
|
return saas.util.BaseUtil.numberFormat(v, 2, true);
|