CatchBatchByClient.js 457 B

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