You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/TruckMng/Viewsjs/MsWlDriver/MsWlDriverIndex.js

373 lines
12 KiB
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

Ext.namespace('DsTruck');
DsTruck.MsWlDriverIndex = function (config) {
Ext.applyIf(this, config);
this.initUIComponents();
window.DsTruck.MsWlDriverIndex.superclass.constructor.call(this);
};
Ext.extend(DsTruck.MsWlDriverIndex, Ext.Panel, {
PageSize: 30,
OprationStatus: null, //仅当弹出界面时使用
SelectedRecord: null,
initUIComponents: function () {
this.formname = 'frmMsWlDriverIndex';
//定义数据集
this.storeList = Ext.create('Ext.data.Store', {
pageSize: this.PageSize,
model: 'MsWlDriver',
remoteSort: true,
proxy: {
type: 'ajax',
url: '/TruckMng/MsWlDriver/GetDataList',
reader: {
id: 'DrvCode',
root: 'data',
totalProperty: 'totalCount'
}
}
});
_this = this;
this.initgirdcolums = [{
sortable: true,
dataIndex: 'RowNumber',
header: '序号',
width: 80
}, {
sortable: true,
dataIndex: 'OrgCode',
header: '组织编码',
width: 80
}, {
sortable: true, hidden: true,
dataIndex: 'GID',
header: 'GID',
width: 60
}, {
sortable: true,
dataIndex: 'DrvCode',
header: '驾驶员编码',
width: 60
}, {
sortable: true,
dataIndex: 'DrvName',
header: '驾驶员姓名',
width: 80
}, {
sortable: true,
dataIndex: 'DrvClass',
header: '驾驶员级别',
renderer: function (value, p, record) { return value + '-' + record.data.DrvClass_Ref; },
width: 50
}, {
sortable: true,
dataIndex: 'JzNo',
header: '驾照号',
width: 140
}, {
sortable: true,
dataIndex: 'LzDate',
header: '领证日期',
width: 80
}, {
sortable: true,
dataIndex: 'LimitDays',
header: '有效期限',
width: 60
}, {
sortable: true,
dataIndex: 'DriverYears',
header: '驾龄',
width: 60
}, {
sortable: true,
dataIndex: 'TruckType',
header: '准驾车型',
renderer: function (value, p, record) { return value + '-' + record.data.TruckType_Ref; },
width: 40
}, {
sortable: true,
dataIndex: 'Licence',
header: '发证机关',
width: 120
}, {
sortable: true,
dataIndex: 'YearCheckDate',
header: '年审到期日',
width: 80
}, {
sortable: true,
dataIndex: 'NextCheckDate',
header: '下次年审日期',
width: 80
}, {
sortable: true,
dataIndex: 'NoticeDays',
header: '提前提醒天数',
width: 100
}, {
sortable: true,
dataIndex: 'Mobile',
header: '手机',
width: 120
}, {
sortable: true,
dataIndex: 'OffTel',
header: '电话',
width: 120
}, {
sortable: true,
dataIndex: 'CertificateNo',
header: '从业资格证号',
width: 160
}, {
sortable: true,
dataIndex: 'Remark',
header: '备注',
width: 200
}
];
this.girdcolums = this.initgirdcolums;
//定义Grid
this.gridList = new Ext.grid.GridPanel({
store: this.storeList,
enableHdMenu: false,
region: 'center',
loadMask: { msg: "数据加载中,请稍等..." },
trackMouseOver: true,
disableSelection: false,
viewConfig: {
enableTextSelection: true
},
columns: this.girdcolums,
// paging bar on the bottom
bbar: Ext.create('Ext.PagingToolbar', {
store: this.storeList,
displayInfo: true,
displayMsg: '当前显示 {0} - {1}条记录 /共 {2}条记录',
emptyMsg: "没有数据"
})
});
this.girdcolums = DsTruck.GetGridPanel(USERID, this.formname, this.girdcolums, 1); //使用者id表名中间column数组跳过一开始的几列
this.gridList.reconfigure(this.storeList, this.girdcolums);
this.gridList.addListener('itemdblclick', function (dataview, record, item, index, e, b) {
this.SelectedRecord = record;
this.OprationStatus = 'edit';
DsOpenEditWin('/TruckMng/MsWlDriver/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: 'DrvCode'
}, {
fieldLabel: '驾驶员姓名',
name: 'DrvName'
}, {
fieldLabel: '驾照号',
name: 'JzNo'
}, {
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/MsWlDriver/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: "保存列表样式",
id: "btntest",
menu: [
{
text: "保存",
handler: function (button, event) {
this.girdcolums = DsTruck.SaveGridPanel(USERID, _this.formname, _this.gridList.columns, _this.girdcolums, 1, true);
}
}, {
text: "初始化",
handler: function (menu, event) {
_this.gridList.reconfigure(_this.storeList, _this.initgirdcolums);
_this.girdcolums = DsTruck.SaveGridPanel(USERID, _this.formname, _this.gridList.columns, _this.initgirdcolums, 1, true);
}
}],
scope: this
}
]
});
this.panelTop = new Ext.Panel({
layout: "border",
region: "north",
height: 80,
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/MsWlDriver/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 drvCode = form.findField('DrvCode').getValue();
sql = sql + getAndConSql(sql, drvCode, "DrvCode like '%" + drvCode + "%'");
var drvName = form.findField('DrvName').getValue();
sql = sql + getAndConSql(sql, drvName, "DrvName like '%" + drvName + "%'");
var jzNo = form.findField('JzNo').getValue();
sql = sql + getAndConSql(sql, jzNo, "JzNo like '%" + jzNo + "%'");
var OrgCode = form.findField('OrgCode').getValue();
sql = sql + getAndConSql(sql, OrgCode, "OrgCode like '%" + OrgCode + "%'");
return sql;
},
OprationSwap: function () {
var ret = new Array();
ret[0] = this.OprationStatus;
ret[1] = this.storeList;
ret[2] = this.SelectedRecord;
return ret;
}
});