diff --git a/POS/src/components/ShiftClosingDialog.vue b/POS/src/components/ShiftClosingDialog.vue index ad02948a..602522bf 100644 --- a/POS/src/components/ShiftClosingDialog.vue +++ b/POS/src/components/ShiftClosingDialog.vue @@ -1068,9 +1068,10 @@ async function loadClosingData() { data.payment_reconciliation = data.payment_reconciliation.map((payment) => reactive({ ...payment, - closing_amount: payment.closing_amount ?? null, + closing_amount: payment.closing_amount ?? 0, difference: 0, - _touched: false, +<<<<<<< HEAD + _touched: true, }) );