| 1234567891011121314151617181920212223242526 |
- Ext.define('saas.view.money.report.CustomerCheckController', {
- extend: 'saas.view.core.report.ReportPanelController',
- alias: 'controller.money-report-customercheck',
- init: function (form) {
- this.control({
- 'dbfindtrigger[name=pi_custname]':{
- beforerender:function(f){
- Ext.apply(f,{
- //赋值
- dbfinds:[{
- from: 'cu_name', to: 'pi_custname'
- }],
- }) ;
- }
- }
- });
- },
- pi_custname_change: function(field, value) {
- var me = this,
- reportPanel = me.getView();
- reportPanel.reportTitle = '客户对账单(' + value + ')'
- }
- });
|