chore(checkpoint): save club core backend and pending pos fixes
This commit is contained in:
@@ -671,8 +671,8 @@ export default function RegisterPage() {
|
||||
sku: item.sku,
|
||||
name: item.name,
|
||||
ean: null,
|
||||
unitPriceCents: item.unitPriceCents,
|
||||
discountCents: item.discountCents,
|
||||
unitPriceCents: Math.max(item.unitPriceCents - item.discountCents, 0),
|
||||
discountCents: 0,
|
||||
taxCents: 0,
|
||||
quantity: item.quantity - item.returnedQuantity,
|
||||
stock: null,
|
||||
@@ -744,8 +744,8 @@ export default function RegisterPage() {
|
||||
sku: item.sku,
|
||||
name: item.name,
|
||||
ean: null,
|
||||
unitPriceCents: item.unitPriceCents,
|
||||
discountCents: item.discountCents,
|
||||
unitPriceCents: Math.max(item.unitPriceCents - item.discountCents, 0),
|
||||
discountCents: 0,
|
||||
taxCents: 0,
|
||||
quantity: item.quantity - item.returnedQuantity,
|
||||
stock: null,
|
||||
|
||||
Reference in New Issue
Block a user