|
@@ -607,9 +607,9 @@
|
|
|
if (this.deptBudgetList.warehouseInOutDetail.waterContent) {
|
|
|
let _water = this.deptBudgetList.warehouseInOutDetail.waterContent
|
|
|
if (Number(_water) > 14.9) {
|
|
|
- _price = (Number(_water) - 14.9) * 0.005
|
|
|
+ _price = ((Number(_water) - 14.9) * 0.005).toFixed(3)
|
|
|
}
|
|
|
- this.deptBudgetList.deductionAmount = _price.toFixed(3)
|
|
|
+ this.deptBudgetList.deductionAmount = _price
|
|
|
this.kkInput(_price)
|
|
|
} else {
|
|
|
this.$message({
|