| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- Ext.QuickTips.init();
- Ext.define('erp.controller.fa.gla.UnWriteVoucher', {
- extend: 'Ext.app.Controller',
- FormUtil: Ext.create('erp.util.FormUtil'),
- BaseUtil: Ext.create('erp.util.BaseUtil'),
- GridUtil: Ext.create('erp.util.GridUtil'),
- views:[
- 'fa.gla.UnWriteVoucher', 'core.button.ResAccounted', 'core.grid.Panel2'
- ],
- init:function(){
- var me = this;
- this.control({
- 'erpGridPanel2': {
- afterrender: function(grid) {
- var f = Ext.getCmp('yearmonth');
- this.getCurrentMonth(grid, f);
- }
- },
- 'erpResAccountedButton': {
- click: function(btn) {
- var grid = btn.ownerCt.ownerCt.down('gridpanel');
- grid.setLoading(true);
- Ext.Ajax.request({
- url: basePath + 'fa/ars/resAccountVoucher.action',
- params: {
- month: me.currentMonth
- },
- callback: function(opt, s, r) {
- grid.setLoading(false);
- var rs = Ext.decode(r.responseText);
- if(rs.result) {
- showMessage('提示', rs.result);
- window.location.reload();
- } else if(rs.exceptionInfo) {
- showError(rs.exceptionInfo);
- } else {
- alert('OK!');
- window.location.reload();
- }
- }
- });
- }
- }
- });
- },
- getCurrentMonth: function(grid, f) {
- var me = this;
- Ext.Ajax.request({
- url: basePath + 'fa/getMonth.action',
- params: {
- type: 'MONTH-A'
- },
- callback: function(opt, s, r) {
- var rs = Ext.decode(r.responseText);
- if(rs.data) {
- me.currentMonth = rs.data.PD_DETNO;
- me.datestart = Ext.Date.format(new Date(rs.data.PD_STARTDATE), 'Ymd');
- me.dateend = Ext.Date.format(new Date(rs.data.PD_ENDDATE), 'Ymd');
- f.setText(rs.data.PD_DETNO + ' 从' + Ext.Date.format(new Date(rs.data.PD_STARTDATE), 'Y-m-d')
- + ' 到 ' + Ext.Date.format(new Date(rs.data.PD_ENDDATE), 'Y-m-d'));
- grid.GridUtil.loadNewStore(grid, {caller: caller, condition: 'vo_yearmonth=' +
- me.currentMonth + ' AND vo_statuscode=\'ACCOUNT\''});
- }
- }
- });
- }
- });
|