12345678910111213141516 |
- /**
- * 制造单号段维护
- */
- Ext.define('erp.view.core.button.MakeSNCode',{
- extend: 'Ext.Button',
- alias: 'widget.erpMakeSNCodeButton',
- text: $I18N.common.button.erpMakeSNCodeButton,
- tooltip: '序列号清单导入',
- iconCls: 'x-button-icon-save',
- cls: 'x-btn-gray',
- id: 'erpMakeSNCodeButton',
- initComponent : function(){
- this.callParent(arguments);
- },
- width: 125
- });
|