AccountDetailsController.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. Ext.define('saas.view.money.report.AccountDetailsController', {
  2. extend: 'saas.view.core.base.BasePanelController',
  3. alias: 'controller.money-report-accountdetails',
  4. // init: function (form) {
  5. // this.control({
  6. // // 供应商编号
  7. // 'dbfindtrigger[name=ve_name]':{
  8. // beforerender:function(f){
  9. // Ext.apply(f,{
  10. // dbfinds:[{
  11. // from:'ve_name',to:'ve_name'
  12. // }],
  13. // }) ;
  14. // }
  15. // },
  16. // // 客户编号
  17. // 'dbfindtrigger[name=cu_name]':{
  18. // beforerender:function(f){
  19. // Ext.apply(f,{
  20. // dbfinds:[{
  21. // from:'cu_name',to:'cu_name'
  22. // }],
  23. // }) ;
  24. // }
  25. // }
  26. // });
  27. // }
  28. init: function (form) {
  29. var me = this;
  30. this.control({
  31. });
  32. }
  33. });