diff --git a/guest_ajax.php b/guest_ajax.php
index 47418c55..44402413 100644
--- a/guest_ajax.php
+++ b/guest_ajax.php
@@ -51,6 +51,10 @@ if (isset($_GET['stripe_create_pi'])) {
$client_id = intval($row['client_id']);
$client_name = nullable_htmlentities($row['client_name']);
+ $config_sql = mysqli_query($mysqli, "SELECT * FROM settings WHERE company_id = 1");
+ $config_row = mysqli_fetch_array($config_sql);
+ $config_stripe_client_pays_fees = intval($config_row['config_stripe_client_pays_fees']);
+
// Add up all the payments for the invoice and get the total amount paid to the invoice
$sql_amount_paid = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS amount_paid FROM payments WHERE payment_invoice_id = $invoice_id");
$row = mysqli_fetch_array($sql_amount_paid);
@@ -58,16 +62,17 @@ if (isset($_GET['stripe_create_pi'])) {
$balance_to_pay = $invoice_amount - $amount_paid;
// Check config to see if client pays fees is enabled
- $row = mysqli_fetch_array(mysqli_query($mysqli, "SELECT config_stripe_client_pays_fees FROM settings WHERE company_id = 1"));
- if ($row['config_client_pays_fees'] == 1) {
+ if ($config_stripe_client_pays_fees == 1) {
// Get fees from config
- $row = mysqli_fetch_array(mysqli_query($mysqli, "SELECT config_stripe_percentage_fee, config_stripe_flat_fee FROM settings WHERE company_id = 1"));
- $percentageFee = floatval($row['config_stripe_percentage_fee']);
- $flatFee = floatval($row['config_stripe_flat_fee']);
+ $percentage_fee = 0.029; // Default Stripe fee
+ $flat_fee = 0.30; // Default Stripe fee
// Calculate the amount to charge the client
- $balance_to_pay = ($balance_to_pay + $flatFee) / (1 - $percentageFee);
+ $balance_to_pay = ($balance_to_pay + $flat_fee) / (1 - $percentage_fee);
}
+ $balance_to_pay = round($balance_to_pay, 2);
+
+
if (intval($balance_to_pay) == 0) {
exit("No balance outstanding");
}
diff --git a/guest_pay_invoice_stripe.php b/guest_pay_invoice_stripe.php
index 604a8828..b25395bc 100644
--- a/guest_pay_invoice_stripe.php
+++ b/guest_pay_invoice_stripe.php
@@ -2,6 +2,14 @@
require_once 'guest_header.php';
+function log_to_console($message)
+{
+ $message = date("H:i:s") . " - $message - ".PHP_EOL;
+ print($message);
+ flush();
+ ob_flush();
+}
+
// Define wording
DEFINE("WORDING_PAYMENT_FAILED", "
There was an error verifying your payment. Please contact us for more information.
");
@@ -66,6 +74,7 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent
$sql = mysqli_query($mysqli, "SELECT * FROM companies, settings WHERE companies.company_id = settings.company_id AND companies.company_id = 1");
$row = mysqli_fetch_array($sql);
$company_locale = nullable_htmlentities($row['company_locale']);
+ $config_stripe_client_pays_fees = intval($row['config_stripe_client_pays_fees']);
// Add up all the payments for the invoice and get the total amount paid to the invoice
$sql_amount_paid = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS amount_paid FROM payments WHERE payment_invoice_id = $invoice_id");
@@ -73,6 +82,21 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent
$amount_paid = floatval($row['amount_paid']);
$balance_to_pay = $invoice_amount - $amount_paid;
+ // Check config to see if client pays fees is enabled
+ if ($config_stripe_client_pays_fees == 1) {
+ $balance_before_fees = $balance_to_pay;
+ $percentage_fee = 0.029;
+ $flat_fee = 0.30;
+ // Calculate the amount to charge the client
+ $balance_to_pay = ($balance_to_pay + $flat_fee) / (1 - $percentage_fee);
+ // Calculate the fee amount
+ $gateway_fee = round($balance_to_pay - $balance_before_fees, 2);
+
+ }
+
+ //Round balance to pay to 2 decimal places
+ $balance_to_pay = round($balance_to_pay, 2);
+
// Get invoice items
$sql_invoice_items = mysqli_query($mysqli, "SELECT * FROM invoice_items WHERE item_invoice_id = $invoice_id ORDER BY item_id ASC");
@@ -119,8 +143,18 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent
|
+
+
+
+ | Gateway Fees |
+ - |
+ |
+
+
+
@@ -243,6 +277,17 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent
$amount_paid_previously = $row['amount_paid'];
$balance_to_pay = $invoice_amount - $amount_paid_previously;
+ // Check config to see if client pays fees is enabled
+ if ($config_stripe_client_pays_fees == 1) {
+ $percentage_fee = 0.029;
+ $flat_fee = 0.30;
+ // Calculate the amount to charge the client
+ $balance_to_pay = ($balance_to_pay + $flat_fee) / (1 - $percentage_fee);
+ }
+
+ // Round balance to pay to 2 decimal places
+ $balance_to_pay = round($balance_to_pay, 2);
+
// Sanity check that the amount paid is exactly the invoice outstanding balance
if (intval($balance_to_pay) !== intval($pi_amount_paid)) {
exit("Something went wrong confirming this payment. Please get in touch.");
@@ -257,6 +302,11 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent
mysqli_query($mysqli, "INSERT INTO payments SET payment_date = '$pi_date', payment_amount = $pi_amount_paid, payment_currency_code = '$pi_currency', payment_account_id = $config_stripe_account, payment_method = 'Stripe', payment_reference = 'Stripe - $pi_id', payment_invoice_id = $invoice_id");
mysqli_query($mysqli, "INSERT INTO history SET history_status = 'Paid', history_description = 'Payment added - $ip - $os - $browser', history_invoice_id = $invoice_id");
+ // Add Gateway fees to history if applicable
+ if ($config_stripe_client_pays_fees == 1) {
+ mysqli_query($mysqli, "INSERT INTO history SET history_status = 'Paid', history_description = 'Gateway fees of $gateway_fee has been billed', history_invoice_id = $invoice_id");
+ }
+
// Notify
mysqli_query($mysqli, "INSERT INTO notifications SET notification_type = 'Invoice Paid', notification = 'Invoice $invoice_prefix$invoice_number has been paid - $ip - $os - $browser', notification_action = 'invoice.php?invoice_id=$invoice_id', notification_client_id = $pi_client_id");
@@ -265,8 +315,13 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent
if (!$pi_livemode) {
$extended_log_desc = '(DEV MODE)';
}
+ if ($config_stripe_client_pays_fees == 1) {
+ $extended_log_desc .= ' (Client Pays Fees [' . numfmt_format_currency($currency_format, $gateway_fee, $invoice_currency_code) . ']])';
+ }
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Payment', log_action = 'Create', log_description = 'Stripe payment of $pi_currency $pi_amount_paid against invoice $invoice_prefix$invoice_number - $pi_id $extended_log_desc', log_ip = '$ip', log_user_agent = '$user_agent', log_client_id = $pi_client_id");
+
+
// Send email receipt
$sql_settings = mysqli_query($mysqli, "SELECT * FROM settings WHERE company_id = 1");
$row = mysqli_fetch_array($sql_settings);
diff --git a/guest_view_invoice.php b/guest_view_invoice.php
index 981da396..27c2aa0e 100644
--- a/guest_view_invoice.php
+++ b/guest_view_invoice.php
@@ -80,6 +80,7 @@ if (!empty($company_logo)) {
$company_locale = nullable_htmlentities($row['company_locale']);
$config_invoice_footer = nullable_htmlentities($row['config_invoice_footer']);
$config_stripe_enable = intval($row['config_stripe_enable']);
+$config_stripe_client_pays_fees = intval($row['config_stripe_client_pays_fees']);
//Set Currency Format
$currency_format = numfmt_create($company_locale, NumberFormatter::CURRENCY);
@@ -110,6 +111,15 @@ $amount_paid = floatval($row['amount_paid']);
$balance = $invoice_amount - $amount_paid;
+// Check config to see if client pays fees is enabled
+if ($config_stripe_client_pays_fees == 1) {
+ $percentage_fee = 0.029;
+ $flat_fee = 0.30;
+ // Calculate the amount to charge the client
+ $balance_to_pay = ($balance + $flat_fee) / (1 - $percentage_fee);
+ $stripe_fee = $balance_to_pay - $balance;
+ }
+
//check to see if overdue
$invoice_color = $invoice_badge_color; // Default
if ($invoice_status !== "Paid" && $invoice_status !== "Draft" && $invoice_status !== "Cancelled") {
@@ -293,6 +303,12 @@ $sql_invoice_items = mysqli_query($mysqli, "SELECT * FROM invoice_items WHERE it
|
+
+
+ | Gateway Fee: |
+ |
+
+