Compare commits

...

2 Commits

Author SHA1 Message Date
zhaohengkun
f516365a5a Merge remote-tracking branch 'origin/main' 2024-10-18 10:43:59 +08:00
zhaohengkun
a5ac9ecaa5 收银台调整 2024-10-18 10:43:49 +08:00

View File

@ -1431,9 +1431,9 @@ export default {
// //
this.payForm.goodsAmount = this.getGoodsNum || 0 this.payForm.goodsAmount = this.getGoodsNum || 0
// //
this.payForm.oilActualPay = this.oilGunClearing.amount ? this.oilGunClearing.getAmount-this.disOil : 0 this.payForm.oilActualPay = (this.oilGunClearing.getAmount || 0)-(this.disOil || 0)
// //
this.payForm.goodsActualPay = this.getGoodsNum ? this.getGoodsNum-this.disGoods : 0 this.payForm.goodsActualPay = (this.getGoodsNum || 0) - (this.disGoods || 0)
//id //id
this.payForm.oilGunId = this.oilGunClearing.id this.payForm.oilGunId = this.oilGunClearing.id
// //
@ -1463,7 +1463,7 @@ export default {
// //
this.payForm.goodsNum = this.getGoodsListNum this.payForm.goodsNum = this.getGoodsListNum
// + // +
this.payForm.allAmount = (this.oilGunClearing.getAmount-this.disOil) + (this.getGoodsNum-this.disGoods) this.payForm.allAmount = this.realAmount
this.payForm.paymentType = this.payType this.payForm.paymentType = this.payType
@ -1977,7 +1977,7 @@ export default {
// //
this.payForm.goodsNum = this.getGoodsListNum this.payForm.goodsNum = this.getGoodsListNum
// + // +
this.payForm.allAmount = (this.oilGunClearing.getAmount-this.disOil) + (this.getGoodsNum-this.disGoods) this.payForm.allAmount = this.realAmount