@@ -26,12 +26,20 @@ Ext.define('saas.view.money.fundtransfer.QueryPanel', {
columnWidth: 0.5
},{
xtype: 'multicombo',
- name: 'ft_status',
+ name: 'ft_statuscode',
fieldLabel: '审核状态',
datas: [
- ["已审核", "已审核"],
- ["未审核", "未审核"]
- ]
+ ["ALL", "全部"],
+ ["AUDITED", "已审核"],
+ ["UNAUDITED", "未审核"]
+ ],
+ getCondition: function(value) {
+ if(value == 'ALL') {
+ return '1=1';
+ }else {
+ return 'ft_statuscode=\'' + value + '\'';
+ }
name : "ft_status",
fieldLabel : "结算方式",
@@ -49,12 +49,20 @@ Ext.define('saas.view.money.othreceipts.QueryPanel', {
operation: 'between'
}, {
- name: 'or_status',
+ name: 'or_statuscode',
+ return 'or_statuscode=\'' + value + '\'';
name: 'ord_type',
fieldLabel: '收入类别',
@@ -48,12 +48,20 @@ Ext.define('saas.view.money.othspendings.QueryPanel', {
fieldLabel: '单据日期'
- name: 'os_status',
+ name: 'os_statuscode',
+ return 'os_statuscode=\'' + value + '\'';
fieldLabel: '支出类别',
@@ -31,12 +31,20 @@ Ext.define('saas.view.money.paybalance.QueryPanel', {
- name: 'pb_status',
+ name: 'pd_statuscode',
+ return 'pu_statuscode=\'' + value + '\'';
}],
moreQueryFormItems: [],
queryGridConfig: {
@@ -39,12 +39,20 @@ Ext.define('saas.view.money.recBalance.QueryPanel', {
- name: 'rb_status',
+ name: 'rb_statuscode',
+ return 'rb_statuscode=\'' + value + '\'';