ApplicationInvalid.js 387 B

123456789101112131415161718
  1. Ext.define('erp.view.scm.purchase.ApplicationInvalid',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. xtype: 'erpFormPanel',
  10. anchor: '100% 100%',
  11. keyField: 'ap_id',
  12. codeField: 'ap_code',
  13. statusField: 'ap_statuscode'
  14. }]
  15. });
  16. me.callParent(arguments);
  17. }
  18. });