PrintAll.js 413 B

123456789101112131415161718
  1. /**
  2. * 条码维护中全部打印
  3. */
  4. Ext.define('erp.view.core.button.PrintAll',{
  5. id:'printAll',
  6. extend: 'Ext.Button',
  7. alias: 'widget.erpPrintAllButton',
  8. iconCls: 'x-button-icon-print',
  9. cls: 'x-btn-gray',
  10. text: $I18N.common.button.erpPrintAllButton,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. width: 120,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });