| 12345678910111213141516171819202122232425262728 |
- Ext.define('saas.view.money.recBalance.QueryPanelController', {
- extend: 'saas.view.core.query.QueryPanelController',
- alias: 'controller.money-recbalance-querypanel',
-
- init: function (form) {
- var me = this;
- this.control({
- 'dbfindtrigger[name=rb_custname]':{
- beforerender:function(f){
- Ext.apply(f,{
- //赋值
- dbfinds:[{
- from: 'id', to: 'rb_custid',ignore:true
- }, {
- from:'cu_code', to:'rb_custcode'
- },{
- from:'cu_name', to:'rb_custname'
- },{
- from:'cu_leftamount', to:'cu_leftamount'
- }]
- }) ;
- }
- },
- });
- }
- });
|