TurnMake.js 427 B

123456789101112131415161718
  1. /**
  2. * 制造通知单转制造单按钮
  3. */
  4. Ext.define('erp.view.core.button.TurnMake',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpTurnMakeButton',
  7. iconCls: 'x-button-icon-submit',
  8. cls: 'x-btn-gray',
  9. text: $I18N.common.button.erpTurnMakeButton,
  10. style: {
  11. marginLeft: '10px'
  12. },
  13. id:'turnmake',
  14. width: 100,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });