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.

293 lines
9.3 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('Shipping');
Shipping.MsInfoClientContactIndex = function (config) {
Ext.applyIf(this, config);
this.initUIComponents();
window.Shipping.MsInfoClientContactIndex.superclass.constructor.call(this);
};
Ext.extend(Shipping.MsInfoClientContactIndex, Ext.Panel, {
PageSize: 20,
OprationStatus: null, //仅当弹出界面时使用
SelectedRecord: null,
EditRecord: null,
GID: '',
//需求编号SR2017061200005-1
initUIComponents: function () {
var mainform = window.parent._this;
this.EditRecord = mainform.Editdata;
this.GID = this.EditRecord.GID;
this.formname = "formInfoClientContactIndex"; //页面名称
//定义数据集
this.storectndisp = Ext.create('DsExt.ux.RefTableStore', {
model: 'DsShipping.ux.CtnDispModel',
proxy: { url: '/CommMng/BasicDataRef/GetCtnDisp' }
});
this.storeList = Ext.create('Ext.data.Store', {
pageSize: this.PageSize,
model: 'MsInfoClientContactModel',
remoteSort: true,
proxy: {
type: 'ajax',
url: '/MvcShipping/MsInfoClient/GetContactDataList',
reader: {
id: 'GID',
root: 'data',
totalProperty: 'totalCount'
}
}
});
//#region List列表显示信息
Ext.grid.RowNumberer = Ext.extend(Ext.grid.RowNumberer, {
width: 30
});
this.girdcolums = [{
sortable: true,
dataIndex: 'GID',
header: Zi.LAN.GID, //'GID',
hidden: true,
width: 0
}, {
sortable: true,
dataIndex: 'LINKID',
hidden: true,
header: Zi.LAN.LINKID, //'LINKID',
width: 0
},
{
sortable: true,
dataIndex: 'SHOWNAME',
header: Zi.LAN.SHOWNAME, //'联系人',
width: 140
},
{
sortable: true,
dataIndex: 'TEL',
header: Zi.LAN.TEL, //'电话',
width: 140
}, {
sortable: true,
dataIndex: 'EMAIL',
header: Zi.LAN.EMAIL, //'邮箱',
width: 120
},
{
sortable: true,
dataIndex: 'MOBILE',
header: Zi.LAN.MOBILE, //'手机',
width: 120
}, {
sortable: true,
dataIndex: 'QQ',
header: Zi.LAN.QQ, //'QQ',
width: 120
},
{
sortable: true,
dataIndex: 'ISOPERATOR',
header: Zi.LAN.ISOPERATOR2, //'是否操作',
width: 120
},
{
sortable: true,
dataIndex: 'ISSALEMAN',
header: Zi.LAN.ISSALEMAN2, //'是否销售',
width: 120
},
{
sortable: true,
dataIndex: 'ISFINANCIALSTAFF',
header: Zi.LAN.ISFINANCIALSTAFF2, //'是否财务',
width: 120
},
{
sortable: true,
dataIndex: 'ISINSURANCE',
header: Zi.LAN.ISINSURANCE, //'是否财务',
width: 120
},
{
sortable: true,
dataIndex: 'ISDUI',
header: Zi.LAN.ISDUI, //'是否财务',
width: 120
},
{
sortable: true,
dataIndex: 'ISOTHER',
header: Zi.LAN.ISOTHER2, //'是否其他',
width: 120
},
{
sortable: true,
dataIndex: 'ISSTOP',
header: Zi.LAN.ISSTOP2, //'是否停用',
width: 120
},
{
sortable: true,
dataIndex: 'INPUTBY',
header: Zi.LAN.INPUTBY, //'录入人',
width: 80
},
{
sortable: true,
dataIndex: 'CREATEDATE',
header: Zi.LAN.CREATEDATE, //'录入时间',
width: 80
}];
this.GridCheckBoxModel = Ext.create('Ext.selection.CheckboxModel');
//定义Grid
this.gridList = new Ext.grid.GridPanel({
store: this.storeList,
enableHdMenu: false,
region: 'center',
loadMask: { msg: Zi.LAN.ShuJuJiaZaiZhong }, //"数据加载中,请稍等..."
trackMouseOver: true,
disableSelection: false,
columns: this.girdcolums,
selModel: this.GridCheckBoxModel,
bbar: Ext.create('Ext.PagingToolbar', {
store: this.storeList,
displayMsg: Zi.LAN.displayMsg, //'当前显示 {0} - {1}条记录 /共 {2}条记录',
emptyMsg: Zi.LAN.emptyMsg, //"没有数据"
displayInfo: true
})
});
this.gridList.reconfigure(this.storeList, this.girdcolums);
this.gridList.columns[0] = new Ext.grid.RowNumberer();
////////////////////////////////////////////////
this.gridList.addListener('itemdblclick', function (dataview, record, item, index, e, b) {
this.SelectedRecord = record;
this.OprationStatus = 'edit';
window.open('/MvcShipping/MsInfoClient/ContactEdit', Zi.LAN.ContactEdit, "width=800,height=480,resizable=yes,status=yes,menubar=no,scrollbars=yes,Top= " + (screen.height - 480) / 2 + ",Left= " + (screen.width - 800) / 2);
}, this);
//按钮工具条
me = this;
this.panelBtn = new Ext.Panel({
region: "north",
tbar: [{
text: Zi.LAN.btnAdd, //"新建",
iconCls: "btnadd",
handler: function (button, event) {
this.OprationStatus = 'add';
window.open('/MvcShipping/MsInfoClient/ContactEdit', Zi.LAN.ContactEdit, "width=800,height=480,resizable=yes,status=yes,menubar=no,scrollbars=yes,Top= " + (screen.height - 480) / 2 + ",Left= " + (screen.width - 800) / 2);
},
scope: this
}, {
text: Zi.LAN.btnDelete, //"删除",
iconCls: "btndelete",
handler: function (button, event) {
this.onDeleteClick(button, event);
},
scope: this
}]
});
this.panelTop = new Ext.Panel({
layout: "border",
region: "north",
height: 30,
items: [this.panelBtn, this.formSearch]
});
Ext.apply(this, {
items: [this.panelTop, this.gridList]
});
this.onRefreshClick();
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 girdcolums = this.gridList.getColumnMode();
var sql = "LINKID='" + this.GID+ "'";
this.storeList.load({
params: { start: 0, limit: this.PageSize, sort: '', condition: sql },
waitMsg: Zi.LAN.ZhengZaiChaXunShuJu,
scope: this
});
},
onDeleteClick: function (button, event) {
var selections = this.gridList.getSelectionModel().getSelection();
if (selections.length == 0) {
Ext.Msg.show({ title: Zi.LAN.TiShi, msg: Zi.LAN.QingXianXuanZeXinXi, icon: Ext.Msg.INFO, buttons: Ext.Msg.OK });
return;
}
var record = selections[0];
Ext.MessageBox.confirm(Zi.LAN.TiShi, Zi.LAN.QueDingShanChuGaiJiLuMa, function (btn) {
if (btn == 'yes') {
Ext.Msg.wait(Zi.LAN.ZhengZaiCaoZuoShuJu);
Ext.Ajax.request({
waitMsg: Zi.LAN.ZhengZaiCaoZuoShuJu, //'正在删除数据...',
url: '/MvcShipping/MsInfoClient/DeleteContact',
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: Zi.LAN.TiShi, msg: jsonresult.Message, icon: Ext.Msg.INFO, buttons: Ext.Msg.OK });
}
else {
Ext.Msg.show({ title: Zi.LAN.CuoWu, msg: jsonresult.Message, icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
}
}
},
failure: function (response, options) {
Ext.Msg.show({ title: Zi.LAN.JingGao, msg: Zi.LAN.FuWuQiXiangYingChuCuo, icon: Ext.Msg.INFO, buttons: Ext.Msg.OK });
},
success: function (response, options) { },
scope: this
}); //end Ext.Ajax.request
}
}, this);
},
OprationSwap: function () {
var ret = new Array();
ret[0] = this.OprationStatus;
ret[1] = this.storeList;
ret[2] = this.SelectedRecord;
ret[3] = this.EditRecord;
return ret;
}
});