Ext.namespace('Shipping'); Shipping.MsProfitFieldSetEdit = function (config) { Ext.applyIf(this, config); this.initUIComponents(); window.Shipping.MsProfitFieldSetEdit.superclass.constructor.call(this); }; Ext.extend(Shipping.MsProfitFieldSetEdit, Ext.Panel, { ParentWin: null, OpStatus: 'add', StoreList: null, EditRecord: null, initUIComponents: function () { this.serialNo = 0; this.workSerialNo = 0; this.bodyDel = []; //#region 编辑form //枚举参照相关(编辑form) //表参照相关(编辑form) //编辑form this.myCheckboxService = new Ext.form.CheckboxGroup({ id: 'myService', xtype: 'checkboxgroup', columns: 6, items: [{ boxLabel: 'RMB应收', inputValue: true, name: 'RMBDR' }, { boxLabel: 'RMB应付', inputValue: true, name: 'RMBCR' }, { boxLabel: 'USD应收', inputValue: true, name: 'USDDR' }, { boxLabel: 'USD应付', inputValue: true, name: 'USDCR' }, { boxLabel: '其他应收', inputValue: true, name: 'OTDR' }, { boxLabel: '其他应付', inputValue: true, name: 'OTCR' } ] }); this.myCheckboxService2 = new Ext.form.CheckboxGroup({ id: 'myService2', xtype: 'checkboxgroup', columns: 6, items: [{ boxLabel: '合计应收', inputValue: true, name: 'TTLDR' }, { boxLabel: '合计应付', inputValue: true, name: 'TTLCR' }, { boxLabel: 'RMB利润', inputValue: true, name: 'RMBPROFIT' }, { boxLabel: 'USD利润', inputValue: true, name: 'USDPROFIT' }, { boxLabel: '其他利润', inputValue: true, name: 'OTPROFIT' }, { boxLabel: '合计利润', inputValue: true, name: 'TTLPROFIT' } ] }); this.myCheckboxService3 = new Ext.form.CheckboxGroup({ id: 'myService3', xtype: 'checkboxgroup', columns: 6, items: [{ boxLabel: '利润率', inputValue: true, name: 'PROFITRATE' },{ boxLabel: 'TEU', inputValue: true, name: 'TEU' } ] }); this.formEdit = Ext.widget('form', { region: 'center', frame: true, bodyPadding: 5, autoScroll: true, fieldDefaults: { margins: '2 2 2 2', labelAlign: 'right', flex: 1, labelWidth: 90, msgTarget: 'qtip' }, items: [ {//fieldset 1 xtype: 'fieldset', defaultType: 'textfield', layout: 'anchor', defaults: { anchor: '100%' }, items: [{ fieldLabel: '业务编号', name: 'GID', hidden: true }, this.myCheckboxService, this.myCheckboxService2, this.myCheckboxService3 ]//end items(fieldset 1) }//end fieldset 1 ]//end root items }); //end this.formEdit //#endregion //#region 按钮Toolbar this.panelBtn = new Ext.Panel({ region: "north", tbar: [ { text: "保存", iconCls: "btnsave", handler: function (button, event) { this.Save('0'); }, scope: this }, { text: "保存并关闭", handler: function (button, event) { this.Save('1'); }, scope: this } ] }); //end 按钮Toolbar //#endregion //#region 布局 //控件布局 Ext.apply(this, { items: [this.panelBtn, this.formEdit] }); //#endregion //绑定查询窗体 this.ParentWin = window.parent.opener; //初始化数据 this.InitData(); }, //end initUIComponents InitData: function () { this.opStatus = 'add'; var condition = ''; this.LoadData(this.opStatus, condition); }, //end InitData LoadData: function (opstatus, condition) { this.serialNo = 0; this.workSerialNo = 0; this.bodyDel = []; this.opStatus = opstatus; Ext.Ajax.request({ waitMsg: '正在查询主表数据...', url: '/MvcShipping/MsRptOpProfitMonth/GetProfitFieldSet', params: { handle: opstatus, condition: condition }, callback: function (options, success, response) { if (success) { var result = Ext.JSON.decode(response.responseText); if (!result.Success) { Ext.Msg.show({ title: '提示', msg: result.Message, icon: Ext.MessageBox.ERROR, buttons: Ext.Msg.OK }); return; } var data = result.data; this.formEdit.getForm().reset(); this.formEdit.getForm().setValues(data); } else { Ext.MessageBox.alert('请求出现错误,请重试', response.responseText); } }, scope: this }); }, // end LoadDate Save: function (type) { var basicForm = this.formEdit.getForm(); if (!basicForm.isValid()) { return; } basicForm.findField('GID').setDisabled(false); var data = basicForm.getValues(); basicForm.findField('GID').setDisabled(true); if (this.opStatus == 'add') { data.GID = NewGuid(); } Ext.Msg.wait('正在保存数据, 请稍侯..'); Ext.Ajax.request({ waitMsg: '正在保存数据...', url: '/MvcShipping/MsRptOpProfitMonth/SaveProfitFieldSet', scope: this, params: { opstatus: this.opStatus, data: Ext.JSON.encode(data) }, callback: function (options, success, response) { if (success) { Ext.MessageBox.hide(); var jsonresult = Ext.JSON.decode(response.responseText); if (jsonresult.Success) { var returnData = jsonresult.Data; this.formEdit.getForm().setValues(returnData); if (type == '0') { this.opStatus = 'edit'; basicForm.findField('GID').setDisabled(true); } else if (type == '1') { window.close(); } else { this.LoadData('add', ''); basicForm.findField('GID').setDisabled(false); } } else { Ext.Msg.show({ title: '错误', msg: jsonresult.Message, icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK }); } } else { Ext.Msg.show({ title: '请重试', msg: '服务器响应出错', icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK }); } } }); } });