diff --git a/src/views/emis/emisWaybill/waybillModify.vue b/src/views/emis/emisWaybill/waybillModify.vue
index 1615afc3..277f164e 100644
--- a/src/views/emis/emisWaybill/waybillModify.vue
+++ b/src/views/emis/emisWaybill/waybillModify.vue
@@ -113,12 +113,12 @@
-
+
-
+
@@ -1880,6 +1880,10 @@ methods: {
// console.log("===>calcExp222==expr==>",expr);
// console.log("===>calcExp222==row==>",row);
}
+
+
+
+
}
}
@@ -1894,12 +1898,17 @@ methods: {
let res= await getValidExchangeRate({from:item.currency,to:'CNY'});
if(res.code==200){
newFee=newFee*Number(res.data);
+ newFee=newFee.toFixed(2);
item.remark="汇率:"+res.data+","+newFee+"(CNY)"
}
}
newFee=newFee.toFixed(2);
totalFee=Number(totalFee)+Number(newFee);
+
+ if(item.blAutoGen==0){
+ item.fee=item.realFee;
+ }
}
}
this.form.freight = totalFee.toFixed(2);
diff --git a/src/views/emis/emisWaybill/waybillRecord.vue b/src/views/emis/emisWaybill/waybillRecord.vue
index 15d9549b..5dfa0054 100644
--- a/src/views/emis/emisWaybill/waybillRecord.vue
+++ b/src/views/emis/emisWaybill/waybillRecord.vue
@@ -1898,7 +1898,7 @@ methods: {
let res= await getValidExchangeRate({from:item.currency,to:'CNY'});
if(res.code==200){
newFee=newFee*Number(res.data);
- newFee=newFee*Number(res.data).toFixed(2);
+ newFee=newFee.toFixed(2);
item.remark="汇率:"+res.data+","+newFee+"(CNY)"
}
}