ModifyMaterial.js 320 B

1234567891011121314
  1. /**
  2. * 修改用料
  3. */
  4. Ext.define('erp.view.core.button.ModifyMaterial', {
  5. extend : 'Ext.Button',
  6. alias : 'widget.erpModifyMaterialButton',
  7. cls : 'x-btn-gray',
  8. text : $I18N.common.button.erpModifyMaterialButton,
  9. width : 90,
  10. id : 'ModifyMaterial',
  11. initComponent : function() {
  12. this.callParent(arguments);
  13. }
  14. });