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/MsWlInsure/MsWlInsureIndex.js

403 lines
14 KiB
JavaScript

2 years ago
Ext.namespace('DsTruck');
DsTruck.MsWlInsureIndex = function (config) {
Ext.applyIf(this, config);
this.initUIComponents();
window.DsTruck.MsWlInsureIndex.superclass.constructor.call(this);
};
Ext.extend(DsTruck.MsWlInsureIndex, Ext.Panel, {
PageSize: 30,
OprationStatus: null, //仅当弹出界面时使用
SelectedRecord: null,
initUIComponents: function () {
//定义数据集
this.storeList = Ext.create('Ext.data.Store', {
pageSize: this.PageSize,
model: 'MsWlInsureHead',
remoteSort: true,
proxy: {
type: 'ajax',
url: '/TruckMng/MsWlInsure/GetDataList',
reader: {
id: 'BillNo',
root: 'data',
totalProperty: 'totalCount'
}
}
});
//定义Grid
this.gridList = new Ext.grid.GridPanel({
//stateful: true,
//stateId: 'stateGrid-MsWlInsureIndex',
store: this.storeList,
enableHdMenu: false,
region: 'center',
loadMask: { msg: "数据加载中,请稍等..." },
trackMouseOver: true,
disableSelection: false,
columns: [{
sortable: true,
dataIndex: 'BillNo',
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: 'JzDate',
header: '记账日期',
width: 200
}, {
sortable: true,
dataIndex: 'TruckNo',
header: '车牌号',
width: 200
}, {
sortable: true,
dataIndex: 'OpUserCode',
header: '经办人编码',
renderer: function (value, p, record) { return value + '-' + record.data.OpUserCode_Ref; },
width: 60
}, {
sortable: true,
dataIndex: 'InsureCompCode',
header: '保险公司',
width: 200
}, {
sortable: true,
dataIndex: 'InsureBillNo',
header: '保险单号',
width: 120
}, {
sortable: true,
dataIndex: 'Beneficiary',
header: '投保受益人',
width: 120
}, {
sortable: true,
dataIndex: 'InsureDate',
header: '投保日期',
width: 80
}, {
sortable: true,
dataIndex: 'InsureBgnDate',
header: '保险开始日期',
width: 80
}, {
sortable: true,
dataIndex: 'InsureEndDate',
header: '保险截止日期',
width: 80
}, {
sortable: true,
dataIndex: 'Remark',
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/MsWlInsure/Edit');
}, this);
//#region formSearch
//#region formSearch枚举参照相关
//#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: 'TruckNo'
}, {
fieldLabel: '保险公司',
name: 'InsureComp'
}, {
fieldLabel: '保险单号',
name: 'InsureBillNo'
}
]
}, {
xtype: 'container',
layout: 'hbox',
defaultType: 'textfield',
items: [{
fieldLabel: '从投保日期',
format: 'Y-m-d',
xtype: 'datefield',
name: 'InsureDate_Min'
}, {
fieldLabel: '至投保日期',
format: 'Y-m-d',
xtype: 'datefield',
name: 'InsureDate_Max'
}, {
fieldLabel: '从保险开始日期',
format: 'Y-m-d',
xtype: 'datefield',
name: 'InsureBgnDate_Min'
}
]
}, {
xtype: 'container',
layout: 'hbox',
defaultType: 'textfield',
items: [{
fieldLabel: '至保险开始日期',
format: 'Y-m-d',
xtype: 'datefield',
name: 'InsureBgnDate_Max'
}, {
fieldLabel: '从保险截止日期',
format: 'Y-m-d',
xtype: 'datefield',
name: 'InsureEndDate_Min'
}, {
fieldLabel: '至保险截止日期',
format: 'Y-m-d',
xtype: 'datefield',
name: 'InsureEndDate_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';
DsOpenEditWin('/TruckMng/MsWlInsure/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: "test",
// iconCls: "btnreset",
// handler: function (button, event) {
// var state = this.gridList.getState();
// var ddddd = Ext.JSON.encode(state);
// var newStateStr = '{"columns":[{"id":"h1"},{"id":"h5","width":20},{"id":"h2","width":68},{"id":"h3"},{"id":"h4"},{"id":"h6"},{"id":"h7"},{"id":"h8"},{"id":"h9"},{"id":"h10"},{"id":"h11"},{"id":"h12"}]}';
// var newState = Ext.JSON.decode(newStateStr);
// this.gridList.applyState(newState);
// this.gridList.doLayout();
// var dd = 1;
// },
// scope: this
// }
]
});
this.panelTop = new Ext.Panel({
layout: "border",
region: "north",
height: 130,
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];
if (record.data.JzDate != '') {
Ext.Msg.show({ title: '警告', msg: '单据已记账,不允许删除!', icon: Ext.Msg.WARNING, buttons: Ext.Msg.OK });
return;
}
Ext.MessageBox.confirm('提示', '确定删除该记录吗?', function (btn) {
if (btn == 'yes') {
Ext.Msg.wait('正在删除数据...');
Ext.Ajax.request({
waitMsg: '正在删除数据...',
url: '/TruckMng/MsWlInsure/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 truckNo = form.findField('TruckNo').getValue();
sql = sql + getAndConSql(sql, truckNo, "TruckNo like '%" + truckNo + "%'");
var insureComp = form.findField('InsureComp').getValue();
sql = sql + getAndConSql(sql, insureComp, "InsureCompCode like '%" + insureComp + "%'");
var insureBillNo = form.findField('InsureBillNo').getValue();
sql = sql + getAndConSql(sql, insureBillNo, "InsureBillNo like '%" + insureBillNo + "%'");
var insureDate_Min = form.findField('InsureDate_Min').getRawValue();
sql = sql + getAndConSql(sql, insureDate_Min, "InsureDate >= '" + insureDate_Min + "'");
var insureDate_Max = form.findField('InsureDate_Max').getRawValue();
sql = sql + getAndConSql(sql, insureDate_Max, "InsureDate <= '" + insureDate_Max + " 23:59:59'");
var insureBgnDate_Min = form.findField('InsureBgnDate_Min').getRawValue();
sql = sql + getAndConSql(sql, insureBgnDate_Min, "InsureBgnDate >= '" + insureBgnDate_Min + "'");
var insureBgnDate_Max = form.findField('InsureBgnDate_Max').getRawValue();
sql = sql + getAndConSql(sql, insureBgnDate_Max, "InsureBgnDate <= '" + insureBgnDate_Max + " 23:59:59'");
var insureEndDate_Min = form.findField('InsureEndDate_Min').getRawValue();
sql = sql + getAndConSql(sql, insureEndDate_Min, "InsureEndDate >= '" + insureEndDate_Min + "'");
var insureEndDate_Max = form.findField('InsureEndDate_Max').getRawValue();
sql = sql + getAndConSql(sql, insureEndDate_Max, "InsureEndDate <= '" + insureEndDate_Max + " 23:59:59'");
return sql;
},
OprationSwap: function () {
var ret = new Array();
ret[0] = this.OprationStatus;
ret[1] = this.storeList;
ret[2] = this.SelectedRecord;
return ret;
}
});