| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- Ext.define('saas.view.money.fundtransfer.QueryPanel', {
- extend: 'saas.view.core.query.QueryPanel',
- xtype: 'money-fundtransfer-querypanel',
- controller: 'money-fundtransfer-querypanel',
- viewModel: 'money-fundtransfer-querypanel',
- viewName: 'money-fundtransfer-querypanel',
-
- queryFormItems: [{
- xtype : "condatefield",
- name : "ft_date",
- fieldLabel : "单据日期",
- columnWidth: 0.5
- }],
- moreQueryFormItems: [],
- queryGridConfig: {
- idField: 'id',
- codeField: 'ft_code',
- addTitle: '资金转存',
- addXtype: 'money-fundtransfer-formpanel',
- defaultCondition:'',
- baseVastUrl: '/api/money/fundtransfer/',
- baseColumn: [{
- text: 'id',
- dataIndex: 'id',
- width: 0
- }, {
- text: '单据编号',
- dataIndex: 'ft_code',
- width: 200
- }, {
- text: '审核状态',
- dataIndex: 'ft_status',
- width: 120
- }, {
- text: '录入人',
- dataIndex: 'ft_recorder',
- width: 120
- }, {
- text: '单据日期',
- dataIndex: 'ft_date',
- xtype: 'datecolumn',
- width: 200
- }, {
- text: '期间',
- dataIndex: 'ftd_ym',
- xtype : "numbercolumn",
- width: 120
- }, {
- text: '转出账户',
- dataIndex: 'ftd_bankname',
- width: 120
- }, {
- text: '转入账户',
- dataIndex: 'ftd_inbankname',
- width: 120
- }, {
- text: '金额',
- xtype: 'numbercolumn',
- dataIndex: 'ftd_nowbalance',
- width: 120,
- renderer : function(v) {
- var arr = (v + '.').split('.');
- var xr = (new Array(arr[1].length)).fill('0');
- var format = '0,000.' + xr.join();
- return Ext.util.Format.number(v, format);
- },
- }, {
- text: '结算方式',
- dataIndex: 'ftd_paymethod',
- width: 120
- }, {
- text: '备注',
- dataIndex: 'ft_remark',
- width: 250
- }],
- relativeColumn: []
- }
- });
|