|
|
@@ -8,78 +8,66 @@ Ext.define('saas.view.money.fundtransfer.QueryPanel', {
|
|
|
viewName: 'money-fundtransfer-querypanel',
|
|
|
|
|
|
queryFormItems: [{
|
|
|
- xtype: 'hidden',
|
|
|
- name: 'or_id',
|
|
|
- fieldLabel: 'ID',
|
|
|
- allowBlank: true,
|
|
|
- columnWidth: 0
|
|
|
- }, {
|
|
|
- xtype : 'hidden',
|
|
|
- name : 'or_custid',
|
|
|
- fieldLabel : '客户ID'
|
|
|
- }, {
|
|
|
- xtype: 'hidden',
|
|
|
- name: 'or_custcode',
|
|
|
- fieldLabel: '客户编号'
|
|
|
- }, {
|
|
|
- xtype: 'dbfindtrigger',
|
|
|
- name: 'or_custname',
|
|
|
- fieldLabel: '客户名称'
|
|
|
- }, {
|
|
|
- xtype : 'hidden',
|
|
|
- name : 'or_bankid',
|
|
|
- fieldLabel : '账户ID'
|
|
|
- }, {
|
|
|
- xtype: 'hidden',
|
|
|
- name: 'or_bankcode',
|
|
|
- fieldLabel: '账户编号'
|
|
|
- }, {
|
|
|
- xtype: 'dbfindtrigger',
|
|
|
- name: 'or_bankname',
|
|
|
- fieldLabel: '账户名称'
|
|
|
+ format : "Y-m-d",
|
|
|
+ xtype : "datefield",
|
|
|
+ name : "ft_date",
|
|
|
+ fieldLabel : "单据日期"
|
|
|
}],
|
|
|
moreQueryFormItems: [],
|
|
|
queryGridConfig: {
|
|
|
- idField: 'or_id',
|
|
|
- codeField: 'or_code',
|
|
|
+ idField: 'id',
|
|
|
+ codeField: 'ft_code',
|
|
|
addTitle: '其它收入单',
|
|
|
addXtype: 'money-fundtransfer-formpanel',
|
|
|
defaultCondition:'',
|
|
|
baseVastUrl: basePath+'money/fundtransfer/',
|
|
|
baseColumn: [{
|
|
|
text: 'id',
|
|
|
- dataIndex: 'or_id',
|
|
|
+ dataIndex: 'id',
|
|
|
width: 0,
|
|
|
xtype: 'numbercolumn'
|
|
|
}, {
|
|
|
text: '单据编号',
|
|
|
- dataIndex: 'or_code',
|
|
|
+ dataIndex: 'ft_code',
|
|
|
width: 120
|
|
|
}, {
|
|
|
text: '单据状态',
|
|
|
- dataIndex: 'or_status',
|
|
|
+ dataIndex: 'ft_status',
|
|
|
width: 120
|
|
|
}, {
|
|
|
text: '录入人',
|
|
|
- dataIndex: 'or_recorder',
|
|
|
+ dataIndex: 'ft_recorder',
|
|
|
width: 120
|
|
|
}, {
|
|
|
text: '单据日期',
|
|
|
- dataIndex: 'or_date',
|
|
|
+ dataIndex: 'ft_date',
|
|
|
xtype: 'datecolumn',
|
|
|
width: 200
|
|
|
}, {
|
|
|
- text: '客户名称',
|
|
|
- dataIndex: 'or_custname',
|
|
|
+ text: '期间',
|
|
|
+ dataIndex: 'ftd_ym',
|
|
|
+ xtype : "numbercolumn",
|
|
|
+ width: 120
|
|
|
+ }, {
|
|
|
+ text: '转出账户',
|
|
|
+ dataIndex: 'ftd_bankname',
|
|
|
+ width: 120
|
|
|
+ }, {
|
|
|
+ text: '转入账户',
|
|
|
+ dataIndex: 'ftd_inbankname',
|
|
|
width: 120
|
|
|
}, {
|
|
|
text: '金额',
|
|
|
- dataIndex: 'or_amount',
|
|
|
- xtype: 'numbercolumn',
|
|
|
+ dataIndex: 'ftd_nowbalance',
|
|
|
+ xtype : "numbercolumn",
|
|
|
+ width: 120
|
|
|
+ }, {
|
|
|
+ text: '结算方式',
|
|
|
+ dataIndex: 'ftd_paymethod',
|
|
|
width: 120
|
|
|
}, {
|
|
|
text: '备注',
|
|
|
- dataIndex: 'or_remark',
|
|
|
+ dataIndex: 'ft_remark',
|
|
|
width: 250,
|
|
|
flex: 1
|
|
|
}],
|