Ext.namespace('DsTruck'); DsTruck.MsWlBsCtnIndex = function (config) { Ext.applyIf(this, config); this.initUIComponents(); window.DsTruck.MsWlBsCtnIndex.superclass.constructor.call(this); }; Ext.extend(DsTruck.MsWlBsCtnIndex, Ext.Panel, { PageSize: 500, ImportWin: null, OprationStatus: null, //仅当弹出界面时使用 SelectedRecord: null, initUIComponents: function () { this.Audit = false; //定义数据集 this.storeList = Ext.create('Ext.data.Store', { pageSize: this.PageSize, model: 'MsWlBsHead', remoteSort: true, proxy: { type: 'ajax', url: '/TruckMng/MsWlBs/GetDataList', reader: { id: 'BillNo', root: 'data', totalProperty: 'totalCount' } } }); //定义Grid this.Pagenum = Ext.create('Ext.form.field.Number', { name: 'bottles', fieldLabel: '每页记录数', labelAlign: 'right', value: this.PageSize, maxValue: 100000, width: 180, minValue: 0, listeners: { specialkey: function (field, e) { if (e.getKey() == e.ENTER) { _this.onRefreshClick(); } } } }); this.gridList = new Ext.grid.GridPanel({ store: this.storeList, enableHdMenu: false, region: 'center', loadMask: { msg: "数据加载中,请稍等..." }, trackMouseOver: true, disableSelection: false, viewConfig: { autoFill: true, getRowClass: function (record, rowIndex, rowParams, store) { var feeStatus = record.get('PcType'); return DsTruck.MsChFeeGetRowClass(feeStatus); } }, columns: [{ sortable: true, dataIndex: 'BillNo', header: '物流号', width: 150 }, { sortable: true, dataIndex: 'TRANSSTATUS', header: '订单状态', width: 80 }, { sortable: true, dataIndex: 'LrDate', header: '录入日期', width: 80 }, { sortable: true, dataIndex: 'JzDate', header: '记账日期', width: 80 }, { sortable: true, dataIndex: 'UserCode', header: '用户编码', width: 60 }, { sortable: true, dataIndex: 'UserName', header: '用户姓名', width: 80 }, { sortable: true, dataIndex: 'OrgCode', header: '组织编码', width: 80 }, { sortable: true, dataIndex: 'OrgName', header: '组织名称', hidden: true, width: 200 }, { sortable: true, dataIndex: 'BsType', header: '托单类型', renderer: function (value, p, record) { return value + '-' + record.data.BsType_Ref; }, width: 60 }, { sortable: true, dataIndex: 'CustCode', header: '委托单位代码', width: 80 }, { sortable: true, dataIndex: 'CustName', header: '委托单位', //renderer: function (value, p, record) { return value + '-' + record.data.CustName_Ref; }, width: 80 }, { sortable: true, dataIndex: 'CustDate', header: '委托日期', width: 80 }, /* { sortable: true, dataIndex: 'FeeOpStatus', header: '费用操作状态', renderer: function (value, p, record) { return value + '-' + record.data.FeeOpStatus_Ref; }, width: 85 }, */ { sortable: true, dataIndex: 'VoyVeg', header: '船名航次', renderer: function (value, p, record) { return value + '-' + record.data.VoyVeg_Ref; }, width: 80 }, { sortable: true, dataIndex: 'EtDate', header: '开船(到港)日期', width: 80 }, { sortable: true, dataIndex: 'EndPortDate', header: '截港日期', width: 80 }, { sortable: true, dataIndex: 'MblNo', header: '提单号', width: 120 }, { sortable: true, dataIndex: 'SalesCode', header: '揽货人', renderer: function (value, p, record) { return value + '-' + record.data.SalesCode_Ref; }, width: 80 }, { sortable: true, dataIndex: 'SalesName', header: '揽货人姓名', width: 80 }, { sortable: true, dataIndex: 'DispatchCode', header: '调度员编码', renderer: function (value, p, record) { return value + '-' + record.data.DispatchCode_Ref; }, width: 60 }, { sortable: true, dataIndex: 'DispatchName', header: '调度员姓名', width: 80 }, { sortable: true, dataIndex: 'SendYardCode', header: '拖箱场站编码', renderer: function (value, p, record) { return value + '-' + record.data.SendYardCode_Ref; }, width: 80 }, { sortable: true, dataIndex: 'SendYardName', header: '拖箱场站', width: 80 }, { sortable: true, dataIndex: 'PORTLOAD', header: '起运地', width: 80 }, { sortable: true, dataIndex: 'DstArea', header: '目的地', width: 80 }, { sortable: true, dataIndex: 'DetiNation', header: '工厂地址', width: 200 }, { sortable: true, dataIndex: 'DetiLinkTel', header: '工厂联系电话', width: 200 }, { sortable: true, dataIndex: 'DetiLinkMan', header: '工厂联系人', width: 200 }, { sortable: true, dataIndex: 'Remark', header: '备注', width: 200 }, { sortable: true, hidden: true, dataIndex: 'PcType', header: 'PcType', width: 20 }, { sortable: true, dataIndex: 'TruckNo', header: '车牌号(派车单内)', width: 180 }, { sortable: true, dataIndex: 'CtnInfo', header: '集装箱信息', width: 180 } ], // paging bar on the bottom bbar: [Ext.create('Ext.PagingToolbar', { id: "bbar1", store: this.storeList, displayInfo: true, displayMsg: '当前显示 {0} - {1}条记录 /共 {2}条记录', emptyMsg: "没有数据" }), this.Pagenum] }); this.gridList.addListener('itemdblclick', function (dataview, record, item, index, e, b) { this.SelectedRecord = record; this.OprationStatus = 'edit'; DsOpenEditWinAll("/TruckMng/MsWlBsCtn/Edit"); }, this); //#region formSearch //#region formSearch枚举参照相关 this.storeBillStatus = Ext.create('DsExt.ux.RefEnumStore', {}); this.storeBillStatus.load({ params: { enumTypeId: 99026} }); this.comboxBillStatus = Ext.create('DsExt.ux.RefEnumCombox', { fieldLabel: '业务锁定状态', store: this.storeBillStatus, name: 'BillStatus' }); this.storeFeeStatus = Ext.create('DsExt.ux.RefEnumStore', {}); this.storeFeeStatus.load({ params: { enumTypeId: 99027} }); this.comboxFeeStatus = Ext.create('DsExt.ux.RefEnumCombox', { fieldLabel: '费用锁定状态', store: this.storeFeeStatus, name: 'FeeStatus' }); this.storeBsType = Ext.create('DsExt.ux.RefEnumStore', {}); this.storeBsType.load({ params: { enumTypeId: 99025} }); this.comboxBsType = Ext.create('DsExt.ux.RefEnumCombox', { fieldLabel: '托单类型', store: this.storeBsType, name: 'BsType' }); this.storeFeeOpStatus = Ext.create('DsExt.ux.RefEnumStore', {}); this.storeFeeOpStatus.load({ params: { enumTypeId: 99035} }); this.comboxFeeOpStatus = Ext.create('DsExt.ux.RefEnumCombox', { fieldLabel: '费用操作状态', store: this.storeFeeOpStatus, name: 'FeeOpStatus' }); this.storePcType = Ext.create('DsExt.ux.RefEnumStore', {}); this.storePcType.load({ params: { enumTypeId: 99041} }); this.comboxPcType = Ext.create('DsExt.ux.RefEnumCombox', { fieldLabel: '已派车/未派车', store: this.storePcType, name: 'PcType' }); this.storeVessel2 = Ext.create('DsExt.ux.RefEnumStore', {}); this.storeVessel2.load({ params: { enumTypeId: 99042} }); this.comboxVessel2 = Ext.create('DsExt.ux.RefEnumCombox', { fieldLabel: '二程船名航次', store: this.storeVessel2, name: 'Vessel2Type' }); this.storeCustCode = Ext.create('DsExt.ux.RefTableStore', { model: 'DsTruckMng.ux.CustomRefModel', proxy: { url: '/CommMng/BasicDataRef/GetCustomRefList' } }); this.storeCustCode.load({ params: { condition: "ISCONTROLLER='1'"} }); this.comboxCustCode = Ext.create('DsExt.ux.RefTableCombox', { fieldLabel: '委托单位', typeAhead: true, store: this.storeCustCode, name: 'CustCode', valueField: 'CustCode', displayField: 'CodeAndName' }); this.storeContainerType = Ext.create('DsExt.ux.RefTableStore', { model: 'DsTruckMng.ux.CtnRefModel', proxy: { url: '/CommMng/BasicDataRef/GetCtnRefList' } }); this.storeContainerType.load({ params: { condition: ""} }); this.comboxContainerType = Ext.create('DsExt.ux.RefTableCombox', { fieldLabel: '箱型', store: this.storeContainerType, name: 'ContainerType', valueField: 'CtnCode', displayField: 'CodeAndName' }); //#endregion 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: 'BillNo' }, { fieldLabel: '船名航次', name: 'VoyVeg' }, { fieldLabel: '提单号', name: 'MblNo' }, this.comboxBsType, { fieldLabel: '目的地', name: 'DstArea' }, { fieldLabel: '工厂地址', name: 'DetiNation' } ] }, { xtype: 'container', layout: 'hbox', defaultType: 'textfield', items: [ { fieldLabel: '调度员姓名', name: 'DdName' }, { fieldLabel: '揽货人姓名', name: 'SalesName' }, this.comboxBillStatus , this.comboxFeeStatus, this.comboxCustCode, this.comboxFeeOpStatus ] }, { xtype: 'container', layout: 'hbox', defaultType: 'textfield', items: [{ fieldLabel: '从委托日期', format: 'Y-m-d', xtype: 'datefield', name: 'CustDate_Min' }, { fieldLabel: '至委托日期', format: 'Y-m-d', xtype: 'datefield', name: 'CustDate_Max' }, { fieldLabel: '从派车日期', format: 'Y-m-d', xtype: 'datefield', name: 'ExpDate_Min' }, { fieldLabel: '到派车日期', format: 'Y-m-d', xtype: 'datefield', name: 'ExpDate_Max' }, { fieldLabel: '从到达日期', format: 'Y-m-d', xtype: 'datefield', name: 'NeedArriveDate_Min' }, { fieldLabel: '到到达日期', format: 'Y-m-d', xtype: 'datefield', name: 'NeedArriveDate_Max' } ] } ]//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'; DsOpenEditWinAll("/TruckMng/MsWlBsCtn/Edit"); // DsOpenEditWinAll }, 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) { this.onResetClick(button, event); }, scope: this }, { text: "导入托单", iconCls: "btnexportexcel", handler: function (button, event) { this.onImportBsClick(button, event); }, scope: this } , { text: "导出Excel", id: "btnExportExcel", iconCls: 'btnexportexcel', handler: function (button, event) { this.onExportClick(button, event); }, scope: this } ] }); this.panelTop = new Ext.Panel({ layout: "border", region: "north", height: 130, items: [this.formSearch, this.panelBtn] }); this.page_1 = new Ext.Panel({ id: "page_1", title: "托单信息", //autoScroll: true, layout: "border", items: [this.gridList] }); this.page_2 = new Ext.Panel({ id: "page_2", title: "附件(证照图片)", layout: "border", items: [] }); this.MainTab = new Ext.tab.Panel({ layout: "border", region: "center", split: true, items: [this.page_1//, this.page_2 ] }); Ext.apply(this, { items: [this.panelTop, this.MainTab] }); this.storeList.on('beforeload', function (store) { var sql = this.getCondition(); Ext.apply(store.proxy.extraParams, { condition: sql }); }, this); var sql = ''; this.storeList.load({ params: { start: 0, limit: this.PageSize, sort: '', condition: sql }, waitMsg: "正在查询数据...", scope: this }); }, //end initUIComponents onRefreshClick: function (button, event) { var sql = this.getCondition(); this.PageSize = this.Pagenum.getValue(); 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]; if (record.data.TRANSSTATUS != '新增' && record.data.TRANSSTATUS != '提交审核' && record.data.TRANSSTATUS != '驳回提交') { Ext.Msg.show({ title: '提示', msg: '当前状态不允许删除!', icon: Ext.Msg.INFO, buttons: Ext.Msg.OK }); return; } Ext.MessageBox.confirm('提示', '确定删除该记录吗?', function (btn) { if (btn == 'yes') { Ext.Msg.wait('正在删除数据...'); Ext.Ajax.request({ waitMsg: '正在删除数据...', url: '/TruckMng/MsWlBs/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 = " BsType<>'7' "; var billNo = form.findField('BillNo').getValue(); sql = sql + getAndConSql(sql, billNo, "BillNo like '%" + billNo + "%'"); var custDate_Min = form.findField('CustDate_Min').getRawValue(); sql = sql + getAndConSql(sql, custDate_Min, "CustDate >= '" + custDate_Min + "'"); var custDate_Max = form.findField('CustDate_Max').getRawValue(); sql = sql + getAndConSql(sql, custDate_Max, "CustDate <= '" + custDate_Max + " 23:59:59'"); var billStatus = form.findField('BillStatus').getValue(); sql = sql + getAndConSql(sql, billStatus, "BillStatus = '" + billStatus + "'"); var feeStatus = form.findField('FeeStatus').getValue(); sql = sql + getAndConSql(sql, feeStatus, "FeeStatus = '" + feeStatus + "'"); /* var feeOpStatus = form.findField('FeeOpStatus').getValue(); if (feeOpStatus == 0) { sql = sql + getAndConSql(sql, feeOpStatus, " BillNo in (select RefBillNo from tMsWlPcHead where GID in (select bsno from ch_fee where feestatus=1)) or "); } else if (feeOpStatus == 1) { sql = sql + getAndConSql(sql, feeOpStatus, " BillNo in (select RefBillNo from tMsWlPcHead where GID in (select bsno from ch_fee where feestatus=2))"); } else if (feeOpStatus == 2) { sql = sql + getAndConSql(sql, feeOpStatus, " BillNo in (select RefBillNo from tMsWlPcHead where GID in (select bsno from ch_fee where feestatus=0))"); } else if (feeOpStatus == 3) { sql = sql + getAndConSql(sql, feeOpStatus, " BillNo in (select RefBillNo from tMsWlPcHead where GID in (select bsno from ch_fee where feestatus=6))"); }*/ var feeOpStatus = form.findField('FeeOpStatus').getValue(); if (feeOpStatus == 0) { sql = sql + getAndConSql(sql, feeOpStatus, " BillNo in (select BS_BILLNO from v_BSPCList where PC_BILLNO in (select bsno from ch_fee where feestatus=1)) or "); } else if (feeOpStatus == 1) { sql = sql + getAndConSql(sql, feeOpStatus, " BillNo in (select BS_BILLNO from v_BSPCList where PC_BILLNO in (select bsno from ch_fee where feestatus=2))"); } else if (feeOpStatus == 2) { sql = sql + getAndConSql(sql, feeOpStatus, " BillNo in (select BS_BILLNO from v_BSPCList where PC_BILLNO in (select bsno from ch_fee where feestatus=0))"); } else if (feeOpStatus == 3) { sql = sql + getAndConSql(sql, feeOpStatus, " BillNo in (select BS_BILLNO from v_BSPCList where PC_BILLNO in (select bsno from ch_fee where feestatus=6))"); } var salesName = form.findField('SalesName').getValue(); sql = sql + getAndConSql(sql, salesName, "SalesName like '%" + salesName + "%'"); var mblNo = form.findField('MblNo').getValue(); sql = sql + getAndConSql(sql, mblNo, "MblNo like '%" + mblNo + "%'"); var bsType = form.findField('BsType').getValue(); sql = sql + getAndConSql(sql, bsType, "BsType = '" + bsType + "'"); var expDate_Min = form.findField('ExpDate_Min').getRawValue(); sql = sql + getAndConSql(sql, expDate_Min, " BillNo in (select BS_BILLNO from v_BSPCList where PC_BILLNO in (select BILLNO from tMsWlPcHead where ExpDate>='" + expDate_Min + "'))"); var expDate_Max = form.findField('ExpDate_Max').getRawValue(); sql = sql + getAndConSql(sql, expDate_Max, " BillNo in (select BS_BILLNO from v_BSPCList where PC_BILLNO in (select BILLNO from tMsWlPcHead where ExpDate<='" + expDate_Min + " 23:59:59'))"); var voyVeg = form.findField('VoyVeg').getValue(); sql = sql + getAndConSql(sql, voyVeg, "VoyVeg like '%" + voyVeg + "%'"); sql = sql + getAndConSql(sql, voyVeg, "VoyVegSe like '%" + voyVeg + "%'"); var NeedArriveDate_Min = form.findField('NeedArriveDate_Min').getRawValue(); sql = sql + getAndConSql(sql, NeedArriveDate_Min, " NeedArriveDate>='" + NeedArriveDate_Min + "'"); var NeedArriveDate_Max = form.findField('NeedArriveDate_Max').getRawValue(); sql = sql + getAndConSql(sql, NeedArriveDate_Max, " NeedArriveDate<='" + expDate_Min + " 23:59:59'"); var DstArea = form.findField('DstArea').getValue(); sql = sql + getAndConSql(sql, DstArea, " DstArea like '%" + DstArea + "%' "); var DetiNation = form.findField('DetiNation').getValue(); sql = sql + getAndConSql(sql, DetiNation, " DetiNation like '%" + DetiNation + "%' "); var CustCode = form.findField('CustCode').getValue(); sql = sql + getAndConSql(sql, CustCode, " CustCode = '" + CustCode + "' "); return sql; }, OprationSwap: function () { var ret = new Array(); ret[0] = this.OprationStatus; ret[1] = this.storeList; ret[2] = this.SelectedRecord; ret[3] = this.Audit; return ret; }, AddNewRecord: function (record) { var p = Ext.create('MsWlBsHead', record); this.storeList.add(p); }, onImportBsClick: function (button, event) { var winAccess = new DsTruck.FileImport({ }); winAccess.StoreList = this.storeList; winAccess.show(); return; }, onExportClick: function (button, event) { GridExportExcelPage(this.gridList); }, onResetClick: function (button, event) { this.formSearch.getForm().reset(); } });