BillRecord.js 320 B

12345678910111213141516
  1. Ext.define('erp.view.plm.record.BillRecord', {
  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% 100%',
  10. autoScroll : true,
  11. keyField : 'wr_id'
  12. } ]
  13. });
  14. me.callParent(arguments);
  15. }
  16. });