LossUpdate.js 432 B

12345678910111213141516171819
  1. /**
  2. * 更新物料损耗率按钮
  3. */
  4. Ext.define('erp.view.core.button.LossUpdate',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpLossUpdateButton',
  7. iconCls: 'x-button-icon-check',
  8. cls: 'x-btn-gray',
  9. id:'lossupdatebutton',
  10. text: $I18N.common.button.erpLossUpdateButton,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. width: 120,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });