TurnCustomerCheck.js 607 B

12345678910111213141516171819202122
  1. /**
  2. * 保存按钮
  3. * 适用于单据新增页面的保存,
  4. * 使用时,只需传递一个提交后台的saveUrl即可
  5. * @author yingp
  6. * @date 2012-08-03 10:45:49
  7. */
  8. Ext.define('erp.view.core.button.TurnCustomerCheck',{
  9. extend: 'Ext.Button',
  10. alias: 'widget.erpTurnCustomerCheckButton',
  11. iconCls: 'x-button-icon-delete',
  12. cls: 'x-btn-gray',
  13. id: 'TurnCustomerCheck',
  14. //tooltip: '批量转录用申请单',
  15. text: $I18N.common.button.erpTurnCustomerCheckButton,
  16. initComponent : function(){
  17. this.callParent(arguments);
  18. },
  19. width: 120,
  20. handler: function(){
  21. }
  22. });