Ext.namespace('DsTruck'); DsTruck.MsTruckPluIndex = function (config) { Ext.applyIf(this, config); this.initUIComponents(); window.DsTruck.MsTruckPluIndex.superclass.constructor.call(this); }; Ext.extend(DsTruck.MsTruckPluIndex, Ext.Panel, { PageSize: 30, OprationStatus: null, //仅当弹出界面时使用 SelectedRecord: null, initUIComponents: function () { //定义数据集 this.storeList = Ext.create('Ext.data.Store', { pageSize: this.PageSize, model: 'MsTruckPlu', remoteSort: true, proxy: { type: 'ajax', url: '/TruckMng/MsTruckPlu/GetDataList', reader: { id: 'PluCode', root: 'data', totalProperty: 'totalCount' } } }); //定义Grid this.gridList = new Ext.grid.GridPanel({ store: this.storeList, enableHdMenu: false, region: 'center', loadMask: { msg: "数据加载中,请稍等..." }, trackMouseOver: true, disableSelection: false, columns: [{ sortable: true, dataIndex: 'PluCode', header: '配件编码', width: 120 }, { sortable: true, dataIndex: 'PluName', header: '配件名称', width: 160 }, { sortable: true, dataIndex: 'Unit', header: '单位', width: 60 }, { sortable: true, dataIndex: 'Spec', header: '规格', width: 160 }, { sortable: true, dataIndex: 'PluType', header: '配件分类', renderer: function (value, p, record) { return value + '-' + record.data.PluType_Ref; }, width: 120 }, { sortable: true, dataIndex: 'Weight', header: '包装重量', width: 160 }, { sortable: true, dataIndex: 'Volume', header: '包装体积', width: 160 }, { sortable: true, dataIndex: 'Produce', header: '产地', width: 120 }, { sortable: true, dataIndex: 'Grade', header: '等级', width: 120 }, { sortable: true, dataIndex: 'ScEtpName', header: '生产厂家', width: 200 }, { sortable: true, dataIndex: 'CargoNo', header: '货号', width: 120 }, { sortable: true, dataIndex: 'LrDate', header: '录入日期', width: 80 }, { sortable: true, dataIndex: 'UserCode', header: '录入人编码', width: 60 }, { sortable: true, dataIndex: 'UserName', header: '录入人姓名', width: 80 }, { sortable: true, dataIndex: 'Price', header: '价格', width: 160 }, { sortable: true, dataIndex: 'PluCcYq', header: '存储要求', width: 200 } ], // paging bar on the bottom bbar: Ext.create('Ext.PagingToolbar', { store: this.storeList, displayInfo: true, displayMsg: '当前显示 {0} - {1}条记录 /共 {2}条记录', emptyMsg: "没有数据" }) }); this.gridList.addListener('itemdblclick', function (dataview, record, item, index, e, b) { this.SelectedRecord = record; this.OprationStatus = 'edit'; DsOpenEditWin('/TruckMng/MsTruckPlu/Edit'); }, this); //#region formSearch this.formSearch = Ext.widget('form', { frame: true, region: 'center', bodyPadding: 5, fieldDefaults: { margins: '2 2 2 2', labelAlign: 'right', flex: 1, labelWidth: 90, msgTarget: 'qtip' }, items: [ {//fieldset 1 xtype: 'container', defaultType: 'textfield', layout: 'anchor', defaults: { anchor: '100%' }, items: [{ xtype: 'container', layout: 'hbox', defaultType: 'textfield', items: [{ fieldLabel: '配件编码', name: 'PluCode' }, { fieldLabel: '配件名称', name: 'PluName' }, { fieldLabel: '规格', name: 'Spec' } ] }, { xtype: 'container', layout: 'hbox', defaultType: 'textfield', items: [{ fieldLabel: '生产厂家', name: 'ScEtpName' }, { fieldLabel: '货号', name: 'CargoNo' }, { fieldLabel: '公司代码', name: 'OrgCode' } ] } ]//end items(fieldset 1) }//end fieldset 1 ]//end root items }); //#endregion formSearch //查询工具条 this.panelBtn = new Ext.Panel({ region: "north", tbar: [ { text: "新建", iconCls: "btnadd", handler: function (button, event) { this.OprationStatus = 'add'; DsOpenEditWin('/TruckMng/MsTruckPlu/Edit'); }, scope: this }, { text: "删除", iconCls: "btndelete", handler: function (button, event) { this.onDeleteClick(button, event); }, scope: this }, '-', { text: "执行查询", iconCls: "btnrefresh", handler: function (button, event) { this.onRefreshClick(button, event); }, scope: this }, { text: "重置条件", iconCls: "btnreset", handler: function (button, event) { }, scope: this }, '-', { text: "打印", iconCls: "btnprint", handler: function (button, event) { this.Print(); }, scope: this } ] }); this.panelTop = new Ext.Panel({ layout: "border", region: "north", height: 100, items: [this.formSearch, this.panelBtn] }); Ext.apply(this, { items: [this.panelTop, this.gridList] }); this.storeList.on('beforeload', function (store) { var sql = this.getCondition(); Ext.apply(store.proxy.extraParams, { condition: sql }); }, this); }, //end initUIComponents onRefreshClick: function (button, event) { var sql = this.getCondition(); this.storeList.load({ params: { start: 0, limit: this.PageSize, sort: '', condition: sql }, waitMsg: "正在查询数据...", scope: this }); }, onDeleteClick: function (button, event) { var selections = this.gridList.getSelectionModel().getSelection(); if (selections.length == 0) { Ext.Msg.show({ title: '提示', msg: '请先选择单据!', icon: Ext.Msg.INFO, buttons: Ext.Msg.OK }); return; } var record = selections[0]; Ext.MessageBox.confirm('提示', '确定删除该记录吗?', function (btn) { if (btn == 'yes') { Ext.Msg.wait('正在删除数据...'); Ext.Ajax.request({ waitMsg: '正在删除数据...', url: '/TruckMng/MsTruckPlu/Delete', params: { data: Ext.JSON.encode(record.data) }, callback: function (options, success, response) { if (success) { var jsonresult = Ext.JSON.decode(response.responseText); if (jsonresult.Success) { this.storeList.remove(record); Ext.Msg.show({ title: '提示', msg: jsonresult.Message, icon: Ext.Msg.INFO, buttons: Ext.Msg.OK }); } else { Ext.Msg.show({ title: '错误', msg: jsonresult.Message, icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK }); } } }, failure: function (response, options) { Ext.Msg.show({ title: '警告', msg: '服务器响应出错,请重试', icon: Ext.Msg.INFO, buttons: Ext.Msg.OK }); }, success: function (response, options) { }, scope: this }); //end Ext.Ajax.request } }, this); }, //onDeleteClick getCondition: function () { var form = this.formSearch.getForm(); if (!form.isValid()) { Ext.Msg.alert('提示', '查询条件赋值错误,请检查。'); return ''; } var sql = ''; var pluCode = form.findField('PluCode').getValue(); sql = sql + getAndConSql(sql, pluCode, "PluCode like '%" + pluCode + "%'"); var pluName = form.findField('PluName').getValue(); sql = sql + getAndConSql(sql, pluName, "PluName like '%" + pluName + "%'"); var spec = form.findField('Spec').getValue(); sql = sql + getAndConSql(sql, spec, "Spec like '%" + spec + "%'"); var scEtpName = form.findField('ScEtpName').getValue(); sql = sql + getAndConSql(sql, scEtpName, "ScEtpName like '%" + scEtpName + "%'"); var cargoNo = form.findField('CargoNo').getValue(); sql = sql + getAndConSql(sql, cargoNo, "CargoNo like '%" + cargoNo + "%'"); var orgCode = form.findField('OrgCode').getValue(); sql = sql + getAndConSql(sql, orgCode, "UserCode in (select codename from user where gid in (select userid from user_company where COMPANYID in (select GID from company where codename like '%" + orgCode + "%')))"); return sql; }, OprationSwap: function () { var ret = new Array(); ret[0] = this.OprationStatus; ret[1] = this.storeList; ret[2] = this.SelectedRecord; return ret; }, Print: function () { var printType = 'MSTRUCKPLU'; var sql = this.getCondition(); // var sql1 = "SET LANGUAGE 'us_english' SELECT * FROM tMsLsKc"; var sql1 = ""; if (sql != "") { sql1 = " SELECT * FROM tMsTruckPlu where " + sql; } else { sql1 = " SELECT * FROM tMsTruckPlu "; }; var sql2 = ""; var sql3 = ""; var sql4 = ""; var sql5 = ""; var sql6 = ""; PrintComm(printType, sql1, sql2, sql3, sql4, sql5, sql6); } });