|
@@ -643,7 +643,7 @@ export default {
|
|
|
this.sumInfo.amountTotal=''
|
|
|
this.sumInfo.fabricExcludTax =(Number(this.sumInfo.fabricAmount)/(1+(Number(data)/100))).toFixed(2)//合计中的不含税面料总额
|
|
|
this.sumInfo.ingExcludAmount = (Number(this.sumInfo.ingAmount).toFixed(2)/(1+(Number(data)/100))).toFixed(2)//辅料不含税金额合计
|
|
|
- this.sumInfo.amountTotal = Number(this.sumInfo.fabricExcludTax)+Number(this.sumInfo.ingExcludAmount)+Number( this.sumInfo.shipProcesFees)//合计金额
|
|
|
+ this.sumInfo.amountTotal = (Number(this.sumInfo.fabricExcludTax)+Number(this.sumInfo.ingExcludAmount)+Number( this.sumInfo.shipProcesFees)).toFixed(2)//合计金额
|
|
|
this.$forceUpdate()
|
|
|
this.$emit('number',this.sumInfo.fabricExcludTax,this.sumInfo.ingExcludAmount)
|
|
|
},
|