|
|
@@ -97,26 +97,71 @@ Ext.define('saas.view.money.fundtransfer.QueryPanel', {
|
|
|
dataIndex: 'ftd_bankname',
|
|
|
width: 150
|
|
|
}, {
|
|
|
+ text: "转出币别",
|
|
|
+ dataIndex: "ftd_currency",
|
|
|
+ align:'center'
|
|
|
+ }, {
|
|
|
+ text: "转出金额(元)",
|
|
|
+ xtype: 'numbercolumn',
|
|
|
+ dataIndex: "ftd_nowbalance",
|
|
|
+ allowBlank: false,
|
|
|
+ width: 150.0,
|
|
|
+ editor: {
|
|
|
+ xtype: "numberfield",
|
|
|
+ decimalPrecision: 2
|
|
|
+ },
|
|
|
+ renderer: function(v, m, r) {
|
|
|
+ return saas.util.BaseUtil.numberFormat(v, 2, true);
|
|
|
+ },
|
|
|
+ summaryType: 'sum',
|
|
|
+ summaryRenderer: function(v, d, f, m) {
|
|
|
+ return saas.util.BaseUtil.numberFormat(v, 2, true);
|
|
|
+ }
|
|
|
+ },{
|
|
|
text: '转入账户',
|
|
|
dataIndex: 'ftd_inbankname',
|
|
|
width: 150
|
|
|
}, {
|
|
|
- text: '金额(元)',
|
|
|
+ text: "转入币别",
|
|
|
+ dataIndex: "ftd_incurrency",
|
|
|
+ align:'center'
|
|
|
+ }, {
|
|
|
+ text: "转入金额(元)",
|
|
|
xtype: 'numbercolumn',
|
|
|
- dataIndex: 'ftd_nowbalance',
|
|
|
- width: 110,
|
|
|
+ dataIndex: "ftd_innowbalance",
|
|
|
+ allowBlank: false,
|
|
|
+ width: 150.0,
|
|
|
+ editor: {
|
|
|
+ xtype: "numberfield",
|
|
|
+ decimalPrecision: 2
|
|
|
+ },
|
|
|
renderer: function(v, m, r) {
|
|
|
return saas.util.BaseUtil.numberFormat(v, 2, true);
|
|
|
},
|
|
|
+ summaryType: 'sum',
|
|
|
+ summaryRenderer: function(v, d, f, m) {
|
|
|
+ return saas.util.BaseUtil.numberFormat(v, 2, true);
|
|
|
+ }
|
|
|
+ },{
|
|
|
+ text: '转存汇率(%)',
|
|
|
+ xtype: 'numbercolumn',
|
|
|
+ dataIndex: 'ftd_rate',
|
|
|
+ width: 110,
|
|
|
+ renderer: function(v, m, r) {
|
|
|
+ return saas.util.BaseUtil.numberFormat(v, 6, true);
|
|
|
+ },
|
|
|
}, {
|
|
|
+ text: "结算号",
|
|
|
+ dataIndex: "ftd_paycode",
|
|
|
+ width: 150,
|
|
|
+ editor: {
|
|
|
+ xtype: ''
|
|
|
+ }
|
|
|
+ },{
|
|
|
text: '结算方式',
|
|
|
dataIndex: 'ftd_paymethod',
|
|
|
width: 150
|
|
|
- }, {
|
|
|
- text: '结算号',
|
|
|
- dataIndex: 'ftd_paycode',
|
|
|
- hidden: true
|
|
|
- }, {
|
|
|
+ }, {
|
|
|
text: '审核状态',
|
|
|
dataIndex: 'ft_status',
|
|
|
align: 'center',
|