chore(checkpoint): save club core backend and pending pos fixes

This commit is contained in:
Deploy
2026-08-26 17:58:45 +02:00
parent cf3c906ed2
commit 49dfd00406
44 changed files with 2241 additions and 219 deletions

View File

@@ -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,