|
|
|
@ -704,7 +704,7 @@ Ext.extend(Shipping.MsOpApplyEdit, Ext.Panel, {
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetCodeDisportListRm' }
|
|
|
|
|
});
|
|
|
|
|
this.comboxPORTDISCHARGE = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: Zi.LAN.PORTDISCHARGE, //'卸货港',
|
|
|
|
|
fieldLabel: '卸货港', //'卸货港',
|
|
|
|
|
store: this.storeCodeDisport,
|
|
|
|
|
name: 'PORTDISCHARGE',
|
|
|
|
|
matchFieldWidth: false,
|
|
|
|
@ -2498,6 +2498,8 @@ Ext.extend(Shipping.MsOpApplyEdit, Ext.Panel, {
|
|
|
|
|
|
|
|
|
|
data = result.data;
|
|
|
|
|
|
|
|
|
|
this.LoadInit(data);
|
|
|
|
|
|
|
|
|
|
this.formEdit.getForm().reset();
|
|
|
|
|
this.formEdit.getForm().setValues(data);
|
|
|
|
|
this.formHead.getForm().reset();
|
|
|
|
@ -2539,6 +2541,17 @@ Ext.extend(Shipping.MsOpApplyEdit, Ext.Panel, {
|
|
|
|
|
this.storeCtnBodyList.load({ params: { condition: condition} });
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
LoadInit: function (data) {
|
|
|
|
|
|
|
|
|
|
var newrec1 = { PORT: data.PORTLOAD, CodeAndName: data.PORTLOAD };
|
|
|
|
|
this.storeCodeLoadport.add(newrec1);
|
|
|
|
|
|
|
|
|
|
var newrec2 = { PORT: data.PORTDISCHARGE, CodeAndName: data.PORTDISCHARGE };
|
|
|
|
|
this.storeCodeDisport.add(newrec2);
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
LoadCopyData: function (bsno, CopyFee) {
|
|
|
|
|
this.serialNo = 0;
|
|
|
|
|
Ext.Ajax.request({
|
|
|
|
|