MakeDownPut.js 392 B

12345678910111213141516
  1. /**
  2. * 制造单下放
  3. */
  4. Ext.define('erp.view.core.button.MakeDownPut',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpMakeDownPutButton',
  7. text: $I18N.common.button.erpMakeDownPutButton,
  8. tooltip: '下放',
  9. iconCls: 'x-button-icon-save',
  10. cls: 'x-btn-gray',
  11. id: 'erpMakeDownPutButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 60
  16. });