SetMMQTY.js 428 B

1234567891011121314151617
  1. /**
  2. * 确认实际发料数
  3. */
  4. Ext.define('erp.view.core.button.SetMMQTY',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpSetMMQTYButton',
  7. iconCls: 'x-button-icon-submit',
  8. cls: 'x-btn-gray',
  9. tooltip: '确认实际可发数',
  10. id: 'erpSetMMQTYButton',
  11. formBind: true,
  12. text: $I18N.common.button.erpSetMMQTYButton,
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. },
  16. width: 130
  17. });