APBillDown.js 516 B

1234567891011121314151617181920212223
  1. Ext.define('erp.view.b2b.fa.APBillDown',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. initComponent : function(){
  5. var me = this;
  6. Ext.apply(me, {
  7. items: [{
  8. xtype: 'erpFormPanel',
  9. anchor: '100% 50%',
  10. getIdUrl: 'common/getId.action?seq=APBillDown_SEQ',
  11. keyField: 'ab_id',
  12. codeField: 'ab_code'
  13. },{
  14. xtype: 'erpGridPanel2',
  15. anchor: '100% 50%',
  16. detno: 'abd_detno',
  17. keyField: 'abd_id',
  18. mainField: 'abd_abid'
  19. }]
  20. });
  21. me.callParent(arguments);
  22. }
  23. });