CopyAll.js 438 B

1234567891011121314151617
  1. /**
  2. * 单据复制功能,将单据所有复制一份,流水号、编号和ID重新获取
  3. */
  4. Ext.define('erp.view.core.button.CopyAll',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpCopyButton',
  7. text: $I18N.common.button.erpCopyButton,
  8. iconCls: 'x-button-icon-copy',
  9. cls: 'x-btn-gray',
  10. width: 60,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. initComponent : function(){
  15. this.callParent(arguments);
  16. }
  17. });