|
|
|
@ -843,7 +843,7 @@ DFF42726-A0BA-4264-BFDF-2500A35E89C7 isVehiclesDispatcher 是否派车调度人
|
|
|
|
|
//客户加载_发货人
|
|
|
|
|
this.storeShipper = Ext.create('DsExt.ux.RefTableStore', {
|
|
|
|
|
model: 'OpSeaeShipper',
|
|
|
|
|
proxy: { url: '/MvcShipping/MsOpSeae/GetShipperList' }
|
|
|
|
|
proxy: { url: '/MvcShipping/MsOpSeae/GetShipperListRm' }
|
|
|
|
|
});
|
|
|
|
|
// this.storeShipper.load({ params: { condition: "ISCONTROLLER='1'"} });
|
|
|
|
|
|
|
|
|
@ -2051,7 +2051,20 @@ DFF42726-A0BA-4264-BFDF-2500A35E89C7 isVehiclesDispatcher 是否派车调度人
|
|
|
|
|
layout: 'anchor',
|
|
|
|
|
flex: 1,
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
xtype: 'container',
|
|
|
|
|
defaultType: 'textfield',
|
|
|
|
|
layout: 'hbox',
|
|
|
|
|
items: [this.comboxShipper, {
|
|
|
|
|
xtype: 'textfield',
|
|
|
|
|
readOnly: true,
|
|
|
|
|
fieldLabel: '发货人约号',
|
|
|
|
|
name: 'SERVICECONTRACTNO_SHIPPER'
|
|
|
|
|
}]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
, {
|
|
|
|
|
xtype: 'textareafield',
|
|
|
|
|
grow: true,
|
|
|
|
|
labelWidth: 0,
|
|
|
|
@ -3294,6 +3307,28 @@ DFF42726-A0BA-4264-BFDF-2500A35E89C7 isVehiclesDispatcher 是否派车调度人
|
|
|
|
|
|
|
|
|
|
this.panelFee.storeBodySum.load({ params: { bsno: data.BSNO } });
|
|
|
|
|
|
|
|
|
|
_this = this;
|
|
|
|
|
this.storeShipper.load({
|
|
|
|
|
params: { condition: "shortname='" + data.SHIPPERID + "'" },
|
|
|
|
|
callback: function (r, options, success) {
|
|
|
|
|
if (success) {
|
|
|
|
|
if (_this.storeShipper.getCount() > 0) {
|
|
|
|
|
for (var j = 0; j < _this.storeShipper.getCount(); j += 1) {
|
|
|
|
|
|
|
|
|
|
var memberbody = _this.storeShipper.getAt(j).data;
|
|
|
|
|
if (memberbody.SERVICECONTRACTNO != '') {
|
|
|
|
|
|
|
|
|
|
_this.formBill.getForm().findField('SERVICECONTRACTNO_SHIPPER').setValue(memberbody.SERVICECONTRACTNO);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
Ext.MessageBox.alert('请求出现错误,请重试', response.responseText);
|
|
|
|
|
}
|
|
|
|
|