| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- 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 : "datefield",
- name : "ft_date",
- fieldLabel : "单据日期"
- }],
- moreQueryFormItems: [],
- queryGridConfig: {
- idField: 'id',
- codeField: 'ft_code',
- addTitle: '其它收入单',
- addXtype: 'money-fundtransfer-formpanel',
- defaultCondition:'',
- baseVastUrl: '/api/money/fundtransfer/',
- baseColumn: [{
- text: 'id',
- dataIndex: 'id',
- width: 0,
- xtype: 'numbercolumn'
- }, {
- 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: '金额',
- dataIndex: 'ftd_nowbalance',
- xtype : "numbercolumn",
- width: 120
- }, {
- text: '结算方式',
- dataIndex: 'ftd_paymethod',
- width: 120
- }, {
- text: '备注',
- dataIndex: 'ft_remark',
- width: 250,
- flex: 1
- }],
- relativeColumn: []
- }
- });
|