| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- 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: [{
- format : "Y-m-d",
- 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: []
- }
- });
|