CatchBatchByOrder.js 450 B

123456789101112131415161718
  1. /**
  2. * 按订单抓取批号
  3. */
  4. Ext.define('erp.view.core.button.CatchBatchByOrder',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpCatchBatchByOrderButton',
  7. iconCls: 'x-button-icon-check',
  8. cls: 'x-btn-gray',
  9. text: $I18N.common.button.erpCatchBatchByOrderButton,
  10. style: {
  11. marginLeft: '10px'
  12. },
  13. width: 120,
  14. id:'catchBatchByOrder',
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });