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
18 KiB
JavaScript
564 lines
18 KiB
JavaScript
Ext.namespace('Shipping');
|
|
|
|
Shipping.MsCodeGoodsEdit = function (config) {
|
|
Ext.applyIf(this, config);
|
|
this.initUIComponents();
|
|
window.Shipping.MsCodeGoodsEdit.superclass.constructor.call(this);
|
|
};
|
|
Ext.extend(Shipping.MsCodeGoodsEdit, Ext.Panel, {
|
|
|
|
ParentWin: null,
|
|
OpStatus: 'add',
|
|
storeList: null,
|
|
EditRecord: null,
|
|
feeType: 0,
|
|
StoreFee: null,
|
|
initUIComponents: function () {
|
|
this.serialNo = 0;
|
|
this.workSerialNo = 0;
|
|
this.bodyDel = [];
|
|
this.CodeGoodsEdit = getUrlParam('CodeGoodsEdit');
|
|
//#region 编辑form
|
|
//枚举参照相关(编辑form)
|
|
this.StoreGoodsType = Ext.create('DsExt.ux.RefTableStore', {
|
|
model: 'MsCodeGoodsType',
|
|
proxy: { url: '/MvcShipping/MsCodeDisportSet/GetGoodsType' }
|
|
});
|
|
this.StoreGoodsType.load({ params: { condition: ""} });
|
|
//国家下拉框查询
|
|
this.StoreCountryType = Ext.create('DsExt.ux.RefTableStore', {
|
|
model: 'countryype',
|
|
proxy: { url: '/MvcShipping/MsCodeDisportSet/GetCountryType' }
|
|
});
|
|
this.StoreCountryType.load({ params: { condition: ""} });
|
|
//航线store
|
|
this.StoreLaneType = Ext.create('DsExt.ux.RefTableStore', {
|
|
model: 'LaneType',
|
|
proxy: { url: '/MvcShipping/MsCodeDisportSet/GetLineType' }
|
|
});
|
|
this.StoreLaneType.load({ params: { condition: ""} });
|
|
|
|
//国家列表
|
|
this.countryType = Ext.create('DsExt.ux.RefTableCombox', {
|
|
fieldLabel: '国家',
|
|
store: this.StoreCountryType,
|
|
forceSelection: true,
|
|
name: 'country',
|
|
valueField: 'countryid',
|
|
displayField: 'country'
|
|
});
|
|
//航线列表
|
|
this.laneType = Ext.create('DsExt.ux.RefTableCombox', {
|
|
fieldLabel: '航线',
|
|
store: this.StoreLaneType,
|
|
forceSelection: true,
|
|
name: 'LANEGID',
|
|
valueField: 'GID',
|
|
displayField: 'LANE',
|
|
});
|
|
//港口类型
|
|
this.storeISSTOP = Ext.create('Ext.data.Store', {
|
|
fields: ['gkid', 'gkname']
|
|
});
|
|
this.storeISSTOP.add({ "gkid": "港口", "gkname": "港口" });
|
|
this.storeISSTOP.add({ "gkid": "内陆点", "gkname": "内陆点" });
|
|
this.comboxISSTOP = Ext.create('DsExt.ux.RefTableCombox', {
|
|
fieldLabel: '港口类型',
|
|
store: this.storeISSTOP,
|
|
valueField: 'gkid',
|
|
displayField: 'gkname',
|
|
name: 'PORTTYPE'
|
|
});
|
|
//洲
|
|
this.storeChau = Ext.create('Ext.data.Store', {
|
|
fields: ['chauid', 'chauname']
|
|
});
|
|
this.storeChau.add({ "chauid": "Asia-亚洲", "chauname": "Asia-亚洲" });
|
|
this.storeChau.add({ "chauid": "Europe-欧洲", "chauname": "Europe-欧洲" });
|
|
this.storeChau.add({ "chauid": "North America-北美洲", "chauname": "North America-北美洲" });
|
|
this.storeChau.add({ "chauid": "South America-南美洲", "chauname": "South America-南美洲" });
|
|
this.storeChau.add({ "chauid": "Africa-非洲", "chauname": "Africa-非洲" });
|
|
this.storeChau.add({ "chauid": "Oceania-大洋洲", "chauname": "Oceania-大洋洲" });
|
|
this.storeChau.add({ "chauid": "Antarctica-南极洲", "chauname": "Antarctica-南极洲" });
|
|
|
|
this.chau = Ext.create('DsExt.ux.RefTableCombox', {
|
|
fieldLabel: '洲',
|
|
store: this.storeChau,
|
|
valueField: 'chauid',
|
|
displayField: 'chauname',
|
|
name: 'CHAU'
|
|
});
|
|
//表参照相关(编辑form)
|
|
|
|
//编辑form
|
|
this.formEdit = Ext.widget('form', {
|
|
region: 'center',
|
|
frame: true,
|
|
bodyPadding: 5,
|
|
autoScroll: true,
|
|
fieldDefaults: {
|
|
margins: '2 2 2 2',
|
|
labelAlign: 'right',
|
|
flex: 1,
|
|
labelWidth: 90,
|
|
msgTarget: 'qtip'
|
|
},
|
|
|
|
items: [
|
|
{//fieldset 1
|
|
xtype: 'fieldset',
|
|
defaultType: 'textfield',
|
|
layout: 'anchor',
|
|
defaults: {
|
|
//anchor: '100%'
|
|
},
|
|
items: [ {
|
|
xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [{
|
|
fieldLabel: '港口中文名称',
|
|
name: 'cname',
|
|
allowBlank: false
|
|
}, {
|
|
fieldLabel: '港口英文名称',
|
|
flex: 1, name: 'PORT',
|
|
allowBlank: false
|
|
}]
|
|
}, {
|
|
xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [this.countryType, this.chau]
|
|
|
|
},{
|
|
xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [{
|
|
fieldLabel: 'PORTID',
|
|
name: 'PORTID', flex: 0, hidden: true, margins: '0'
|
|
}, this.laneType,this.comboxISSTOP ,
|
|
]
|
|
}, {
|
|
xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [{
|
|
fieldLabel: '港口EDI编码',
|
|
name: 'EDICODE',
|
|
},{
|
|
fieldLabel: '港口说明',
|
|
name: 'DESCRIP'
|
|
}]
|
|
|
|
}
|
|
]//end items(fieldset 1)
|
|
}//end fieldset 1
|
|
]//end root items
|
|
}); //end this.formEdit
|
|
|
|
|
|
|
|
this.panelBtn = new Ext.Panel({
|
|
region: "north",
|
|
tbar: [
|
|
{
|
|
text: "保存",
|
|
iconCls: "btnsave",
|
|
handler: function (button, event) {
|
|
this.Save('0');
|
|
},
|
|
scope: this
|
|
},
|
|
{
|
|
text: "保存并关闭",
|
|
handler: function (button, event) {
|
|
this.Save('1');
|
|
},
|
|
scope: this
|
|
},
|
|
'-',
|
|
{
|
|
text: "保存并新建",
|
|
handler: function (button, event) {
|
|
this.Save('2');
|
|
},
|
|
scope: this
|
|
},
|
|
'-',
|
|
{
|
|
text: "复制新建",
|
|
handler: function (button, event) {
|
|
|
|
var basicForm = this.formEdit.getForm();
|
|
this.opStatus = 'add';
|
|
basicForm.findField('PORTID').setDisabled(false);
|
|
var field = basicForm.findField('PORTID');
|
|
field.setValue(NewGuid());
|
|
basicForm.findField('PORTID').setDisabled(true);
|
|
field = basicForm.findField('CREATEUSERREF');
|
|
field.setValue('');
|
|
field = basicForm.findField('GOODNAME');
|
|
field.setValue('');
|
|
for (var j = 0; j < this.storeBodyList.getCount(); j += 1) {
|
|
var memberbody = this.storeBodyList.getAt(j);
|
|
memberbody.set("LINKGID", '*');
|
|
memberbody.commit();
|
|
};
|
|
},
|
|
scope: this
|
|
}
|
|
]
|
|
}); //end 按钮Toolbar
|
|
|
|
//#endregion
|
|
|
|
//#region 明细表
|
|
|
|
|
|
//明细表-数据集
|
|
this.storeBodyList = Ext.create('Ext.data.Store', {
|
|
model: 'MsCodeGoodsDetail',
|
|
remoteSort: true,
|
|
proxy: {
|
|
type: 'ajax',
|
|
url: '/MvcShipping/MsCodeDisportSet/GetBodyList',
|
|
reader: {
|
|
root: 'data',
|
|
totalProperty: 'totalCount'
|
|
}
|
|
}
|
|
});
|
|
|
|
//明细表表格
|
|
this.gridListCellEditing = Ext.create('Ext.grid.plugin.CellEditing', {
|
|
clicksToEdit: 1
|
|
});
|
|
|
|
|
|
this.gridList = new Ext.grid.GridPanel({
|
|
store: this.storeBodyList,
|
|
enableHdMenu: false,
|
|
region: 'center',
|
|
loadMask: { msg: "数据加载中,请稍等..." },
|
|
trackMouseOver: true,
|
|
disableSelection: false,
|
|
plugins: [this.gridListCellEditing],
|
|
selType: 'cellmodel',
|
|
tbar: [{
|
|
text: '增加规格明细',
|
|
tooltip: '增加规格明细',
|
|
iconCls: "btnadddetail",
|
|
handler: function (button, event) {
|
|
this.onAddDetailClick(button, event, 1);
|
|
},
|
|
scope: this
|
|
}, '-', {
|
|
text: '删除规格明细',
|
|
tooltip: '删除规格明细',
|
|
iconCls: "btndeletedetail",
|
|
handler: function (button, event) {
|
|
this.onDelDetailClick(button, event, 1);
|
|
},
|
|
scope: this
|
|
}],
|
|
columns: [{
|
|
sortable: true,
|
|
dataIndex: 'GID',
|
|
header: 'GID',
|
|
hidden: true,
|
|
width: 100
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'LINKGID',
|
|
header: 'LINKGID',
|
|
hidden: true,
|
|
width: 100
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'GOODSDETAILNAME',
|
|
header: '规格描述',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
},
|
|
width: 150
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'GOODSDETAILPKGS',
|
|
header: '规格件数',
|
|
editor: {
|
|
xtype: 'numberfield',
|
|
keyNavEnabled: false,
|
|
selectOnFocus: true,
|
|
hideTrigger: true,
|
|
mouseWheelEnabled: false,
|
|
enableKeyEvents: true
|
|
},
|
|
renderer: function (value, cellmeta, record, rowIndex, columnIndex, store) {
|
|
try {
|
|
var lsValue = usMoney(value, 2, '', false);
|
|
if (lsValue != "NaN") {
|
|
value = lsValue; if (parseFloat(lsValue) < 0) {
|
|
return '<SPAN style="COLOR: red">' + lsValue + '</SPAN>';
|
|
}
|
|
}
|
|
else {
|
|
return value;
|
|
}
|
|
}
|
|
catch (e) {
|
|
return value;
|
|
}
|
|
return value;
|
|
},
|
|
align: 'right',
|
|
width: 80
|
|
}, {
|
|
sortable: true,
|
|
dataIndex: 'REMARK',
|
|
header: '备注',
|
|
editor: {
|
|
xtype: 'textfield',
|
|
selectOnFocus: true,
|
|
enableKeyEvents: true
|
|
|
|
},
|
|
width: 150
|
|
}
|
|
]
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#region 布局
|
|
//控件布局
|
|
this.panelTop = new Ext.Panel({
|
|
layout: "border",
|
|
region: "north",
|
|
height: 360,
|
|
items: [this.panelBtn, this.formEdit]
|
|
});
|
|
|
|
Ext.apply(this, {
|
|
items: [this.panelTop, this.paneldetail]
|
|
});
|
|
|
|
//#endregion
|
|
|
|
//绑定查询窗体
|
|
|
|
//初始化数据
|
|
|
|
|
|
this.ParentWin = window.parent.opener;
|
|
this.InitData();
|
|
|
|
this.storeBodyList.on('beforeload', function (store) {
|
|
var cargoid = 0;
|
|
if (this.opStatus == 'edit') {
|
|
cargoid = this.editRecord.get('PORTID');
|
|
}
|
|
var sql = " LINKGID='" + cargoid + "'";
|
|
Ext.apply(store.proxy.extraParams, { condition: sql });
|
|
}, this);
|
|
|
|
|
|
}, //end initUIComponents
|
|
|
|
InitData: function () {
|
|
this.opStatus = 'add';
|
|
var condition = '';
|
|
if (this.ParentWin) {
|
|
var ret = this.ParentWin.OprationSwap();
|
|
this.opStatus = ret[0];
|
|
this.storeList = ret[1];
|
|
this.editRecord = ret[2];
|
|
}
|
|
|
|
if (this.opStatus == 'edit')
|
|
condition =this.editRecord.get('PORTID');
|
|
this.LoadData(this.opStatus, condition);
|
|
|
|
}, //end InitData
|
|
|
|
LoadData: function (opstatus, condition) {
|
|
this.serialNo = 0;
|
|
this.workSerialNo = 0;
|
|
this.bodyDel = [];
|
|
this.opStatus = opstatus;
|
|
Ext.Ajax.request({
|
|
waitMsg: '正在查询主表数据...',
|
|
url: '/MvcShipping/MsCodeDisportSet/GetData',
|
|
params: {
|
|
handle: opstatus,
|
|
condition: condition
|
|
},
|
|
callback: function (options, success, response) {
|
|
if (success) {
|
|
var result = Ext.JSON.decode(response.responseText);
|
|
if (!result.Success) {
|
|
Ext.Msg.show({
|
|
title: '提示',
|
|
msg: result.Message,
|
|
icon: Ext.MessageBox.ERROR,
|
|
buttons: Ext.Msg.OK
|
|
});
|
|
return;
|
|
}
|
|
|
|
var data = result.data;
|
|
this.formEdit.getForm().reset();
|
|
this.formEdit.getForm().setValues(data);
|
|
} else {
|
|
Ext.MessageBox.alert('请求出现错误,请重试', response.responseText);
|
|
}
|
|
},
|
|
scope: this
|
|
});
|
|
|
|
var billno = '*';
|
|
var cargoid = 0;
|
|
if (this.opStatus == 'edit') {
|
|
cargoid = this.editRecord.get('PORTID');
|
|
|
|
}
|
|
this.storeBodyList.load({ params: { condition: " LINKGID='" + cargoid + "'"} });
|
|
}, // end LoadDate
|
|
|
|
|
|
Save: function (type) {
|
|
var basicForm = this.formEdit.getForm();
|
|
|
|
if (!basicForm.isValid()) {
|
|
return;
|
|
}
|
|
|
|
|
|
var data = basicForm.getValues();
|
|
|
|
if (this.opStatus == 'add') {
|
|
data.DM_ID = NewGuid();
|
|
}
|
|
var bodydatas = [];
|
|
for (var i = 0; i < this.storeBodyList.getCount(); i += 1) {
|
|
var member = this.storeBodyList.getAt(i);
|
|
bodydatas.push(member);
|
|
}
|
|
|
|
var jsonBody = ConvertRecordsToJsonAll(bodydatas);
|
|
|
|
|
|
Ext.Msg.wait('正在保存数据, 请稍侯..');
|
|
Ext.Ajax.request({
|
|
waitMsg: '正在保存数据...',
|
|
url: '/MvcShipping/MsCodeDisportSet/Save',
|
|
scope: this,
|
|
params: {
|
|
opstatus: this.opStatus,
|
|
data: Ext.JSON.encode(data),
|
|
body: jsonBody
|
|
},
|
|
callback: function (options, success, response) {
|
|
if (success) {
|
|
Ext.MessageBox.hide();
|
|
var jsonresult = Ext.JSON.decode(response.responseText);
|
|
if (jsonresult.Success) {
|
|
var returnData = jsonresult.Data;
|
|
this.formEdit.getForm().setValues(returnData);
|
|
if (this.opStatus == 'add') {
|
|
Ext.Msg.alert('提示','添加成功');
|
|
var arrNewRecords = this.storeList.add(returnData);
|
|
this.editRecord = arrNewRecords[0];
|
|
this.opStatus = 'edit';
|
|
}
|
|
else if (this.opStatus == 'edit') {
|
|
this.opStatus='edit';
|
|
Ext.Msg.alert('提示','修改成功');
|
|
this.storeList.reload();
|
|
this.editRecord.commit();
|
|
}
|
|
if (type == '0') {
|
|
this.opStatus = 'edit';
|
|
basicForm.findField('PORTID').setDisabled(true);
|
|
for (var j = 0; j < this.storeBodyList.getCount(); j += 1) {
|
|
var memberbody = this.storeBodyList.getAt(j);
|
|
memberbody.set("GID", this.editRecord.get('GID'));
|
|
memberbody.commit();
|
|
};
|
|
|
|
} else if (type == '1') {
|
|
window.close();
|
|
} else {
|
|
this.LoadData('add', '');
|
|
basicForm.findField('GID').setDisabled(false);
|
|
}
|
|
} 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
|
|
|
|
onAddDetailClick: function (button, event, type) {
|
|
this.addDetail(type);
|
|
}, //end onAddDetailClick
|
|
|
|
onDelDetailClick: function (button, event, type) {
|
|
this.deleteDetail(type);
|
|
}, //onDelDetailClick
|
|
|
|
|
|
|
|
gridAfterEdit: function (editor, e, eOpts) {
|
|
|
|
},
|
|
|
|
addDetail: function (type) {
|
|
var newSerialno = 0;
|
|
|
|
store = this.storeBodyList;
|
|
|
|
var record = Ext.create('MsCodeGoodsDetail', {
|
|
GID: '',
|
|
LINKGID: '',
|
|
GOODSDETAILNAME: "",
|
|
GOODSDETAILPKGS: 0
|
|
|
|
});
|
|
|
|
store.add(record);
|
|
|
|
|
|
this.gridListCellEditing.startEditByPosition({ row: 2, column: 1 });
|
|
|
|
},
|
|
|
|
|
|
deleteDetail: function (type) {
|
|
|
|
var selectedRecords = this.gridList.selModel.getSelection();
|
|
|
|
for (var i = 0; i < selectedRecords.length; i++) {
|
|
var rec = selectedRecords[i];
|
|
|
|
this.storeBodyList.remove(rec);
|
|
}
|
|
|
|
|
|
}
|
|
});
|
|
|
|
|