ZxbzsBarcode.js 453 B

123456789101112131415161718
  1. /**
  2. * 按照最小包装数批量生成条码
  3. */
  4. Ext.define('erp.view.core.button.ZxbzsBarcode',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpZxbzsBarcodeButton',
  7. cls: 'x-btn-gray',
  8. iconCls: 'x-button-icon-submit',
  9. id: 'ZxbzsBarcodebtn',
  10. text: $I18N.common.button.erpZxbzsBarcodeButton,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. width: 150,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });