Remove Stripe check and add payment provider check in Client Portal Recurring Invoices to create auto payments

This commit is contained in:
johnnyq
2025-08-27 18:23:58 -04:00
parent 66cab6c1ab
commit da0892f9e3
2 changed files with 10 additions and 2 deletions

View File

@@ -92,6 +92,7 @@ $sql = mysqli_query($mysqli, "SELECT * FROM payment_providers WHERE payment_prov
$row = mysqli_fetch_array($sql);
$payment_provider_id = intval($row['payment_provider_id']);
$payment_provider_name = nullable_htmlentities($row['payment_provider_name']);
$payment_provider_threshold = floatval($row['payment_provider_threshold']);
//Set Currency Format
$currency_format = numfmt_create($company_locale, NumberFormatter::CURRENCY);