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.
564 lines
19 KiB
JavaScript
564 lines
19 KiB
JavaScript
Ext.namespace('Shipping');
|
|
|
|
Shipping.MsCodeLhCustCrStlDateIndex = function (config) {
|
|
Ext.applyIf(this, config);
|
|
this.initUIComponents();
|
|
window.Shipping.MsCodeLhCustCrStlDateIndex.superclass.constructor.call(this);
|
|
};
|
|
|
|
Ext.extend(Shipping.MsCodeLhCustCrStlDateIndex, Ext.Panel, {
|
|
|
|
OprationStatus: null, //仅当弹出界面时使用
|
|
SelectedRecord: null,
|
|
|
|
|
|
initUIComponents: function () {
|
|
//定义数据集
|
|
|
|
_this = this;
|
|
|
|
this.storeList = Ext.create('Ext.data.Store', {
|
|
model: 'MsCodeLhCustCrStlDateMode',
|
|
remoteSort: true,
|
|
proxy: {
|
|
type: 'ajax',
|
|
url: '/MvcShipping/MsCodeLhCustRate/GetLhCustCrStlDateDataList',
|
|
reader: {
|
|
id: 'GID',
|
|
root: 'data',
|
|
totalProperty: 'totalCount'
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
this.storeCustomerNameRef = Ext.create('DsExt.ux.RefTableStore', {
|
|
model: 'DsShipping.ux.CustomRefModel',
|
|
proxy: { url: '/CommMng/BasicDataRef/GetCustomRefListCARRIER' }
|
|
});
|
|
this.storeCustomerNameRef.load({ params: { condition: "" } });
|
|
|
|
|
|
this.comboxCustomerNameRef = Ext.create('DsExt.ux.RefTableCombox', {
|
|
store: this.storeCustomerNameRef,
|
|
forceSelection: true,
|
|
queryMode: 'remote',
|
|
minChars: 0,
|
|
queryParam: 'CODENAME',
|
|
name: 'CUSTOMERNAME',
|
|
valueField: 'CustName',
|
|
displayField: 'CodeAndName',
|
|
listeners: {
|
|
scope: this,
|
|
'focus': function (_this, eOpts) {
|
|
//var selections = _this.gridList.getSelectionModel().getSelection(); //获得选中的项
|
|
//var strCustomerName = selections[0].get('CUSTOMERNAME');
|
|
//var recordCustCode = Ext.create('DsShipping.ux.CustomRefModel', {
|
|
// GId: NewGuid(),
|
|
// CustCode: strCustomerName,
|
|
// CustName: strCustomerName,
|
|
// CodeAndName: strCustomerName,
|
|
// DESCRIPTION: strCustomerName
|
|
//});
|
|
//_this.storeCustomerNameRef.add(recordCustCode);
|
|
//_this.comboxCustomerNameRef.setValue(strCustomerName);
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
|
|
this.gridListCellEditing = Ext.create('Ext.grid.plugin.CellEditing', {
|
|
clicksToEdit: 1
|
|
});
|
|
|
|
//定义Grid
|
|
this.gridList = new Ext.grid.GridPanel({
|
|
store: this.storeList,
|
|
enableHdMenu: false,
|
|
region: 'center',
|
|
loadMask: { msg: "数据加载中,请稍等..." },
|
|
trackMouseOver: true,
|
|
disableSelection: false,
|
|
plugins: [this.gridListCellEditing],
|
|
selType: 'cellmodel',
|
|
columns: [{
|
|
sortable: true,
|
|
dataIndex: 'GID',
|
|
header: 'GID',
|
|
hidden: true,
|
|
width: 120
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'CUSTOMERNAME',
|
|
header: '船公司',
|
|
width: 160,
|
|
editor: this.comboxCustomerNameRef
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'CRDAY',
|
|
header: '应付账期',
|
|
width: 160,
|
|
editor: {
|
|
xtype: 'numberfield',
|
|
keyNavEnabled: false,
|
|
selectOnFocus: true,
|
|
decimalPrecision: 6,
|
|
hideTrigger: true,
|
|
width: 120,
|
|
mouseWheelEnabled: false
|
|
}
|
|
}
|
|
]
|
|
});
|
|
|
|
this.gridList.getSelectionModel().on('select', function (model, record, index) {
|
|
var GID = record.data.GID;
|
|
var sql = " LINKGID='" + GID + "'";
|
|
this.storeListDetail.load({
|
|
params: { start: 0, limit: 500, sort: '', condition: sql },
|
|
waitMsg: "正在查询数据...",
|
|
scope: this
|
|
});
|
|
//var strCustomerName = record.data.CUSTOMERNAME;
|
|
//var recordCustCode = Ext.create('DsShipping.ux.CustomRefModel', {
|
|
// GId: NewGuid(),
|
|
// CustCode: strCustomerName,
|
|
// CustName: strCustomerName,
|
|
// CodeAndName: strCustomerName,
|
|
// DESCRIPTION: strCustomerName
|
|
//});
|
|
//_this.storeCustomerNameRef.add(recordCustCode);
|
|
//_this.comboxCustomerNameRef.setValue(strCustomerName);
|
|
|
|
}, this);
|
|
|
|
|
|
|
|
|
|
//查询工具条
|
|
this.panelBtn = new Ext.Panel({
|
|
region: "north",
|
|
tbar: [
|
|
{
|
|
text: "新增",
|
|
iconCls: "btnadd",
|
|
handler: function (button, event) {
|
|
this.addDetail();
|
|
// this.OprationStatus = 'add';
|
|
// window.open('/MvcShipping/MsCodeYardDataSet/Edit', "CODEYARDDATASET", 'width=800,height=600,top=0,left=0,resizable=yes,status=yes,menubar=no,scrollbars=yes');
|
|
},
|
|
scope: this
|
|
|
|
},
|
|
{
|
|
text: "保存",
|
|
iconCls: "btnsave",
|
|
handler: function (button, event) {
|
|
this.onPostDetailClick(button, event);
|
|
},
|
|
scope: this
|
|
}, '-',
|
|
{
|
|
text: "删除",
|
|
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.panelCtn = new Ext.Panel({
|
|
layout: "border",
|
|
title: '应付账期',
|
|
region: "center",
|
|
items: [this.gridList]
|
|
});
|
|
|
|
|
|
this.storeListDetail = Ext.create('Ext.data.Store', {
|
|
model: 'MsCodeLhCustCrStlDateDetailMode',
|
|
remoteSort: true,
|
|
proxy: {
|
|
type: 'ajax',
|
|
url: '/MvcShipping/MsCodeLhCustRate/GetLhCustCrStlDateDataDetailList',
|
|
reader: {
|
|
id: 'GID',
|
|
root: 'data',
|
|
totalProperty: 'totalCount'
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
this.storeSource = Ext.create('DsExt.ux.RefTableStore', {
|
|
model: 'DsShipping.ux.SourceModel',
|
|
proxy: { url: '/CommMng/BasicDataRef/GetSource' }
|
|
});
|
|
this.storeSource.load();
|
|
this.comboxBSSOURCE = Ext.create('DsExt.ux.RefTableCombox', {
|
|
store: this.storeSource,
|
|
forceSelection: true,
|
|
name: 'BSSOURCE',
|
|
valueField: 'SourceName',
|
|
displayField: 'SourceName'
|
|
});
|
|
|
|
|
|
|
|
this.gridListDetailCellEditing = Ext.create('Ext.grid.plugin.CellEditing', {
|
|
clicksToEdit: 1
|
|
});
|
|
|
|
//定义Grid
|
|
this.gridListDetail = new Ext.grid.GridPanel({
|
|
store: this.storeListDetail,
|
|
enableHdMenu: false,
|
|
region: 'center',
|
|
loadMask: { msg: "数据加载中,请稍等..." },
|
|
trackMouseOver: true,
|
|
disableSelection: false,
|
|
plugins: [this.gridListDetailCellEditing],
|
|
selType: 'cellmodel',
|
|
tbar: [{
|
|
text: '新增', //'增加费用明细',
|
|
tooltip: '新增', //'增加费用明细',
|
|
iconCls: "btnadddetail",
|
|
handler: function (button, event) {
|
|
this.onAddDetail2Click(button, event);
|
|
},
|
|
scope: this
|
|
}, '-', {
|
|
text: '删除', //'删除费用明细',
|
|
tooltip: '删除', //'删除费用明细',
|
|
iconCls: "btndeletedetail",
|
|
handler: function (button, event) {
|
|
this.onDelDetail2Click(button, event);
|
|
},
|
|
scope: this
|
|
}, '-',
|
|
{
|
|
text: "保存",
|
|
iconCls: "btnsave",
|
|
handler: function (button, event) {
|
|
this.onPostDetail2Click(button, event);
|
|
},
|
|
scope: this
|
|
}],
|
|
columns: [{
|
|
sortable: true,
|
|
dataIndex: 'GID',
|
|
header: 'GID',
|
|
hidden: true,
|
|
width: 120
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'BSSOURCE',
|
|
header: '业务来源',
|
|
width: 160,
|
|
editor: this.comboxBSSOURCE
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'GRACEDAY',
|
|
header: '宽限天数',
|
|
width: 160,
|
|
editor: {
|
|
xtype: 'numberfield',
|
|
keyNavEnabled: false,
|
|
selectOnFocus: true,
|
|
decimalPrecision: 6,
|
|
hideTrigger: true,
|
|
width: 120,
|
|
mouseWheelEnabled: false
|
|
}
|
|
}
|
|
]
|
|
});
|
|
|
|
|
|
this.MainCenter = new Ext.TabPanel({
|
|
activeTab: 0,
|
|
autoWidth: true,
|
|
border: true,
|
|
frame: false,
|
|
region: 'center',
|
|
enableTabScroll: true,
|
|
items:
|
|
[
|
|
this.panelCtn
|
|
]
|
|
|
|
});
|
|
|
|
this.panelSum = new Ext.Panel({
|
|
title: '宽限天数',
|
|
layout: "border",
|
|
split: true,
|
|
height: 220,
|
|
region: 'south',
|
|
margin: '0 0',
|
|
frame: true,
|
|
items: [this.gridListDetail]
|
|
});
|
|
|
|
|
|
Ext.apply(this, {
|
|
items: [this.panelTop, this.MainCenter, this.panelSum]
|
|
});
|
|
|
|
this.storeList.on('beforeload', function (store) {
|
|
Ext.apply(store.proxy.extraParams, { condition:'' });
|
|
}, this);
|
|
|
|
|
|
|
|
|
|
|
|
this.onRefreshClick();
|
|
|
|
}, //end initUIComponents
|
|
|
|
onRefreshClick: function (button, event) {
|
|
this.storeList.load({
|
|
params: { start: 0, limit: 500, sort: '', condition: '' },
|
|
waitMsg: "正在查询数据...",
|
|
scope: this
|
|
});
|
|
},
|
|
|
|
addDetail: function () {
|
|
//var newSerialno = DsGetNewSerialNo(this.storeBodyList, this.serialNo);
|
|
var record = Ext.create('MsCodeLhCustCrStlDateMode', {
|
|
GID: '*',
|
|
CUSTOMERNAME: '',
|
|
CRDAY:0
|
|
});
|
|
|
|
this.storeList.add(record);
|
|
var n = this.storeList.getCount();
|
|
this.gridListCellEditing.startEditByPosition({ row: n - 1, column: 1 });
|
|
|
|
},
|
|
|
|
|
|
|
|
onPostDetailClick: function (button, event) {
|
|
|
|
var bodyDrChFeeDatas = [];
|
|
var i;
|
|
|
|
|
|
for (i = 0; i < this.storeList.getCount(); i += 1) {
|
|
var memberyf = this.storeList.getAt(i);
|
|
|
|
bodyDrChFeeDatas.push(memberyf);
|
|
|
|
};
|
|
var jsonChFeeBody = ConvertGIDRecordsToJson(bodyDrChFeeDatas);
|
|
|
|
|
|
_thisfee = this;
|
|
Ext.Msg.wait('正在保存数据, 请稍侯..');
|
|
Ext.Ajax.request({
|
|
waitMsg: '正在保存数据...',
|
|
url: '/MvcShipping/MsCodeLhCustRate/SaveLhCustCrStlDateDetail',
|
|
scope: this,
|
|
params: {
|
|
body: jsonChFeeBody
|
|
},
|
|
callback: function (options, success, response) {
|
|
if (success) {
|
|
Ext.MessageBox.hide();
|
|
var jsonresult = Ext.JSON.decode(response.responseText);
|
|
if (jsonresult.Success) {
|
|
|
|
this.onRefreshClick();
|
|
|
|
} else {
|
|
Ext.Msg.show({ title: '错误', msg: jsonresult.Message, icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
|
|
}
|
|
} else {
|
|
Ext.Msg.show({ title: '请重试',
|
|
msg: '服务器响应出错',
|
|
icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}, //end save
|
|
|
|
|
|
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: '/MvcShipping/MsCodeLhCustRate/DeleteLhCustCrStlDate',
|
|
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
|
|
|
|
|
|
onAddDetail2Click: function () {
|
|
//var newSerialno = DsGetNewSerialNo(this.storeBodyList, this.serialNo);
|
|
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 arecord = selections[0];
|
|
this.SelectedRecordF = arecord.data;
|
|
|
|
var record = Ext.create('MsCodeLhCustCrStlDateDetailMode', {
|
|
GID: '*',
|
|
LINKGID: this.SelectedRecordF.GID,
|
|
BSSOURCE: '',
|
|
GRACEDAY: 0
|
|
});
|
|
|
|
this.storeListDetail.add(record);
|
|
var n = this.storeListDetail.getCount();
|
|
this.gridListDetailCellEditing.startEditByPosition({ row: n - 1, column: 1 });
|
|
|
|
},
|
|
|
|
|
|
|
|
onPostDetail2Click: function (button, event) {
|
|
|
|
var bodyDrChFeeDatas = [];
|
|
var i;
|
|
|
|
|
|
for (i = 0; i < this.storeListDetail.getCount(); i += 1) {
|
|
var memberyf = this.storeListDetail.getAt(i);
|
|
|
|
bodyDrChFeeDatas.push(memberyf);
|
|
|
|
};
|
|
var jsonChFeeBody = ConvertGIDRecordsToJson(bodyDrChFeeDatas);
|
|
|
|
|
|
_thisfee = this;
|
|
Ext.Msg.wait('正在保存数据, 请稍侯..');
|
|
Ext.Ajax.request({
|
|
waitMsg: '正在保存数据...',
|
|
url: '/MvcShipping/MsCodeLhCustRate/SaveLhCustCrStlDateBsSouceDetail',
|
|
scope: this,
|
|
params: {
|
|
body: jsonChFeeBody
|
|
},
|
|
callback: function (options, success, response) {
|
|
if (success) {
|
|
Ext.MessageBox.hide();
|
|
var jsonresult = Ext.JSON.decode(response.responseText);
|
|
if (jsonresult.Success) {
|
|
this.storeListDetail.reload();
|
|
} else {
|
|
Ext.Msg.show({ title: '错误', msg: jsonresult.Message, icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
|
|
}
|
|
} else {
|
|
Ext.Msg.show({
|
|
title: '请重试',
|
|
msg: '服务器响应出错',
|
|
icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}, //end save
|
|
|
|
|
|
onDelDetail2Click: function (button, event) {
|
|
var selections = this.gridListDetail.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: '/MvcShipping/MsCodeLhCustRate/DeleteCodeLhCustCrStlDateDetail',
|
|
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.storeListDetail.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
|
|
|
|
|
|
OprationSwap: function () {
|
|
var ret = new Array();
|
|
ret[0] = this.OprationStatus;
|
|
ret[1] = this.storeList;
|
|
ret[2] = this.SelectedRecord;
|
|
|
|
return ret;
|
|
}
|
|
|
|
});
|
|
|
|
|