Adjust stripe payment intent description to include invoice prefix+number

This commit is contained in:
Marcus Hill 2023-02-08 10:50:35 +00:00
parent 33a5a75cfb
commit 13f8eaab71
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ if (isset($_GET['stripe_create_pi'])) {
}
$config_stripe_secret = $row['config_stripe_secret'];
$pi_description = "ITFlow: $client_name payment of $invoice_currency_code $balance_to_pay for $client_name";
$pi_description = "ITFlow: $client_name payment of $invoice_currency_code $balance_to_pay for $invoice_prefix$invoice_number";
// Create a PaymentIntent with amount, currency and client details
try {