Merge branch 'dillon/90-e-invoice-e-1' into vapor/development

This commit is contained in:
Dillon Ngo
2025-12-31 22:14:10 +08:00
@@ -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;
}
}
}