|
@@ -504,14 +504,14 @@ export default {
|
|
|
this.paymentList.base = this.paymentList.base.toFixed(3)
|
|
|
if(this.paymentList.type=='潮粮'){
|
|
|
this.paymentList.pureWeight=this.paymentList.base*this.paymentList.weighingManagement.netWeight
|
|
|
- this.paymentList.pureWeight = this.paymentList.pureWeight.toFixed(2)
|
|
|
+ this.paymentList.pureWeight = Math.round(this.paymentList.pureWeight)
|
|
|
}
|
|
|
|
|
|
}
|
|
|
else{
|
|
|
if(this.paymentList.type=='潮粮'){
|
|
|
this.paymentList.pureWeight=this.paymentList.weighingManagement.netWeight * (100 - this.paymentList.param)/100
|
|
|
- this.paymentList.pureWeight = this.paymentList.pureWeight.toFixed(2)
|
|
|
+ this.paymentList.pureWeight = Math.round(this.paymentList.pureWeight)
|
|
|
}
|
|
|
}
|
|
|
if(!this.paymentList.dryGrainPrice){
|