PrintPrice.js 429 B

123456789101112131415161718
  1. /**
  2. * (有价)打印按钮
  3. * 和PrintwithPrice一样,只是某些客户需要默认有价
  4. */
  5. Ext.define('erp.view.core.button.PrintPrice', {
  6. extend : 'Ext.Button',
  7. alias : 'widget.erpPrintPriceButton',
  8. iconCls : 'x-button-icon-print',
  9. cls : 'x-btn-gray',
  10. text : $I18N.common.button.erpPrintPriceButton,
  11. style : {
  12. marginLeft : '10px'
  13. },
  14. width : 60,
  15. initComponent : function() {
  16. this.callParent(arguments);
  17. }
  18. });