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.
294 lines
10 KiB
JavaScript
294 lines
10 KiB
JavaScript
Ext.namespace('Shipping');
|
|
|
|
Shipping.SeaAmendFee = function (config) {
|
|
Ext.applyIf(this, config);
|
|
this.initUIComponents();
|
|
window.Shipping.SeaAmendFee.superclass.constructor.call(this);
|
|
};
|
|
|
|
|
|
Ext.extend(Shipping.SeaAmendFee, Ext.Panel, {
|
|
ParentWin: null,
|
|
OpStatus: 'add',
|
|
StoreList: null,
|
|
EditRecord: null,
|
|
region: 'north',
|
|
|
|
|
|
initUIComponents: function () {
|
|
|
|
//枚举参照相关
|
|
//编辑form
|
|
this.storebill = Ext.create('Ext.data.Store', {
|
|
model: 'MsSeae',
|
|
remoteSort: false,
|
|
proxy: {
|
|
type: 'ajax',
|
|
url: '/MvcShipping/MsSeaeFee/GetBLData',
|
|
reader: {
|
|
id: 'GId',
|
|
root: 'data',
|
|
totalProperty: 'totalCount'
|
|
}
|
|
}
|
|
});
|
|
var condition = " BsNo='" + getUrlParam('id') + "'";
|
|
|
|
|
|
|
|
this.formEdit = Ext.widget('form', {
|
|
frame: true,
|
|
bodyPadding: 5,
|
|
fieldDefaults: {
|
|
margins: '2 2 2 2',
|
|
labelAlign: 'right',
|
|
flex: 1,
|
|
labelWidth: 90,
|
|
msgTarget: 'qtip'
|
|
},
|
|
items: [
|
|
{
|
|
xtype: 'fieldset',
|
|
defaultType: 'textfield',
|
|
layout: 'anchor',
|
|
defaults: {
|
|
anchor: '100%'
|
|
},
|
|
items: [
|
|
{ xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [{
|
|
fieldLabel: '件数',
|
|
name: 'PKGS', flex: 0, hidden: true, margins: '0'
|
|
}, {
|
|
fieldLabel: '重量',
|
|
name: 'KGS', flex: 0, hidden: true, margins: '0'
|
|
}, {
|
|
fieldLabel: '尺码',
|
|
name: 'CBM', flex: 0, hidden: true, margins: '0'
|
|
}, {
|
|
fieldLabel: '委托编号',
|
|
readOnly: true,
|
|
name: 'CUSTNO'
|
|
}, {
|
|
fieldLabel: '主提单号',
|
|
readOnly: true,
|
|
name: 'MBLNO'
|
|
},
|
|
{
|
|
fieldLabel: '箱型箱量',
|
|
readOnly: true,
|
|
name: 'CNTRTOTAL'
|
|
}, {
|
|
fieldLabel: '付费方式',
|
|
readOnly: true,
|
|
name: 'BLFRT'
|
|
}
|
|
]
|
|
},
|
|
{ xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [{
|
|
fieldLabel: '揽货人',
|
|
readOnly: true,
|
|
name: 'SALE'
|
|
}, {
|
|
fieldLabel: '委托单位',
|
|
readOnly: true,
|
|
name: 'CUSTOMERNAME'
|
|
},
|
|
{
|
|
fieldLabel: '卸货港',
|
|
readOnly: true,
|
|
name: 'PORTDISCHARGE'
|
|
}, {
|
|
fieldLabel: 'MBL付费方式',
|
|
readOnly: true,
|
|
name: 'MBLFRT'
|
|
}
|
|
]
|
|
},
|
|
{ xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [{
|
|
fieldLabel: '业务来源',
|
|
readOnly: true,
|
|
name: 'BSSOURCE'
|
|
}, {
|
|
fieldLabel: '航线',
|
|
readOnly: true,
|
|
name: 'LANE'
|
|
},
|
|
{
|
|
fieldLabel: '船名',
|
|
readOnly: true,
|
|
name: 'VESSEL'
|
|
}, {
|
|
fieldLabel: '航次',
|
|
readOnly: true,
|
|
name: 'VOYNO'
|
|
}
|
|
]
|
|
},
|
|
{ xtype: 'container',
|
|
layout: 'hbox',
|
|
defaultType: 'textfield',
|
|
items: [{
|
|
xtype: 'label',
|
|
text: '服务项目'
|
|
},
|
|
{
|
|
xtype: 'checkboxfield',
|
|
fieldLabel: '熏蒸',
|
|
flex: 1,
|
|
labelAlign: 'right',
|
|
readOnly: true,
|
|
frame: true,
|
|
name: 'ISFUMIGATION'
|
|
},
|
|
{
|
|
xtype: 'checkboxfield',
|
|
fieldLabel: '仓储',
|
|
flex: 1,
|
|
labelAlign: 'right',
|
|
readOnly: true,
|
|
name: 'ISSTORAGE'
|
|
},
|
|
{
|
|
xtype: 'checkboxfield',
|
|
fieldLabel: '陆运',
|
|
flex: 1,
|
|
labelAlign: 'right',
|
|
readOnly: true,
|
|
name: 'ISLAND'
|
|
},
|
|
{
|
|
xtype: 'checkboxfield',
|
|
fieldLabel: '报关',
|
|
flex: 1,
|
|
labelAlign: 'right',
|
|
readOnly: true,
|
|
name: 'ISCUSTOMES'
|
|
},
|
|
{
|
|
xtype: 'checkboxfield',
|
|
fieldLabel: '报检',
|
|
flex: 1,
|
|
labelAlign: 'right',
|
|
readOnly: true,
|
|
name: 'ISINSPECTION'
|
|
},
|
|
{
|
|
xtype: 'checkboxfield',
|
|
fieldLabel: '订舱',
|
|
flex: 1,
|
|
labelAlign: 'right',
|
|
readOnly: true,
|
|
name: 'ISBOOKING'
|
|
},
|
|
{
|
|
xtype: 'checkboxfield',
|
|
fieldLabel: '使用代理',
|
|
flex: 1,
|
|
labelAlign: 'right',
|
|
readOnly: true,
|
|
name: 'ISAGENT'
|
|
},
|
|
{
|
|
xtype: 'checkboxfield',
|
|
fieldLabel: '分单签单',
|
|
flex: 1,
|
|
labelAlign: 'right',
|
|
readOnly: true,
|
|
name: 'ISHBLNO'
|
|
}
|
|
]
|
|
}
|
|
|
|
|
|
]
|
|
|
|
}]
|
|
|
|
|
|
}); //end this.formEdit
|
|
|
|
this.panelTop = new Ext.Panel({
|
|
layout: "border",
|
|
region: "north",
|
|
height: 120,
|
|
id: "BillHead",
|
|
items: [this.formEdit]
|
|
});
|
|
|
|
this.panelFee = new Shipping.FeeAmendEditGrid({
|
|
region: 'center',
|
|
layout: 'border'
|
|
});
|
|
|
|
this.storebill.load({ params: { condition: condition },
|
|
callback: function (r, options, success) {
|
|
if (success) {
|
|
if (r.length == 1) {
|
|
this.formEdit.getForm().loadRecord(this.storebill.getAt(0));
|
|
|
|
this.panelFee.EditRecord = this.storebill.getAt(0);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
},
|
|
scope: this
|
|
});
|
|
|
|
// this.panelFee.StoreBill = this.storebill;
|
|
this.bsno = getUrlParam('id');
|
|
|
|
this.panelFee.strBSNO = this.bsno;
|
|
this.panelFee.stroplb = 'op_Seae';
|
|
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "WTDW-委托单位", "CUSTTYPE": "委托单位", "CUSTNAME": "CUSTOMERNAME" });
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "CGS-船公司", "CUSTTYPE": "船公司", "CUSTNAME": "CARRIER" });
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "DCDL-订舱代理", "CUSTTYPE": "订舱代理", "CUSTNAME": "FORWARDER" });
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "BGH-报关行", "CUSTTYPE": "报关行", "CUSTNAME": "CUSTOMSER" });
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "CD-车队", "CUSTTYPE": "车队", "CUSTNAME": "TRUCKER" });
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "FHR-发货人", "CUSTTYPE": "发货人", "CUSTNAME": "SHIPPERID" });
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "SHR-收货人", "CUSTTYPE": "收货人", "CUSTNAME": "CONSIGNEEID" });
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "TZR-通知人", "CUSTTYPE": "通知人", "CUSTNAME": "NOTIFYPARTYID" });
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "DL-代理", "CUSTTYPE": "代理", "CUSTNAME": "AGENTID" });
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "CZ-场站", "CUSTTYPE": "场站", "CUSTNAME": "YARD" });
|
|
|
|
this.panelFee.StoreDrOpRange.load({ params: { optype: "modRecvFeeManagement"} });
|
|
this.panelFee.StoreCrOpRange.load({ params: { optype: "modPayFeeManagement"} });
|
|
this.panelFee.storeFeeNameRef.load({ params: { condition: "ISSEA='1' "} });
|
|
this.panelFee.StoreDateCurr.load({ params: { optype: "op_Seae", bsno: this.bsno} });
|
|
this.panelFee.StoreUnit.load({ params: { bsno: this.bsno} });
|
|
|
|
this.panelFee.storeAmendBill.load({ params: { billno: this.bsno },
|
|
callback: function (r, options, success) {
|
|
if (success) {
|
|
if (r.length>0) {
|
|
this.panelFee.gridAmendList.getSelectionModel().select(0);
|
|
}
|
|
|
|
}
|
|
},
|
|
scope: this
|
|
});
|
|
|
|
|
|
|
|
Ext.apply(this, {
|
|
items: [this.panelTop, this.panelFee]
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|