From 63eb2ca524d6296921cc074c53451b86e3453c2e Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 12 Jul 2022 08:37:18 +1000 Subject: [PATCH] Fixes for wrong payment types --- app/Models/PaymentType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/PaymentType.php b/app/Models/PaymentType.php index fe65ec2ff73f..22eb885b787d 100644 --- a/app/Models/PaymentType.php +++ b/app/Models/PaymentType.php @@ -18,7 +18,7 @@ class PaymentType extends StaticModel */ public $timestamps = false; - const CREDIT = 1; + const CREDIT = 32; const ACH = 4; const VISA = 5; const MASTERCARD = 6;