E-Invoice - Updated business logic for refund / return (credit note) without updating booking amount (PM feedback)

This commit is contained in:
Dillon Ngo
2025-09-29 20:19:35 +08:00
parent 62cddde1b3
commit 4cbdfa6e4b
3 changed files with 10 additions and 10 deletions
@@ -126,9 +126,9 @@ class UpdateRefundTransactionStatusLogic extends AbstractControllerLogic
}
// cief todo: 90 - REVERTED STARTS (commented before revert)
$request['fix_amount'] = $booking->fix_amount - $refundTransaction->original_amount;
$request->route()->setParameter('id', $booking->id);
$this->updateBookingAmountLogic->execute($request);
// $request['fix_amount'] = $booking->fix_amount - $refundTransaction->original_amount;
// $request->route()->setParameter('id', $booking->id);
// $this->updateBookingAmountLogic->execute($request);
// cief todo: 90 - REVERTED ENDS (commented before revert)
}