AgreeToPrice.js 389 B

123456789101112131415
  1. /**
  2. * 转价格库按钮(采纳)
  3. */
  4. Ext.define('erp.view.core.button.AgreeToPrice',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpAgreeToPriceButton',
  7. text: $I18N.common.button.erpAgreeToPriceButton,
  8. iconCls: 'x-button-icon-check',
  9. cls: 'x-btn-gray',
  10. id: 'erpAgreeToPriceButton',
  11. initComponent : function(){
  12. this.callParent(arguments);
  13. },
  14. width: 90
  15. });