|
@@ -2896,15 +2896,15 @@
|
|
|
volumn = parseFloat(Number(volumn) + Number(this.dataList[li].volumn)).toFixed(2)
|
|
|
}
|
|
|
}
|
|
|
- if (row.fFeeunitid === 1) {
|
|
|
+ if (row.fFeeunitid === "1") {
|
|
|
this.$set(row, 'fQty', (fQty/1000).toFixed(2))
|
|
|
- } else if (row.fFeeunitid === 2) {
|
|
|
+ } else if (row.fFeeunitid === "2") {
|
|
|
this.$set(row, 'fQty', (fGrossweight/1000).toFixed(2))
|
|
|
- }else if (row.fFeeunitid === 3) {
|
|
|
+ }else if (row.fFeeunitid === "3") {
|
|
|
this.$set(row, 'fQty', (fNetweight/1000).toFixed(2))
|
|
|
- }else if (row.fFeeunitid === 4) {
|
|
|
+ }else if (row.fFeeunitid === "4") {
|
|
|
this.$set(row, 'fQty', (volumn/1000).toFixed(2))
|
|
|
- }else if (row.fFeeunitid === 5) {
|
|
|
+ }else if (row.fFeeunitid === "5") {
|
|
|
this.$set(row, 'fQty', (fixed/1000).toFixed(2))
|
|
|
}
|
|
|
if (row.fUnitprice) {
|