|
|
|
|
Ext.namespace('Shipping');
|
|
|
|
|
|
|
|
|
|
Shipping.MsOpAiriView = function (config) {
|
|
|
|
|
Ext.applyIf(this, config);
|
|
|
|
|
this.initUIComponents();
|
|
|
|
|
window.Shipping.MsOpAiriView.superclass.constructor.call(this);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Ext.extend(Shipping.MsOpAiriView, Ext.Panel, {
|
|
|
|
|
ParentWin: null,
|
|
|
|
|
OpStatus: 'add',
|
|
|
|
|
StoreList: null,
|
|
|
|
|
editRecord: null,
|
|
|
|
|
Editdata: null,
|
|
|
|
|
MainEditRecord: null,
|
|
|
|
|
stroplb: '空运进口',
|
|
|
|
|
isfen: false,
|
|
|
|
|
|
|
|
|
|
initUIComponents: function () {
|
|
|
|
|
this.serialNo = 0;
|
|
|
|
|
//this.bodyDel = [];
|
|
|
|
|
this.itemindex = 1;
|
|
|
|
|
this.initloaddata = 0;
|
|
|
|
|
|
|
|
|
|
this.bsno = getUrlParam('bsno');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#region 信息加载
|
|
|
|
|
this.storeDefValue = Ext.create('Ext.data.Store', {
|
|
|
|
|
model: 'DsShipping.ux.OpDefValue',
|
|
|
|
|
remoteSort: true,
|
|
|
|
|
proxy: {
|
|
|
|
|
type: 'ajax',
|
|
|
|
|
url: '/MvcShipping/MsCodeOpDef/GetDataList',
|
|
|
|
|
reader: {
|
|
|
|
|
id: 'GID',
|
|
|
|
|
root: 'data',
|
|
|
|
|
totalProperty: 'totalCount'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.storeMustBe = Ext.create('Ext.data.Store', {
|
|
|
|
|
model: 'DsShipping.ux.OpDefValue',
|
|
|
|
|
remoteSort: true,
|
|
|
|
|
proxy: {
|
|
|
|
|
type: 'ajax',
|
|
|
|
|
url: '/MvcShipping/MsCodeOpMustField/GetDataList',
|
|
|
|
|
reader: {
|
|
|
|
|
id: 'GID',
|
|
|
|
|
root: 'data',
|
|
|
|
|
totalProperty: 'totalCount'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//权限范围
|
|
|
|
|
this.StoreOpRange = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'MsOP',
|
|
|
|
|
proxy: { url: '/MvcShipping/MsBaseInfo/GetOpRang' }
|
|
|
|
|
});
|
|
|
|
|
this.StoreOpRange.load({ params: { optype: "modOpAiriList"} });
|
|
|
|
|
//人员信息加载
|
|
|
|
|
this.storeOpCode = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.UserRefModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetUserLinkRefList' }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//客服
|
|
|
|
|
this.comboxCUSTSERVICE = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '客服',
|
|
|
|
|
store: this.storeOpCode,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'CUSTSERVICE',
|
|
|
|
|
valueField: 'UserName',
|
|
|
|
|
displayField: 'CodeAndName',
|
|
|
|
|
value: SHOWNAME
|
|
|
|
|
});
|
|
|
|
|
//揽货人
|
|
|
|
|
this.comboxSALE = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '揽货人',
|
|
|
|
|
store: this.storeOpCode,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'SALE',
|
|
|
|
|
valueField: 'UserName',
|
|
|
|
|
displayField: 'CodeAndName',
|
|
|
|
|
value: SHOWNAME
|
|
|
|
|
});
|
|
|
|
|
//操 作
|
|
|
|
|
this.comboxOP = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '操 作',
|
|
|
|
|
store: this.storeOpCode,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'OP',
|
|
|
|
|
valueField: 'UserName',
|
|
|
|
|
displayField: 'CodeAndName',
|
|
|
|
|
value: SHOWNAME
|
|
|
|
|
});
|
|
|
|
|
//单证
|
|
|
|
|
this.comboxDOC = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '单 证',
|
|
|
|
|
store: this.storeOpCode,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'DOC',
|
|
|
|
|
valueField: 'UserName',
|
|
|
|
|
displayField: 'CodeAndName',
|
|
|
|
|
value: SHOWNAME
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//客户加载_委托单位
|
|
|
|
|
this.storeCustCode = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.CustomRefModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetCustomRefList' }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//委托单位
|
|
|
|
|
this.comboxCustCode = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '委托单位',
|
|
|
|
|
store: this.storeCustCode,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'CUSTOMERNAME',
|
|
|
|
|
valueField: 'CustName',
|
|
|
|
|
displayField: 'CodeAndName',
|
|
|
|
|
allowBlank: false,
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
var data = combo.value;
|
|
|
|
|
this.formHead.getForm().findField('SALE').setValue(records[0].data.SALE);
|
|
|
|
|
var s = " ISOPERATOR=1 and LINKID in (select gid from [info_client] where SHORTNAME='" + combo.value + "')";
|
|
|
|
|
this.storeInfoClientContact.load({ params: { condition: s },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
if (this.storeInfoClientContact.getCount() > 0) {
|
|
|
|
|
var member = this.storeInfoClientContact.getAt(0);
|
|
|
|
|
this.comboxInfoClientContact.setValue(member.data.SHOWNAME);
|
|
|
|
|
// this.formHead.getForm().findField('OPERATOREMAIL').setValue(member.data.EMAIL);
|
|
|
|
|
this.formHead.getForm().findField('OPERATORTEL').setValue(member.data.TEL);
|
|
|
|
|
// this.formHead.getForm().findField('OPERATORFAX').setValue(member.data.FAX);
|
|
|
|
|
} else {
|
|
|
|
|
this.comboxInfoClientContact.setValue('');
|
|
|
|
|
// this.formHead.getForm().findField('OPERATOREMAIL').setValue('');
|
|
|
|
|
this.formHead.getForm().findField('OPERATORTEL').setValue('');
|
|
|
|
|
// this.formHead.getForm().findField('OPERATORFAX').setValue('');
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var sF = " ISFINANCIALSTAFF=1 and LINKID in (select gid from [info_client] where SHORTNAME='" + combo.value + "')";
|
|
|
|
|
this.storeInfoClientContactFF.load({ params: { condition: sF },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
if (this.storeInfoClientContactFF.getCount() > 0) {
|
|
|
|
|
var member = this.storeInfoClientContactFF.getAt(0);
|
|
|
|
|
this.comboxClientFCContact.setValue(member.data.SHOWNAME);
|
|
|
|
|
// this.formHead.getForm().findField('FINANCIALSTAFFEMAIL').setValue(member.data.EMAIL);
|
|
|
|
|
this.formHead.getForm().findField('FINANCIALSTAFFTEL').setValue(member.data.TEL);
|
|
|
|
|
// this.formHead.getForm().findField('FINANCIALSTAFFFAX').setValue(member.data.FAX);
|
|
|
|
|
} else {
|
|
|
|
|
this.comboxClientFCContact.setValue('');
|
|
|
|
|
// this.formHead.getForm().findField('FINANCIALSTAFFEMAIL').setValue('');
|
|
|
|
|
this.formHead.getForm().findField('FINANCIALSTAFFTEL').setValue('');
|
|
|
|
|
// this.formHead.getForm().findField('FINANCIALSTAFFFAX').setValue('');
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.storeShipper.load({ params: { condition: "shippertype=2 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + combo.value + "') )"} });
|
|
|
|
|
this.storeConsignee.load({ params: { condition: "shippertype=1 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + combo.value + "') )"} });
|
|
|
|
|
this.storenotifyparty.load({ params: { condition: "shippertype=3 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + combo.value + "') )"} });
|
|
|
|
|
this.storeagent.load({ params: { condition: "shippertype=4 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + combo.value + "') )"} });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
//委托单位_联系人
|
|
|
|
|
this.storeInfoClientContact = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.InfoClientContactModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetInfoClientContactList' }
|
|
|
|
|
});
|
|
|
|
|
this.storeInfoClientContactFF = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.InfoClientContactModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetInfoClientContactList' }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//this.storeInfoClientContact.load();
|
|
|
|
|
this.comboxInfoClientContact = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '客户操作',
|
|
|
|
|
store: this.storeInfoClientContact,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'OPERATORCODE',
|
|
|
|
|
valueField: 'SHOWNAME',
|
|
|
|
|
displayField: 'SHOWNAME',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
|
|
|
|
|
var Cargoinforecords = DsStoreQueryBy(this.storeInfoClientContact, 'GID', records[0].data.GID);
|
|
|
|
|
if (Cargoinforecords.getCount() > 0) {
|
|
|
|
|
var Cargoinfodata = Cargoinforecords.getAt(0).data;
|
|
|
|
|
// this.formHead.getForm().findField('OPERATOREMAIL').setValue(Cargoinfodata.EMAIL);
|
|
|
|
|
this.formHead.getForm().findField('OPERATORTEL').setValue(Cargoinfodata.TEL);
|
|
|
|
|
// this.formHead.getForm().findField('OPERATORFAX').setValue(Cargoinfodata.FAX);
|
|
|
|
|
} else {
|
|
|
|
|
// this.formHead.getForm().findField('OPERATOREMAIL').setValue('');
|
|
|
|
|
this.formHead.getForm().findField('OPERATORTEL').setValue('');
|
|
|
|
|
// this.formHead.getForm().findField('OPERATORFAX').setValue('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.comboxClientFCContact = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '客户财务',
|
|
|
|
|
store: this.storeInfoClientContactFF,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'FINANCIALSTAFFCODE',
|
|
|
|
|
valueField: 'SHOWNAME',
|
|
|
|
|
displayField: 'SHOWNAME',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
|
|
|
|
|
var Cargoinforecords = DsStoreQueryBy(this.storeInfoClientContactFF, 'GID', records[0].data.GID);
|
|
|
|
|
if (Cargoinforecords.getCount() > 0) {
|
|
|
|
|
var Cargoinfodata = Cargoinforecords.getAt(0).data;
|
|
|
|
|
// this.formHead.getForm().findField('FINANCIALSTAFFEMAIL').setValue(Cargoinfodata.EMAIL);
|
|
|
|
|
this.formHead.getForm().findField('FINANCIALSTAFFTEL').setValue(Cargoinfodata.TEL);
|
|
|
|
|
// this.formHead.getForm().findField('FINANCIALSTAFFFAX').setValue(Cargoinfodata.FAX);
|
|
|
|
|
} else {
|
|
|
|
|
// this.formHead.getForm().findField('FINANCIALSTAFFEMAIL').setValue('');
|
|
|
|
|
this.formHead.getForm().findField('FINANCIALSTAFFTEL').setValue('');
|
|
|
|
|
// this.formHead.getForm().findField('FINANCIALSTAFFFAX').setValue('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//客户加载_船公司
|
|
|
|
|
this.storeAIRLINES = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.CustomRefModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetCustomRefList' }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//船公司
|
|
|
|
|
this.comboxAIRLINES = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '航空公司',
|
|
|
|
|
store: this.storeAIRLINES,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'AIRLINES',
|
|
|
|
|
valueField: 'CustName',
|
|
|
|
|
displayField: 'CodeAndName'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//客户加载_订舱代理
|
|
|
|
|
this.storeFORWARDER = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.CustomRefModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetCustomRefList' }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//船公司
|
|
|
|
|
this.comboxFORWARDER = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '卸货代理',
|
|
|
|
|
store: this.storeFORWARDER,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'FORWARDER',
|
|
|
|
|
valueField: 'CustName',
|
|
|
|
|
displayField: 'CodeAndName'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//客户加载_车队
|
|
|
|
|
this.storeTRUCKER = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.CustomRefModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetCustomRefList' }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//车队
|
|
|
|
|
this.comboxTRUCKER = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '车队',
|
|
|
|
|
store: this.storeTRUCKER,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'TRUCKER',
|
|
|
|
|
valueField: 'CustName',
|
|
|
|
|
displayField: 'CodeAndName'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//客户加载_报关报检
|
|
|
|
|
this.storeCUSTOMSER = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.CustomRefModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetCustomRefList' }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//报关行
|
|
|
|
|
this.comboxCUSTOMSER = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '报关行',
|
|
|
|
|
store: this.storeCUSTOMSER,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'CUSTOMSER',
|
|
|
|
|
valueField: 'CustName',
|
|
|
|
|
displayField: 'CodeAndName'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//键值维护表_装运方式
|
|
|
|
|
|
|
|
|
|
this.StoreBLTYPE = Ext.create('Ext.data.Store', {
|
|
|
|
|
fields: ['BLTYPE']
|
|
|
|
|
});
|
|
|
|
|
this.StoreBLTYPE.add({ "BLTYPE": "空运单票" });
|
|
|
|
|
this.StoreBLTYPE.add({ "BLTYPE": "空运主票" });
|
|
|
|
|
this.StoreBLTYPE.add({ "BLTYPE": "空运分票" });
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.comboxBLTYPE = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '装运方式',
|
|
|
|
|
store: this.StoreBLTYPE,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'BLTYPE',
|
|
|
|
|
valueField: 'BLTYPE',
|
|
|
|
|
displayField: 'BLTYPE',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
if (combo.value == "空运主票") {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//品名
|
|
|
|
|
this.storeCodeGoodsList = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.CodeGoodsModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetCodeGoodsList' }
|
|
|
|
|
});
|
|
|
|
|
this.storeCodeGoodsList.load();
|
|
|
|
|
this.comboxGOODSNAME = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
store: this.storeCodeGoodsList,
|
|
|
|
|
fieldLabel: '品名', // forceSelection: true,
|
|
|
|
|
name: 'GOODSNAME',
|
|
|
|
|
valueField: 'GOODNAME',
|
|
|
|
|
displayField: 'CodeAndName'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//业务来源
|
|
|
|
|
this.storeSource = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.SourceModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetSource' }
|
|
|
|
|
});
|
|
|
|
|
this.storeSource.load();
|
|
|
|
|
this.storeSourceDetail = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.SourceDetailModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetSourceDetail2' }
|
|
|
|
|
});
|
|
|
|
|
this.comboxBSSOURCE = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '业务来源',
|
|
|
|
|
store: this.storeSource,
|
|
|
|
|
// forceSelection: true,
|
|
|
|
|
name: 'BSSOURCE',
|
|
|
|
|
valueField: 'SourceName',
|
|
|
|
|
displayField: 'SourceName',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
var recs = DsStoreQueryBy(this.storeSource, 'SourceID', records[0].data.SourceID);
|
|
|
|
|
if (recs.getCount() > 0) {
|
|
|
|
|
var data = recs.getAt(0).data;
|
|
|
|
|
var s = "SOURCEID='" + data.SourceID + "'";
|
|
|
|
|
this.storeSourceDetail.load({ params: { condition: s} });
|
|
|
|
|
} else {
|
|
|
|
|
var BSSOURCEDETAIL = this.formHead.getForm().findField('BSSOURCEDETAIL');
|
|
|
|
|
BSSOURCEDETAIL.setValue('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.storeSourceDetail.load();
|
|
|
|
|
this.comboxBSSOURCEDETAIL = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '来源明细',
|
|
|
|
|
store: this.storeSourceDetail,
|
|
|
|
|
// forceSelection: true,
|
|
|
|
|
name: 'BSSOURCEDETAIL',
|
|
|
|
|
valueField: 'SourceDetail',
|
|
|
|
|
displayField: 'SourceDetail'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//所属部门
|
|
|
|
|
this.storeDept = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.DeptModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetDeptList' }
|
|
|
|
|
});
|
|
|
|
|
this.storeDept.load();
|
|
|
|
|
this.comboxDept = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '所属部门',
|
|
|
|
|
store: this.storeDept,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'SALEDEPT',
|
|
|
|
|
valueField: 'DeptName',
|
|
|
|
|
displayField: 'DeptName'
|
|
|
|
|
//,hidden: true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//件数包装
|
|
|
|
|
this.storeCodePackage = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'DsShipping.ux.CodePackageModel',
|
|
|
|
|
proxy: { url: '/CommMng/BasicDataRef/GetCodePackageList' }
|
|
|
|
|
});
|
|
|
|
|
this.storeCodePackage.load();
|
|
|
|
|
this.comboxKINDPKGS = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '包 装',
|
|
|
|
|
labelWidth: 35,
|
|
|
|
|
store: this.storeCodePackage,
|
|
|
|
|
padding: '0 0 0 10',
|
|
|
|
|
// forceSelection: true,
|
|
|
|
|
name: 'KINDPKGS',
|
|
|
|
|
valueField: 'PKGS',
|
|
|
|
|
displayField: 'PKGS'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//客户加载_发货人
|
|
|
|
|
this.storeShipper = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'OpSeaeShipper',
|
|
|
|
|
proxy: { url: '/MvcShipping/MsOpSeae/GetShipperList' }
|
|
|
|
|
});
|
|
|
|
|
// this.storeShipper.load({ params: { condition: "ISCONTROLLER='1'"} });
|
|
|
|
|
|
|
|
|
|
//发货人
|
|
|
|
|
this.comboxShipper = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: 'Shipper (发货人)',
|
|
|
|
|
store: this.storeShipper,
|
|
|
|
|
// forceSelection: true,
|
|
|
|
|
labelWidth: 150,
|
|
|
|
|
labelAlign: 'left',
|
|
|
|
|
name: 'SHIPPERID',
|
|
|
|
|
valueField: 'SHORTNAME',
|
|
|
|
|
displayField: 'CodeAndName',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
var selectrecords = DsStoreQueryBy(this.storeShipper, 'SHORTNAME', combo.value);
|
|
|
|
|
if (selectrecords.getCount() > 0) {
|
|
|
|
|
var selectdata = selectrecords.getAt(0).data;
|
|
|
|
|
this.formEdit.getForm().findField('SHIPPER').setValue(selectdata.SHIPPERDETAIL);
|
|
|
|
|
} else {
|
|
|
|
|
this.formEdit.getForm().findField('SHIPPER').setValue('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//客户加载_收货人
|
|
|
|
|
this.storeConsignee = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'OpSeaeShipper',
|
|
|
|
|
proxy: { url: '/MvcShipping/MsOpSeae/GetShipperList' }
|
|
|
|
|
});
|
|
|
|
|
// this.storeShipper.load({ params: { condition: "ISCONTROLLER='1'"} });
|
|
|
|
|
|
|
|
|
|
//收货人
|
|
|
|
|
this.comboxConsignee = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: 'Consignee (收货人)',
|
|
|
|
|
labelWidth: 150,
|
|
|
|
|
labelAlign: 'left',
|
|
|
|
|
store: this.storeConsignee,
|
|
|
|
|
// forceSelection: true,
|
|
|
|
|
name: 'CONSIGNEEID',
|
|
|
|
|
valueField: 'SHORTNAME',
|
|
|
|
|
displayField: 'CodeAndName',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
var selectrecords = DsStoreQueryBy(this.storeConsignee, 'SHORTNAME', combo.value);
|
|
|
|
|
if (selectrecords.getCount() > 0) {
|
|
|
|
|
var selectdata = selectrecords.getAt(0).data;
|
|
|
|
|
this.formEdit.getForm().findField('CONSIGNEE').setValue(selectdata.SHIPPERDETAIL);
|
|
|
|
|
} else {
|
|
|
|
|
this.formEdit.getForm().findField('CONSIGNEE').setValue('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//客户加载_通知人
|
|
|
|
|
this.storenotifyparty = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'OpSeaeShipper',
|
|
|
|
|
proxy: { url: '/MvcShipping/MsOpSeae/GetShipperList' }
|
|
|
|
|
});
|
|
|
|
|
// this.storeShipper.load({ params: { condition: "ISCONTROLLER='1'"} });
|
|
|
|
|
|
|
|
|
|
//通知人
|
|
|
|
|
this.comboxNotifyParty = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: 'Notify Party (通知人)',
|
|
|
|
|
store: this.storenotifyparty,
|
|
|
|
|
labelWidth: 150,
|
|
|
|
|
labelAlign: 'left',
|
|
|
|
|
// forceSelection: true,
|
|
|
|
|
name: 'NOTIFYPARTYID',
|
|
|
|
|
valueField: 'SHORTNAME',
|
|
|
|
|
displayField: 'CodeAndName',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
var selectrecords = DsStoreQueryBy(this.storenotifyparty, 'SHORTNAME', combo.value);
|
|
|
|
|
if (selectrecords.getCount() > 0) {
|
|
|
|
|
var selectdata = selectrecords.getAt(0).data;
|
|
|
|
|
this.formEdit.getForm().findField('NOTIFYPARTY').setValue(selectdata.SHIPPERDETAIL);
|
|
|
|
|
} else {
|
|
|
|
|
this.formEdit.getForm().findField('NOTIFYPARTY').setValue('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//客户加载_代理
|
|
|
|
|
this.storeagent = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'OpSeaeShipper',
|
|
|
|
|
proxy: { url: '/MvcShipping/MsOpSeae/GetShipperList' }
|
|
|
|
|
});
|
|
|
|
|
// this.storeShipper.load({ params: { condition: "ISCONTROLLER='1'"} });
|
|
|
|
|
|
|
|
|
|
//收货人
|
|
|
|
|
this.comboxAgent = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '代 理',
|
|
|
|
|
store: this.storeagent,
|
|
|
|
|
labelWidth: 150,
|
|
|
|
|
labelAlign: 'left', // forceSelection: true,
|
|
|
|
|
name: 'AGENTID',
|
|
|
|
|
valueField: 'SHORTNAME',
|
|
|
|
|
displayField: 'CodeAndName',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
var selectrecords = DsStoreQueryBy(this.storeagent, 'SHORTNAME', combo.value);
|
|
|
|
|
if (selectrecords.getCount() > 0) {
|
|
|
|
|
var selectdata = selectrecords.getAt(0).data;
|
|
|
|
|
this.formEdit.getForm().findField('AGENT').setValue(selectdata.SHIPPERDETAIL);
|
|
|
|
|
} else {
|
|
|
|
|
this.formEdit.getForm().findField('AGENT').setValue('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.StoreStlName = Ext.create('Ext.data.Store', {
|
|
|
|
|
fields: ['STLNAME']
|
|
|
|
|
});
|
|
|
|
|
this.StoreStlName.add({ "STLNAME": "票结" });
|
|
|
|
|
this.StoreStlName.add({ "STLNAME": "半月结" });
|
|
|
|
|
this.StoreStlName.add({ "STLNAME": "月结" });
|
|
|
|
|
this.StoreStlName.add({ "STLNAME": "周结" });
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.comboxStlName = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
store: this.StoreStlName,
|
|
|
|
|
fieldLabel: '结算方式',
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'STLNAME',
|
|
|
|
|
valueField: 'STLNAME',
|
|
|
|
|
displayField: 'STLNAME'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
//#region 编辑formHead 基本信息
|
|
|
|
|
this.formHead = Ext.widget('form', {
|
|
|
|
|
region: 'north',
|
|
|
|
|
frame: true,
|
|
|
|
|
bodyPadding: 5,
|
|
|
|
|
collapsed: false,
|
|
|
|
|
collapsible: true,
|
|
|
|
|
trackResetOnLoad: true,
|
|
|
|
|
fieldDefaults: {
|
|
|
|
|
margins: '2 2 2 2',
|
|
|
|
|
labelAlign: 'right',
|
|
|
|
|
flex: 1,
|
|
|
|
|
labelWidth: 70,
|
|
|
|
|
msgTarget: 'qtip'
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
items: [{
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [{
|
|
|
|
|
fieldLabel: '业务编号',
|
|
|
|
|
name: 'BSNO', hidden: true
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: 'INPUTBY',
|
|
|
|
|
name: 'INPUTBY', hidden: true
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: 'MASTERNO',
|
|
|
|
|
name: 'MASTERNO', hidden: true
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '业务锁定',
|
|
|
|
|
disabled: true,
|
|
|
|
|
readOnly: true,
|
|
|
|
|
name: 'BSSTATUSREF'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '费用锁定',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
disabled: true,
|
|
|
|
|
name: 'FEESTATUSREF'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '会计期间',
|
|
|
|
|
xtype: 'monthfield',
|
|
|
|
|
name: 'ACCDATE'
|
|
|
|
|
}, this.comboxBLTYPE]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [this.comboxCustCode, this.comboxBSSOURCE, this.comboxBSSOURCEDETAIL, this.comboxDept]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [this.comboxOP, this.comboxSALE, this.comboxDOC, this.comboxCUSTSERVICE]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [{
|
|
|
|
|
fieldLabel: '委托编号',
|
|
|
|
|
allowBlank: true,
|
|
|
|
|
name: 'CUSTNO'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '订舱编号',
|
|
|
|
|
name: 'ORDERNO'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '主单号',
|
|
|
|
|
name: 'MBLNO'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '分单号',
|
|
|
|
|
name: 'HBLNO'
|
|
|
|
|
}]
|
|
|
|
|
}, this.myCheckboxService, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [this.comboxStlName, {
|
|
|
|
|
fieldLabel: '结算日期',
|
|
|
|
|
format: 'Y-m-d',
|
|
|
|
|
flex: 1,
|
|
|
|
|
xtype: 'datefield',
|
|
|
|
|
name: 'STLDATE'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '运费协议号',
|
|
|
|
|
name: 'CONTRACTNO'
|
|
|
|
|
}, { xtype: 'hiddenfield'}]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [this.comboxInfoClientContact, {
|
|
|
|
|
fieldLabel: 'TEL',
|
|
|
|
|
name: 'OPERATORTEL'
|
|
|
|
|
}, this.comboxClientFCContact, {
|
|
|
|
|
fieldLabel: 'TEL',
|
|
|
|
|
name: 'FINANCIALSTAFFTEL'
|
|
|
|
|
}]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
]//end items(fieldset 1)
|
|
|
|
|
|
|
|
|
|
}); //end this.formEdit
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#region 数据集
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//国际港口(进口装货港、出口卸货港)
|
|
|
|
|
this.storeCodeDisport = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'MsCodeAirPort',
|
|
|
|
|
proxy: { url: '/MvcShipping/MsCodeAirPort/GetDataList' }
|
|
|
|
|
});
|
|
|
|
|
// this.storeCodeDisport.load();
|
|
|
|
|
|
|
|
|
|
this.storeCodeDisport2 = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'MsCodeAirPort',
|
|
|
|
|
proxy: { url: '/MvcShipping/MsCodeAirPort/GetDataList' }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.comboxPORTLOADID = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '起运港',
|
|
|
|
|
store: this.storeCodeDisport,
|
|
|
|
|
name: 'PORTLOADID',
|
|
|
|
|
valueField: 'PORTID',
|
|
|
|
|
displayField: 'CODEANDNAME',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
var selectrecords = DsStoreQueryBy(this.storeCodeDisport, 'PORTID', combo.value);
|
|
|
|
|
if (selectrecords.getCount() > 0) {
|
|
|
|
|
var selectdata = selectrecords.getAt(0).data;
|
|
|
|
|
this.formEdit.getForm().findField('PORTLOAD').setValue(selectdata.PORTENAME);
|
|
|
|
|
} else {
|
|
|
|
|
this.formEdit.getForm().findField('PORTLOAD').setValue('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.comboxPORTDISCHARGEID = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '目的港',
|
|
|
|
|
store: this.storeCodeDisport2,
|
|
|
|
|
name: 'PORTDISCHARGEID',
|
|
|
|
|
valueField: 'PORTID',
|
|
|
|
|
displayField: 'CODEANDNAME',
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'select': function (combo, records, eOpts) {
|
|
|
|
|
if (records.length > 0) {
|
|
|
|
|
var selectrecords = DsStoreQueryBy(this.storeCodeDisport, 'PORTID', combo.value);
|
|
|
|
|
if (selectrecords.getCount() > 0) {
|
|
|
|
|
var selectdata = selectrecords.getAt(0).data;
|
|
|
|
|
this.formEdit.getForm().findField('PORTDISCHARGE').setValue(selectdata.PORTENAME);
|
|
|
|
|
} else {
|
|
|
|
|
this.formEdit.getForm().findField('PORTDISCHARGE').setValue('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//付费方式
|
|
|
|
|
this.storeFrt = Ext.create('Ext.data.Store', {
|
|
|
|
|
fields: ['FRT']
|
|
|
|
|
});
|
|
|
|
|
this.storeFrt.add({ "FRT": "PP" });
|
|
|
|
|
this.storeFrt.add({ "FRT": "CC" });
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.comboxBLFRT = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '运费',
|
|
|
|
|
store: this.storeFrt,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'BLFRT',
|
|
|
|
|
valueField: 'FRT',
|
|
|
|
|
displayField: 'FRT'
|
|
|
|
|
});
|
|
|
|
|
this.comboxOTBLFRT = Ext.create('DsExt.ux.RefTableCombox', {
|
|
|
|
|
fieldLabel: '杂费',
|
|
|
|
|
store: this.storeFrt,
|
|
|
|
|
forceSelection: true,
|
|
|
|
|
name: 'OTFRT',
|
|
|
|
|
valueField: 'FRT',
|
|
|
|
|
displayField: 'FRT'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
me = this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
//#region 编辑formEdit 基本信息
|
|
|
|
|
|
|
|
|
|
this.panelAIRLINES = new Ext.Panel({
|
|
|
|
|
layout: 'anchor',
|
|
|
|
|
bodyPadding: 5,
|
|
|
|
|
frame: true,
|
|
|
|
|
fieldDefaults: {
|
|
|
|
|
margins: '2 2 2 2',
|
|
|
|
|
labelAlign: 'right',
|
|
|
|
|
flex: 1,
|
|
|
|
|
labelWidth: 70,
|
|
|
|
|
msgTarget: 'qtip'
|
|
|
|
|
},
|
|
|
|
|
items: [{
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'anchor',
|
|
|
|
|
flex: 3,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [{
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
flex: 1,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [{
|
|
|
|
|
fieldLabel: '航班',
|
|
|
|
|
flex: 1,
|
|
|
|
|
name: 'VESSEL'
|
|
|
|
|
}, this.comboxAIRLINES, this.comboxFORWARDER]
|
|
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
flex: 1,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [this.comboxPORTDISCHARGEID, {
|
|
|
|
|
name: 'PORTDISCHARGE'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '进口日期',
|
|
|
|
|
format: 'Y-m-d',
|
|
|
|
|
flex: 1,
|
|
|
|
|
xtype: 'datefield',
|
|
|
|
|
name: 'ETA'
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
flex: 1,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [this.comboxPORTLOADID, {
|
|
|
|
|
name: 'PORTLOAD'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '离港日期',
|
|
|
|
|
format: 'Y-m-d',
|
|
|
|
|
flex: 1,
|
|
|
|
|
xtype: 'datefield',
|
|
|
|
|
name: 'ETD'
|
|
|
|
|
}]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
flex: 1,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [this.comboxCUSTOMSER, this.comboxTRUCKER, { xtype: 'hiddenfield'}]
|
|
|
|
|
}]
|
|
|
|
|
}]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.panelKGS = new Ext.Panel({
|
|
|
|
|
layout: 'anchor',
|
|
|
|
|
bodyPadding: 5,
|
|
|
|
|
frame: true,
|
|
|
|
|
fieldDefaults: {
|
|
|
|
|
margins: '2 2 2 2',
|
|
|
|
|
labelAlign: 'right',
|
|
|
|
|
flex: 1,
|
|
|
|
|
labelWidth: 70,
|
|
|
|
|
msgTarget: 'qtip'
|
|
|
|
|
},
|
|
|
|
|
items: [{
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'anchor',
|
|
|
|
|
flex: 3,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
flex: 1,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [{
|
|
|
|
|
fieldLabel: '件数',
|
|
|
|
|
flex: 1,
|
|
|
|
|
name: 'PKGS'
|
|
|
|
|
}, this.comboxKINDPKGS, {
|
|
|
|
|
fieldLabel: '重量',
|
|
|
|
|
flex: 1,
|
|
|
|
|
name: 'KGS'
|
|
|
|
|
}, {
|
|
|
|
|
fieldLabel: '体积',
|
|
|
|
|
flex: 1,
|
|
|
|
|
name: 'CBM'
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
flex: 1,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [{
|
|
|
|
|
fieldLabel: '计费重量',
|
|
|
|
|
flex: 1,
|
|
|
|
|
name: 'FEEKGS'
|
|
|
|
|
}, this.comboxBLFRT, this.comboxOTBLFRT]
|
|
|
|
|
|
|
|
|
|
}]
|
|
|
|
|
}]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.formEdit = Ext.widget('form', {
|
|
|
|
|
region: 'north',
|
|
|
|
|
frame: true,
|
|
|
|
|
bodyPadding: 5,
|
|
|
|
|
layout: 'anchor',
|
|
|
|
|
trackResetOnLoad: true,
|
|
|
|
|
fieldDefaults: {
|
|
|
|
|
margins: '2 2 2 2',
|
|
|
|
|
labelAlign: 'right',
|
|
|
|
|
flex: 1,
|
|
|
|
|
labelWidth: 70,
|
|
|
|
|
msgTarget: 'qtip'
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
items: [{
|
|
|
|
|
xtype: 'fieldset',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaults: {
|
|
|
|
|
anchor: '96%'
|
|
|
|
|
},
|
|
|
|
|
items: [{
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'anchor',
|
|
|
|
|
flex: 2,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [this.comboxShipper, {
|
|
|
|
|
xtype: 'textareafield',
|
|
|
|
|
grow: true,
|
|
|
|
|
labelWidth: 0,
|
|
|
|
|
height: 70,
|
|
|
|
|
name: 'SHIPPER',
|
|
|
|
|
anchor: '100%'
|
|
|
|
|
}, this.comboxConsignee, {
|
|
|
|
|
xtype: 'textareafield',
|
|
|
|
|
grow: true,
|
|
|
|
|
labelWidth: 0,
|
|
|
|
|
height: 70,
|
|
|
|
|
name: 'CONSIGNEE',
|
|
|
|
|
anchor: '100%'
|
|
|
|
|
}, this.comboxNotifyParty, {
|
|
|
|
|
xtype: 'textareafield',
|
|
|
|
|
grow: true,
|
|
|
|
|
labelWidth: 0,
|
|
|
|
|
height: 70,
|
|
|
|
|
name: 'NOTIFYPARTY',
|
|
|
|
|
anchor: '100%'
|
|
|
|
|
}, this.comboxAgent, {
|
|
|
|
|
xtype: 'textareafield',
|
|
|
|
|
grow: true,
|
|
|
|
|
labelWidth: 0,
|
|
|
|
|
height: 70,
|
|
|
|
|
name: 'AGENT',
|
|
|
|
|
anchor: '100%'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'anchor',
|
|
|
|
|
flex: 3,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [this.panelAIRLINES, this.panelKGS, {
|
|
|
|
|
xtype: 'textareafield',
|
|
|
|
|
grow: true,
|
|
|
|
|
fieldLabel: '唛头',
|
|
|
|
|
height: 100,
|
|
|
|
|
name: 'MARKS',
|
|
|
|
|
anchor: '100%'
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
defaults: {
|
|
|
|
|
anchor: '100%'
|
|
|
|
|
},
|
|
|
|
|
items: [this.comboxGOODSNAME, {
|
|
|
|
|
fieldLabel: 'HS编码',
|
|
|
|
|
name: 'HSCODE'
|
|
|
|
|
}]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'textareafield',
|
|
|
|
|
grow: true,
|
|
|
|
|
fieldLabel: '  ',
|
|
|
|
|
labelSeparator: '',
|
|
|
|
|
fieldLabel: '货物描述',
|
|
|
|
|
height: 100,
|
|
|
|
|
name: 'DESCRIPTION',
|
|
|
|
|
anchor: '100%'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
layout: 'anchor',
|
|
|
|
|
flex: 1,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
defaults: {
|
|
|
|
|
anchor: '99%'
|
|
|
|
|
},
|
|
|
|
|
items: [{
|
|
|
|
|
xtype: 'textareafield',
|
|
|
|
|
grow: true,
|
|
|
|
|
fieldLabel: '备 注',
|
|
|
|
|
height: 60,
|
|
|
|
|
name: 'REMARK',
|
|
|
|
|
anchor: '100%'
|
|
|
|
|
}]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}); //end this.formEdit
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
//#region 按钮Toolbar
|
|
|
|
|
this.panelBtn = new Ext.Panel({
|
|
|
|
|
region: "north",
|
|
|
|
|
tbar: [ {
|
|
|
|
|
text: "关闭",
|
|
|
|
|
handler: function (button, event) {
|
|
|
|
|
window.close();
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
}, '-', {
|
|
|
|
|
text: "打印",
|
|
|
|
|
iconCls: "btnprint",
|
|
|
|
|
handler: function (button, event) {
|
|
|
|
|
this.Print();
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
}]
|
|
|
|
|
}); //end 按钮Toolbar
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
//#region 框架结构
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.panelpage = new Ext.Panel({
|
|
|
|
|
title: '委托详细信息',
|
|
|
|
|
layout: "border",
|
|
|
|
|
region: 'center',
|
|
|
|
|
animate: true,
|
|
|
|
|
autoScroll: true,
|
|
|
|
|
// containerScroll: true,
|
|
|
|
|
frame: false,
|
|
|
|
|
items: [this.formEdit]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.tabSeaeWTpanel = new Ext.TabPanel({
|
|
|
|
|
activeTab: 0,
|
|
|
|
|
autoWidth: true,
|
|
|
|
|
border: true,
|
|
|
|
|
frame: false,
|
|
|
|
|
region: 'center',
|
|
|
|
|
enableTabScroll: true,
|
|
|
|
|
items:
|
|
|
|
|
[
|
|
|
|
|
this.panelpage
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.panelSeae = new Ext.Panel({
|
|
|
|
|
title: '委托信息',
|
|
|
|
|
id: 'pnlmodNewOpAiriInfo',
|
|
|
|
|
layout: "border",
|
|
|
|
|
region: 'center',
|
|
|
|
|
animate: true,
|
|
|
|
|
autoScroll: true,
|
|
|
|
|
frame: false,
|
|
|
|
|
//closable:true,
|
|
|
|
|
items: [this.panelBtn, this.formHead, this.tabSeaeWTpanel]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.treestore = new Ext.data.TreeStore({
|
|
|
|
|
model: 'DsShipping.ux.ModuleModel',
|
|
|
|
|
nodeParam: 'PARENTID',
|
|
|
|
|
proxy: {
|
|
|
|
|
type: 'ajax',
|
|
|
|
|
url: '/MvcShipping/MsBaseInfo/GetModuTreeRefList',
|
|
|
|
|
reader: {
|
|
|
|
|
id: 'GID',
|
|
|
|
|
root: 'data',
|
|
|
|
|
totalProperty: 'totalCount'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
autoLoad: true,
|
|
|
|
|
root: {
|
|
|
|
|
name: '根节点',
|
|
|
|
|
expanded: true,
|
|
|
|
|
id: '16E13948-D20D-452B-852F-6EC58173996Caaaaaa'
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.tabtree = new Ext.tree.Panel({
|
|
|
|
|
region: 'west',
|
|
|
|
|
title: '业务信息',
|
|
|
|
|
split: true,
|
|
|
|
|
width: 180,
|
|
|
|
|
collapsible: true,
|
|
|
|
|
margins: '0 0 0 0',
|
|
|
|
|
store: this.treestore,
|
|
|
|
|
rootVisible: false,
|
|
|
|
|
hideHeaders: true,
|
|
|
|
|
animate: false,
|
|
|
|
|
lines: false,
|
|
|
|
|
columns: [{
|
|
|
|
|
xtype: 'treecolumn',
|
|
|
|
|
text: '模块名称',
|
|
|
|
|
width: 178,
|
|
|
|
|
dataIndex: 'DESCRIPTION'
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'itemclick': function (_this, record, item, index, e, eOpts) {
|
|
|
|
|
var finded = false;
|
|
|
|
|
if (record.data.MODULEURL == '@') {
|
|
|
|
|
this.tabSeaepanel.setActiveTab(0);
|
|
|
|
|
} else if (record.data.MODULEURL != '#') {
|
|
|
|
|
var children = this.tabSeaepanel.items;
|
|
|
|
|
if (children) {
|
|
|
|
|
for (var i = 0, len = children.length; i < len; i++) {
|
|
|
|
|
if (children.items[i].id) {
|
|
|
|
|
if (children.items[i].id == 'pnl' + record.data.NAME) {
|
|
|
|
|
this.tabSeaepanel.setActiveTab(i);
|
|
|
|
|
finded = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (finded == false) {
|
|
|
|
|
|
|
|
|
|
if (this.formHead.getForm().findField('CUSTNO').getValue() == "") {
|
|
|
|
|
Ext.Msg.show({ title: '注意', msg: '请先保存业务信息后再打开其他模块!', icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
|
|
|
|
|
} else {
|
|
|
|
|
if (record.data.NAME == 'modAiriAllFee') {
|
|
|
|
|
var paneltabitems = new Shipping.AiriFee({
|
|
|
|
|
id: 'pnl' + record.data.NAME,
|
|
|
|
|
layout: "border",
|
|
|
|
|
region: "center",
|
|
|
|
|
autoScroll: true,
|
|
|
|
|
frame: false,
|
|
|
|
|
closable: true,
|
|
|
|
|
title: record.data.DESCRIPTION
|
|
|
|
|
});
|
|
|
|
|
} else if (record.data.NAME == 'modAiriAmendFee') {
|
|
|
|
|
var paneltabitems = new Shipping.AiriAmendFee({
|
|
|
|
|
id: 'pnl' + record.data.NAME,
|
|
|
|
|
layout: "border",
|
|
|
|
|
region: "center",
|
|
|
|
|
autoScroll: true,
|
|
|
|
|
frame: false,
|
|
|
|
|
closable: true,
|
|
|
|
|
title: record.data.DESCRIPTION
|
|
|
|
|
});
|
|
|
|
|
} else if (record.data.NAME == 'modOpAiriFenList') {
|
|
|
|
|
var paneltabitems = new Shipping.MsOpAiriFenIndex({
|
|
|
|
|
id: 'pnl' + record.data.NAME,
|
|
|
|
|
layout: "border",
|
|
|
|
|
region: "center",
|
|
|
|
|
autoScroll: true,
|
|
|
|
|
frame: false,
|
|
|
|
|
closable: true,
|
|
|
|
|
title: record.data.DESCRIPTION
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
var paneltabitems = new Ext.Panel({
|
|
|
|
|
id: 'pnl' + record.data.NAME,
|
|
|
|
|
layout: "fit",
|
|
|
|
|
region: "center",
|
|
|
|
|
autoScroll: true,
|
|
|
|
|
frame: false,
|
|
|
|
|
closable: true,
|
|
|
|
|
title: record.data.DESCRIPTION,
|
|
|
|
|
html: ' <iframe scrolling="auto" frameborder="0" width="100%" height="100%" src="' + record.data.MODULEURL + '"> </iframe>'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
this.tabSeaepanel.add(paneltabitems);
|
|
|
|
|
this.tabSeaepanel.setActiveTab(paneltabitems);
|
|
|
|
|
this.tabSeaepanel.doLayout();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.tabSeaepanel = new Ext.TabPanel({
|
|
|
|
|
activeTab: 0,
|
|
|
|
|
autoWidth: true,
|
|
|
|
|
border: true,
|
|
|
|
|
frame: false,
|
|
|
|
|
region: 'center',
|
|
|
|
|
id: "TabSeaePanel",
|
|
|
|
|
enableTabScroll: true,
|
|
|
|
|
items:
|
|
|
|
|
[
|
|
|
|
|
this.panelSeae
|
|
|
|
|
],
|
|
|
|
|
listeners: {
|
|
|
|
|
scope: this,
|
|
|
|
|
'beforetabchange': function (tabPanel, newCard, oldCard, eOpts) {
|
|
|
|
|
if (oldCard.id == "pnlmodAireAllFee") {
|
|
|
|
|
var feemodify = oldCard.panelFee.getModifyStatus();
|
|
|
|
|
if (feemodify) {
|
|
|
|
|
Ext.Msg.show({ title: '警告', msg: '费用未保存,请先保存费用!', icon: Ext.Msg.WARNING, buttons: Ext.Msg.OK });
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (oldCard.id == "pnlmodAireAmendFee") {
|
|
|
|
|
var feemodify = oldCard.panelFee.getModifyStatus();
|
|
|
|
|
if (feemodify) {
|
|
|
|
|
Ext.Msg.show({ title: '警告', msg: '费用未保存,请先保存费用!', icon: Ext.Msg.WARNING, buttons: Ext.Msg.OK });
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Ext.apply(this, {
|
|
|
|
|
items: [this.tabtree, this.tabSeaepanel]
|
|
|
|
|
});
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
this.LoadInitData();
|
|
|
|
|
|
|
|
|
|
//#region 其他
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.InitData();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, //end initUIComponents
|
|
|
|
|
|
|
|
|
|
//#region 加载事件
|
|
|
|
|
InitData: function () {
|
|
|
|
|
|
|
|
|
|
var condition = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
condition = "BSNO='" + this.bsno+ "'";
|
|
|
|
|
|
|
|
|
|
this.LoadData(condition);
|
|
|
|
|
|
|
|
|
|
// if (this.initloaddata == 0) {
|
|
|
|
|
// this.LoadInitData();
|
|
|
|
|
// this.initloaddata = 1;
|
|
|
|
|
// };
|
|
|
|
|
|
|
|
|
|
}, //end InitData
|
|
|
|
|
|
|
|
|
|
LoadData: function (condition) {
|
|
|
|
|
this.serialNo = 0;
|
|
|
|
|
//this.bodyDel = [];
|
|
|
|
|
|
|
|
|
|
Ext.Ajax.request({
|
|
|
|
|
waitMsg: '正在查询主表数据...',
|
|
|
|
|
url: '/MvcShipping/MsOpAiri/GetData',
|
|
|
|
|
params: {
|
|
|
|
|
handle:'edit',
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data = result.data;
|
|
|
|
|
this.formHead.getForm().reset();
|
|
|
|
|
this.formHead.getForm().setValues(data);
|
|
|
|
|
this.formEdit.getForm().reset();
|
|
|
|
|
this.formEdit.getForm().setValues(data);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.Editdata = data;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
Ext.MessageBox.alert('请求出现错误,请重试', response.responseText);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var billno = '*';
|
|
|
|
|
var gid = '*';
|
|
|
|
|
|
|
|
|
|
}, // end LoadDate
|
|
|
|
|
//#endregion
|
|
|
|
|
LoadInitData: function () {
|
|
|
|
|
this.storeCustCode.load({ params: { condition: "ISCONTROLLER='1'"} });
|
|
|
|
|
this.storeOpCode.load();
|
|
|
|
|
this.storeAIRLINES.load({ params: { condition: "ISAIRLINES='1'"} });
|
|
|
|
|
this.storeFORWARDER.load({ params: { condition: "ISBOOKING='1'"} });
|
|
|
|
|
this.storeCUSTOMSER.load({ params: { condition: "ISCUSTOM='1'"} });
|
|
|
|
|
this.storeTRUCKER.load({ params: { condition: "ISTRUCK='1'"} });
|
|
|
|
|
|
|
|
|
|
this.storeCodeDisport.load();
|
|
|
|
|
this.storeCodeDisport2.load();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#region
|
|
|
|
|
LoadDefValue: function () {
|
|
|
|
|
this.storeDefValue.load({ params: { condition: "BSTYPE='空运进口'" },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
if (this.storeDefValue.getCount() > 0) {
|
|
|
|
|
for (var j = 0; j < this.storeDefValue.getCount(); j += 1) {
|
|
|
|
|
var member = this.storeDefValue.getAt(j);
|
|
|
|
|
var headfield = this.formHead.getForm().findField(member.data.FIELDNAME);
|
|
|
|
|
if (headfield != NaN && headfield != null)
|
|
|
|
|
headfield.setValue(member.data.DEFVALUE);
|
|
|
|
|
var headfield = this.formEdit.getForm().findField(member.data.FIELDNAME);
|
|
|
|
|
if (headfield != NaN && headfield != null)
|
|
|
|
|
headfield.setValue(member.data.DEFVALUE);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
LoadMustBe: function () {
|
|
|
|
|
this.storeMustBe.load({ params: { condition: "BSTYPE='空运进口'" },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
if (this.storeMustBe.getCount() > 0) {
|
|
|
|
|
for (var j = 0; j < this.storeMustBe.getCount(); j += 1) {
|
|
|
|
|
var member = this.storeMustBe.getAt(j);
|
|
|
|
|
var headfield = this.formHead.getForm().findField(member.data.FIELDNAME);
|
|
|
|
|
if (headfield != NaN && headfield != null)
|
|
|
|
|
headfield.allowBlank = false;
|
|
|
|
|
var headfield = this.formEdit.getForm().findField(member.data.FIELDNAME);
|
|
|
|
|
if (headfield != NaN && headfield != null)
|
|
|
|
|
headfield.allowBlank = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
LoadInit: function (data) {
|
|
|
|
|
var CUSTOMERNAME = this.formHead.getForm().findField('CUSTOMERNAME').getValue();
|
|
|
|
|
|
|
|
|
|
var s = " ISOPERATOR=1 and LINKID in (select gid from [info_client] where SHORTNAME='" + CUSTOMERNAME + "')";
|
|
|
|
|
this.storeInfoClientContact.load({ params: { condition: s} });
|
|
|
|
|
|
|
|
|
|
var sF = " ISFINANCIALSTAFF=1 and LINKID in (select gid from [info_client] where SHORTNAME='" + CUSTOMERNAME + "')";
|
|
|
|
|
this.storeInfoClientContactFF.load({ params: { condition: sF} });
|
|
|
|
|
|
|
|
|
|
this.storeShipper.load({ params: { condition: "shippertype=2 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
this.formEdit.getForm().findField('SHIPPERID').setValue(data.SHIPPERID);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
this.storeConsignee.load({ params: { condition: "shippertype=1 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
this.formEdit.getForm().findField('CONSIGNEEID').setValue(data.CONSIGNEEID);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
this.storenotifyparty.load({ params: { condition: "shippertype=3 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
this.formEdit.getForm().findField('NOTIFYPARTYID').setValue(data.NOTIFYPARTYID);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
this.storeagent.load({ params: { condition: "shippertype=4 AND (ISPUBLIC=1 OR CODENAME IN (SELECT CODENAME FROM info_client WHERE SHORTNAME='" + CUSTOMERNAME + "') )" },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
this.formEdit.getForm().findField('AGENTID').setValue(data.AGENTID);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var BLTYPE = this.formHead.getForm().findField('BLTYPE').getValue();
|
|
|
|
|
|
|
|
|
|
if (BLTYPE == "空运单票" || BLTYPE == "空运分票") {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#region 编辑时按钮等的状态
|
|
|
|
|
GetEditStatus: function () {
|
|
|
|
|
var canedit = false;
|
|
|
|
|
//var bsStatus = this.formHead.getForm().findField('BSSTATUS').getValue();
|
|
|
|
|
var BSSTATUS = this.formHead.getForm().findField('BSSTATUSREF').getValue();
|
|
|
|
|
var inputby = this.formHead.getForm().findField('INPUTBY').getValue();
|
|
|
|
|
var op = this.formHead.getForm().findField('OP').getValue();
|
|
|
|
|
|
|
|
|
|
_this = this;
|
|
|
|
|
if (BSSTATUS == '锁定') {
|
|
|
|
|
canedit = false;
|
|
|
|
|
this.setSaveBtnStatus(canedit);
|
|
|
|
|
} else {
|
|
|
|
|
this.StoreOpRange.load({ params: { optype: "modOpAiriList" },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
if (r.length != 0) {
|
|
|
|
|
var records = DsStoreQueryBy(_this.StoreOpRange, 'OPID', op);
|
|
|
|
|
if (records.getCount() > 0) {
|
|
|
|
|
canedit = true;
|
|
|
|
|
} else {
|
|
|
|
|
var recordins = DsStoreQueryBy(_this.StoreOpRange, 'OPID', inputby);
|
|
|
|
|
if (recordins.getCount() > 0) {
|
|
|
|
|
canedit = true;
|
|
|
|
|
} else {
|
|
|
|
|
canedit = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else { canedit = false; }
|
|
|
|
|
|
|
|
|
|
_this.setSaveBtnStatus(canedit);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_this = this;
|
|
|
|
|
Ext.Ajax.request({
|
|
|
|
|
waitMsg: '正在查询委托编号状态...',
|
|
|
|
|
url: '/MvcShipping/MsBaseInfo/GetRuleEdit',
|
|
|
|
|
params: {
|
|
|
|
|
rulename: '委托编号',
|
|
|
|
|
ruletype: '1'
|
|
|
|
|
},
|
|
|
|
|
callback: function (options, success, response) {
|
|
|
|
|
if (success) {
|
|
|
|
|
var result = Ext.JSON.decode(response.responseText);
|
|
|
|
|
if (result.Success != true) {
|
|
|
|
|
var custno = _this.formHead.getForm().findField('CUSTNO');
|
|
|
|
|
custno.setReadOnly(true);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
Ext.MessageBox.alert('请求出现错误,请重试', response.responseText);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Ext.Ajax.request({
|
|
|
|
|
waitMsg: '正在查询委托编号状态...',
|
|
|
|
|
url: '/MvcShipping/MsBaseInfo/GetRuleEdit',
|
|
|
|
|
params: {
|
|
|
|
|
rulename: '分提单号',
|
|
|
|
|
ruletype: '1'
|
|
|
|
|
},
|
|
|
|
|
callback: function (options, success, response) {
|
|
|
|
|
if (success) {
|
|
|
|
|
var result = Ext.JSON.decode(response.responseText);
|
|
|
|
|
if (result.Success != true) {
|
|
|
|
|
var hblno = _this.formHead.getForm().findField('HBLNO');
|
|
|
|
|
hblno.setReadOnly(true);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
Ext.MessageBox.alert('请求出现错误,请重试', response.responseText);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scope: this
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
GetStringNum: function (str) {
|
|
|
|
|
var num = 0;
|
|
|
|
|
if (str == null || str == '') return num;
|
|
|
|
|
if (str.length == 0) return num;
|
|
|
|
|
var if_find = false;
|
|
|
|
|
var str_num = '';
|
|
|
|
|
for (var i = 0; i < str.length; i += 1) {
|
|
|
|
|
var member = str.substr(i, 1);
|
|
|
|
|
if ((member == '0') || (member == '1') || (member == '2') || (member == '3')
|
|
|
|
|
|| (member == '4') || (member == '5') || (member == '6') || (member == '7')
|
|
|
|
|
|| (member == '8') || (member == '9') || (member == '.') || (member == '-')) {
|
|
|
|
|
if (!if_find) {
|
|
|
|
|
str_num = str_num + member;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if_find = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return str_num;
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
setSaveBtnStatus: function (enable) {
|
|
|
|
|
var btnESave = Ext.getCmp('btnESave');
|
|
|
|
|
var btnESaveAndClose = Ext.getCmp('btnESaveAndClose');
|
|
|
|
|
var btnESaveAndNew = Ext.getCmp('btnESaveAndNew');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (enable) {
|
|
|
|
|
btnESave.enable();
|
|
|
|
|
btnESaveAndClose.enable();
|
|
|
|
|
btnESaveAndNew.enable();
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
btnESave.disable();
|
|
|
|
|
btnESaveAndClose.disable();
|
|
|
|
|
btnESaveAndNew.disable();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
//#region 打印
|
|
|
|
|
Print: function () {
|
|
|
|
|
|
|
|
|
|
var basicForm = this.formHead.getForm();
|
|
|
|
|
var billNo = basicForm.findField('BSNO').value;
|
|
|
|
|
if (billNo == '*' || billNo == '') {
|
|
|
|
|
Ext.Msg.show({ title: '错误', msg: '单据还没有保存,请保存后再打印', icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var printType = 'MSOPAIRI';
|
|
|
|
|
var sql1 = "SET LANGUAGE 'us_english' SELECT * FROM op_airi WHERE BSNO = '" + billNo + "'";
|
|
|
|
|
var sql2 = "";
|
|
|
|
|
var sql3 = "";
|
|
|
|
|
var sql4 = "";
|
|
|
|
|
var sql5 = "";
|
|
|
|
|
var sql6 = "";
|
|
|
|
|
|
|
|
|
|
PrintComm(printType, sql1, sql2, sql3, sql4, sql5, sql6);
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
PrevRecord: function () {
|
|
|
|
|
|
|
|
|
|
var modifystr = this.getIsModify();
|
|
|
|
|
if (modifystr != "") {
|
|
|
|
|
Ext.Msg.show({ title: '警告', msg: modifystr + '未保存,如果离开此页,将丢失未保存的更改 !!!', icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var j = this.StoreList.indexOf(this.editRecord);
|
|
|
|
|
if (j == 0) {
|
|
|
|
|
Ext.Msg.show({ title: '警告', msg: '已是最前一票', icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (j == this.StoreList.count) {
|
|
|
|
|
Ext.Msg.show({ title: '警告', msg: '已是最后一票', icon: Ext.Msg.ERROR, buttons: Ext.Msg.OK });
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var children = this.tabSeaepanel.items;
|
|
|
|
|
if (children) {
|
|
|
|
|
for (var i = children.length - 1, len = 0; i >= len; i--) {
|
|
|
|
|
if (children.items[i].id) {
|
|
|
|
|
if (children.items[i].id == 'pnlmodNewOpAiriInfo') {
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
children.items[i].close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.tabSeaepanel.doLayout();
|
|
|
|
|
|
|
|
|
|
j = j - 1;
|
|
|
|
|
this.editRecord = this.StoreList.getAt(j);
|
|
|
|
|
if (this.opStatus == 'edit') {
|
|
|
|
|
condition = "BSNO='" + this.editRecord.get('BSNO') + "'";
|
|
|
|
|
//this.storeBodyList.load({ params: { condition: condition} });
|
|
|
|
|
}
|
|
|
|
|
this.LoadData(this.opStatus, condition);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|