|
@@ -622,10 +622,10 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
if(item.transferCost&&item.transferCost!==''){
|
|
|
- all+=item.transferCost
|
|
|
+ all+=Number(item.transferCost)
|
|
|
}
|
|
|
if(item.remainingQuantitycost&&item.remainingQuantitycost!==''){
|
|
|
- allYu+=item.remainingQuantitycost
|
|
|
+ allYu+=Number(item.remainingQuantitycost)
|
|
|
}
|
|
|
})
|
|
|
this.detailsPlanNum.fabriccostIncludestax = (all+Number(this.fabricCost)-allYu).toFixed(2) // 表头面料成本(¥)
|