| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- Ext.QuickTips.init();
- Ext.define('erp.controller.scm.reserve.UnPeriodsdetail', {
- extend: 'Ext.app.Controller',
- FormUtil: Ext.create('erp.util.FormUtil'),
- BaseUtil: Ext.create('erp.util.BaseUtil'),
- views:[
- 'scm.reserve.UnPeriodsdetail','core.button.Close',
- 'core.button.UnCheckPost','core.form.MonthDateField'
- ],
- init:function(){
- var me = this;
- this.control({
- 'erpCloseButton': {
- click: function(btn){
- me.FormUtil.onClose();
- }
- },
- 'erpUnCheckPostButton':{
- click: function(btn){
- this.confirm();
- }
- },
- 'monthdatefield': {
- afterrender: function(f) {
- me.getCurrentYearmonth(f);
- }
- }
- });
- },
- getForm: function(btn){
- return btn.ownerCt.ownerCt;
- },
- confirm: function(){
- Ext.Ajax.request({
- url : basePath + "scm/reserve/unperiodsdetail.action",
- params:{
- param:{date:Ext.getCmp('date').value}
- },
- method:'post',
- callback:function(options,success,response){
- var localJson = new Ext.decode(response.responseText);
- if(localJson.success){
- Ext.Msg.alert("提示","操作成功!");
- } else {
- if(localJson.exceptionInfo){
- var str = localJson.exceptionInfo;
- if(str.trim().substr(0, 12) == 'AFTERSUCCESS'){//特殊情况:操作成功,但是出现警告,允许刷新页面
- str = str.replace('AFTERSUCCESS', '');
- showMessage('提示', str);
- window.location.reload();
- } else {
- showError(str);return;
- }
- }
- }
- }
- });
- },
- getCurrentYearmonth: function(f) {
- Ext.Ajax.request({
- url: basePath + 'scm/reserve/getCurrentYearmonth.action',
- method: 'GET',
- callback: function(opt, s, r) {
- var rs = Ext.decode(r.responseText);
- if(rs.exceptionInfo) {
- showError(rs.exceptionInfo);
- } else if(rs.data) {
- f.setValue(rs.data);
- }
- }
- });
- }
- });
|