作者 朱兆平

buf-fix

1. C6的AI批量处理中bug修复.
1.1 修复 批量处理时尺寸数组会包含上一个文件的尺寸信息并合并成处理文件的尺寸列表.
1.2 修复批量处理时,文件特货代码数组累加的问题.
... ... @@ -2358,17 +2358,17 @@ Handling Information
shp_postcode:'',
},
ssr:{
ssr_request_content:["NO SOLID WOODEN PACKING MATERIALS"],
ssr_request_content:[""],
},
cer:{
cer_signature:' DHL GLOBAL'
cer_signature:''
},
sph:{
sph_code:[]
}
},
sphCodes: "",
ssr_content:"NO SOLID WOODEN PACKING MATERIALS",
ssr_content:"",
cne_contact:{
contact_id:'TE',
contact_number:'',
... ... @@ -3479,6 +3479,8 @@ Handling Information
//添加调度记录信息,失败
if (res.code === '200'){
this.$message.success(res.msg);
// Object.assign(this.$data, this.$options.data());
//初始化表单
// 返回成功结果
resolve({ success: true, code: '200' });
}else {
... ... @@ -3524,6 +3526,7 @@ Handling Information
for(const [index, item] of fileList.entries()){
try {
this.initialize_Master_Bill_form();
// 更新当前处理文件名
this.uploadProgress.currentFile = `正在处理第 ${index + 1} 个文件: ${item.name}`;
... ... @@ -3547,7 +3550,7 @@ Handling Information
this.uploadProgress.percent = Math.round(
(this.uploadProgress.processed / this.uploadProgress.total) * 100
);
alert('总进度:'+this.uploadProgress.percent+'/当前已处理:'+this.uploadProgress.processed +"/总文件数量:"+ this.uploadProgress.total)
_this.$message('总进度:'+this.uploadProgress.percent+'/当前已处理:'+this.uploadProgress.processed +"/总文件数量:"+ this.uploadProgress.total)
}
// 清空当前处理文件名
... ... @@ -3562,7 +3565,183 @@ Handling Information
const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0');
return `${year}-${month}-${day}`;
},
// 重新初始化所有表单变量
initialize_Master_Bill_form(){
this.dimension_textarea= '';
this.form= {
acc:[],
agt:{
agt_ADR:'',
agt_IATA_number:'',
agt_account_number:'',
agt_name:'',
agt_participant_id:'',
},
bill:{
destination:'',
origin:'CGO',
quantity_density:'',
quantity_picecs:'',
//体积
quantity_volume:'0.0',
quantity_volume_code:'MC',
quantity_weight:'',
quantity_weight_code:'K',
waybillNum:'',
},
cne:{
cne_contacts:[],
cne_account_number:'',
cne_adr:'',
cne_country:'',
cne_loc_place:'',
cne_loc_province:'',
cne_name:'',
cne_postcode:'',
},
cvd:{
cvd_amount_of_insurance:'XXX',
cvd_charge_code:'PP',
cvd_charge_prepaid:'PP',
cvd_currency_code:'',
cvd_value_for_carriage:'NVD',
cvd_value_for_customs:'NCV',
},
flt:{
cariier:"",
day:'',
flightNumber:'',
cariier2:"",
day2:'',
flightNumber2:'',
cariier3:"",
day3:'',
flightNumber3:'',
},
isu:{
isu_day_mounth_year:'',
isu_place_or_airport_code:'ZHENGZHOU',
isu_signature:'CHINA',
},
nfy:{
nfy_contacts:[],
nfy_ADR:'',
nfy_LOC_city:'',
nfy_LOC_province:'',
nfy_country:'',
nfy_name:'',
nfy_postcode:''
},
oci:[
// {
// oci_country_code:'',
// oci_csrc_id:'',
// oci_csrc_info:'',
// oci_information_id:''
// }
],
osi:[{
osi_text:[],
}],
oth:{
oth_amount:'',
oth_charge_code:'',
oth_charges:'',
oth_entitlement_code:''
},
ppd:{
ppd_charge_summary_total:'',
ppd_other_charges_due_agent:'',
ppd_other_charges_due_carrier:'',
ppd_taxes_amount:'',
ppd_valuation_amount:'',
ppd_weight_amount:'',
},
ref:{
ref_address:'CGOFD1E',
ref_file_reference:'',
ref_participant_airport:'',
ref_participant_code:'',
ref_participant_id:'',
},
rtd:
{
dimensions:[],
rtd_charge_weight:'',
rtd_combination_point:'',
rtd_commodity_NUM:'',
rtd_goods_DES:'',
rtd_goods_consol_DES:'',
rtd_gross_weight:'',
rtd_number_pieces:'',
rtd_rate_charge:'',
rtd_rate_class:'Q',
rtd_total:'',
//体积
rtd_volume:'',
rtd_volume_code:'MC',
}
,
rtg:{
destinationAirport:'',
destinationCarrier:'',
onwardAirport:'',
onwardCarrier:'',
onwardAirport3:'',
onwardCarrier3:'',
},
shp:{
shp_contacts:[],
shp_account_number:'',
shp_adr:'',
shp_country:'',
shp_loc_place:'',
shp_loc_province:'',
shp_name:'',
shp_postcode:'',
},
ssr:{
ssr_request_content:[""],
},
cer:{
cer_signature:''
},
sph:{
sph_code:[]
}
};
this.sphCodes="";
this.ssr_content="";
this.cne_contact={
contact_id:'TE',
contact_number:'',
};
this.shp_contact={
contact_id:'TE',
contact_number:'',
};
this.nfy_contact={
contact_id:'TE',
contact_number:''
};
this.shp_oci={
oci_country_code: "",
oci_csrc_id: "T",
oci_information_id: "SHP",
oci_csrc_info: ""
};
this.cne_oci={
oci_country_code: "",
oci_csrc_id: "T",
oci_information_id: "CNE",
oci_csrc_info: ""
};
this.acc_info={
acc_info:'FREIGHT PREPAID',
acc_info_id:'GEN',
}
}
},
activated(){
if(jsutil.checkNull(this.$route.query.id)){
... ... @@ -3647,7 +3826,7 @@ Handling Information
this.form.flt.cariier2 = cleanedValue.slice(0, 2);
this.form.flt.flightNumber2 = cleanedValue.slice(2);
}
},
}
},
watch:{
ssr_content: {
... ...