|
@@ -3052,6 +3052,7 @@ export default {
|
|
} else if (this.dialogWhgenlegList[zhgen].fFeeUnitid === 4) {
|
|
} else if (this.dialogWhgenlegList[zhgen].fFeeUnitid === 4) {
|
|
qty = this.fVolumn
|
|
qty = this.fVolumn
|
|
}
|
|
}
|
|
|
|
+ qty=(qty/1000).toFixed(2);
|
|
let fAmount = parseFloat(Number(this.dialogWhgenlegList[zhgen].fPrice) * Number(qty)).toFixed(2)
|
|
let fAmount = parseFloat(Number(this.dialogWhgenlegList[zhgen].fPrice) * Number(qty)).toFixed(2)
|
|
if (this.costStatus === 'Cr') {
|
|
if (this.costStatus === 'Cr') {
|
|
this.warehouseCrList.push({
|
|
this.warehouseCrList.push({
|
|
@@ -3800,15 +3801,15 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (row.fFeeunitid === 1) {
|
|
if (row.fFeeunitid === 1) {
|
|
- this.$set(row, 'fQty', fQty)
|
|
|
|
|
|
+ this.$set(row, 'fQty', (fQty/1000).toFixed(2))
|
|
} else if (row.fFeeunitid === 2) {
|
|
} else if (row.fFeeunitid === 2) {
|
|
- this.$set(row, 'fQty', fGrossweight)
|
|
|
|
|
|
+ this.$set(row, 'fQty', (fGrossweight/1000).toFixed(2))
|
|
}else if (row.fFeeunitid === 3) {
|
|
}else if (row.fFeeunitid === 3) {
|
|
- this.$set(row, 'fQty', fNetweight)
|
|
|
|
|
|
+ this.$set(row, 'fQty', (fNetweight/1000).toFixed(2))
|
|
}else if (row.fFeeunitid === 4) {
|
|
}else if (row.fFeeunitid === 4) {
|
|
- this.$set(row, 'fQty', volumn)
|
|
|
|
|
|
+ this.$set(row, 'fQty', (volumn/1000).toFixed(2))
|
|
}else if (row.fFeeunitid === 5) {
|
|
}else if (row.fFeeunitid === 5) {
|
|
- this.$set(row, 'fQty', fixed)
|
|
|
|
|
|
+ this.$set(row, 'fQty', (fixed/1000).toFixed(2))
|
|
}
|
|
}
|
|
if (row.fUnitprice) {
|
|
if (row.fUnitprice) {
|
|
this.$set(row, 'fAmount', parseFloat(Number(row.fUnitprice) * Number(row.fQty)).toFixed(2))
|
|
this.$set(row, 'fAmount', parseFloat(Number(row.fUnitprice) * Number(row.fQty)).toFixed(2))
|