From 669e2bd7268e6c0ae0b2ff066d96c1fca40cfdec Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 21 Jan 2026 21:48:28 +0100 Subject: [PATCH] Need a label for autorecord stripe payouts --- htdocs/public/stripe/ipn.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/public/stripe/ipn.php b/htdocs/public/stripe/ipn.php index 9f1c65e1aee..0898e53f9f6 100644 --- a/htdocs/public/stripe/ipn.php +++ b/htdocs/public/stripe/ipn.php @@ -250,7 +250,7 @@ if ($event->type == 'payout.created' && getDolGlobalString('STRIPE_AUTO_RECORD_P $currency_code = getDolCurrency(); $dateo = dol_now(); - $label = $event->data->object->description.' (autorecord by IPN - see Stripe setup)'; + $label = $event->data->object->description.' '.getDolGlobalString('STRIPE_AUTO_RECORD_PAYOUT_LABEL', '- autorecord by IPN, see Stripe setup'); $amount = $stripe->convertAmount($event->data->object->amount, $currency_code, 1); require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';