|
|
|
|
Ext.namespace('Shipping');
|
|
|
|
|
|
|
|
|
|
Shipping.OtherFee = function (config) {
|
|
|
|
|
Ext.applyIf(this, config);
|
|
|
|
|
this.initUIComponents();
|
|
|
|
|
window.Shipping.OtherFee.superclass.constructor.call(this);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Ext.extend(Shipping.OtherFee, Ext.Panel, {
|
|
|
|
|
ParentWin: null,
|
|
|
|
|
OpStatus: 'add',
|
|
|
|
|
StoreList: null,
|
|
|
|
|
EditRecord: null,
|
|
|
|
|
region: 'north',
|
|
|
|
|
|
|
|
|
|
initUIComponents: function () {
|
|
|
|
|
//枚举参照相关
|
|
|
|
|
//var mainform = window.parent._this;// Ext.getCmp('OpOtherEdit');
|
|
|
|
|
var mainform = Ext.getCmp('OpOtherEdit');
|
|
|
|
|
EditRecord = mainform.editRecord;
|
|
|
|
|
this.BSNO = EditRecord.get('BSNO');
|
|
|
|
|
this.formHead = Ext.widget('form', {
|
|
|
|
|
id: 'FeeHeadOther',
|
|
|
|
|
region: 'center',
|
|
|
|
|
frame: true,
|
|
|
|
|
bodyPadding: 5,
|
|
|
|
|
trackResetOnLoad: true,
|
|
|
|
|
fieldDefaults: {
|
|
|
|
|
margins: '2 2 2 2',
|
|
|
|
|
labelAlign: 'right',
|
|
|
|
|
flex: 1,
|
|
|
|
|
labelWidth: 60,
|
|
|
|
|
msgTarget: 'qtip'
|
|
|
|
|
},
|
|
|
|
|
items: [{
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [{
|
|
|
|
|
fieldLabel: '业务编号',
|
|
|
|
|
name: 'BSNO', flex: 0, hidden: true, margins: '0'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '委托编号',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'CUSTNO'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '业务锁定',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'BSSTATUSREF'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '费用锁定',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'FEESTATUSREF'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '会计期间',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'ACCDATE'
|
|
|
|
|
//xtype: 'monthfield',
|
|
|
|
|
//value: Ext.util.Format.date(Ext.Date.add(new Date(), Ext.Date.MONTH - 1, 1), "Y-m"),
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '委托单位',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'CUSTOMERNAME'
|
|
|
|
|
}]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [ {
|
|
|
|
|
fieldLabel: '业务来源',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'BSSOURCE'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '来源明细',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'BSSOURCEDETAIL'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '揽货人',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'SALE'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '操 作',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'OP'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '运输类型',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'TRANSTYPE'
|
|
|
|
|
}]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [{
|
|
|
|
|
fieldLabel: '主提单号',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'MBLNO'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '合同号',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'CONTRACTNO'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '件数',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'PKGS'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '毛量',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'KGS'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '尺码',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'CBM'
|
|
|
|
|
}]
|
|
|
|
|
}]//end items(fieldset 1)
|
|
|
|
|
}); //end this.formEdit
|
|
|
|
|
this.formHead.getForm().loadRecord(EditRecord);
|
|
|
|
|
|
|
|
|
|
this.panelTop = new Ext.Panel({
|
|
|
|
|
layout: "border",
|
|
|
|
|
region: "north",
|
|
|
|
|
height: 100,
|
|
|
|
|
id: "BillHeadOther",
|
|
|
|
|
items: [this.formHead]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.panelFee = new Shipping.FeeEditGrid({
|
|
|
|
|
region: 'center',
|
|
|
|
|
layout: 'border'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.panelFee.EditRecord = EditRecord;
|
|
|
|
|
this.panelFee.stroplb = 'op_other';
|
|
|
|
|
this.panelFee.strBSNO = EditRecord.get('BSNO');
|
|
|
|
|
this.panelFee.strMBLNO = EditRecord.get('MBLNO');
|
|
|
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "WTDW-委托单位", "CUSTTYPE": "委托单位", "CUSTNAME": "CUSTOMERNAME" });
|
|
|
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "BGH-报关行", "CUSTTYPE": "报关行", "CUSTNAME": "CUSTOMSER" });
|
|
|
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "HG-海关", "CUSTTYPE": "海关", "CUSTNAME": "BYCUSTOM" });
|
|
|
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "DCDL-订舱代理", "CUSTTYPE": "订舱代理", "CUSTNAME": "BYCUSTOM" });
|
|
|
|
|
this.panelFee.StoreCustType.add({ "SCUSTTYPE": "QT-其他", "CUSTTYPE": "其他", "CUSTNAME": "" });
|
|
|
|
|
|
|
|
|
|
this.panelFee.StoreDrOpRange.load({ params: { optype: "modOtherRecvFeeManagement"} });
|
|
|
|
|
this.panelFee.StoreCrOpRange.load({ params: { optype: "modOtherPayFeeManagement"} });
|
|
|
|
|
this.panelFee.StoreUnit.load({ params: { BSNO: this.BSNO, bstype: "op_other"} });
|
|
|
|
|
|
|
|
|
|
this.panelFee.storeFeeNameRef.load({ params: { condition: ""} });
|
|
|
|
|
this.panelFee.StoreDateCurr.load({ params: { optype: "op_other", BSNO: this.BSNO} });
|
|
|
|
|
|
|
|
|
|
this.panelFee.storeDrChFee.load({ params: { billno: this.BSNO, type: 1, optype: "op_other"} });
|
|
|
|
|
this.panelFee.storeCrChFee.load({ params: { billno: this.BSNO, type: 2, optype: "op_other"} });
|
|
|
|
|
|
|
|
|
|
this.panelFee.storeBodySum.load({ params: { bsno: this.BSNO, optype: "op_other" },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
_thisfee.setTotalHead();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.panelFee.storeChFeeGain.load({ params: { bsno: this.BSNO, optype: "op_other"} });
|
|
|
|
|
this.panelFee.storeBodyList_GuDingFeeWeiHu.load();
|
|
|
|
|
Ext.apply(this, {
|
|
|
|
|
items: [this.panelTop, this.panelFee]
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|