From 1ed92f5ddf5002a7365905367293bbf21fa73b28 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Wed, 31 Dec 2025 22:13:55 +0800 Subject: [PATCH] E-Invoice - EXC3000: Exchange Rules of RM10K single INV, update new business logic --- .../Standards/Rules/CanPassMustEInvoiceAmountLimitRule.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Classes/Modules/Rules/Standards/Rules/CanPassMustEInvoiceAmountLimitRule.php b/app/Classes/Modules/Rules/Standards/Rules/CanPassMustEInvoiceAmountLimitRule.php index 48b7e3ab..d077aab7 100644 --- a/app/Classes/Modules/Rules/Standards/Rules/CanPassMustEInvoiceAmountLimitRule.php +++ b/app/Classes/Modules/Rules/Standards/Rules/CanPassMustEInvoiceAmountLimitRule.php @@ -89,7 +89,7 @@ class CanPassMustEInvoiceAmountLimitRule extends AbstractRule // throw new CriteriaNotFulfilledException("RM10,000 and above must opt-in for E-Invoice."); // } - //1 MYR, 2 CNY, 3USD + //1 MYR, 2 CNY, 3 USD if((($booking->fix_amount >= 9000 && $booking->fix_currency_id === 1) || ($booking->fix_amount >= 12600 && $booking->fix_currency_id === 2) || ($booking->fix_amount >= 1920 && $booking->fix_currency_id === 3)) @@ -99,4 +99,4 @@ class CanPassMustEInvoiceAmountLimitRule extends AbstractRule return true; } -} +} \ No newline at end of file