|
@@ -964,14 +964,14 @@ export default {
|
|
if (this.dataList.grossWeight && this.dataList.tare) {
|
|
if (this.dataList.grossWeight && this.dataList.tare) {
|
|
this.dataList.netWeight = Number(
|
|
this.dataList.netWeight = Number(
|
|
this.dataList.grossWeight - this.dataList.tare
|
|
this.dataList.grossWeight - this.dataList.tare
|
|
- )
|
|
|
|
|
|
+ ).toFixed(2)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
grossWeightchange(e) {
|
|
grossWeightchange(e) {
|
|
if (this.dataList.grossWeight && this.dataList.tare) {
|
|
if (this.dataList.grossWeight && this.dataList.tare) {
|
|
this.dataList.netWeight = Number(
|
|
this.dataList.netWeight = Number(
|
|
this.dataList.grossWeight - this.dataList.tare
|
|
this.dataList.grossWeight - this.dataList.tare
|
|
- )
|
|
|
|
|
|
+ ).toFixed(2)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
selectgoodsName(e) {
|
|
selectgoodsName(e) {
|