diff --git a/htdocs/societe/paymentmodes.php b/htdocs/societe/paymentmodes.php
index 08165909bea..c70150f8bc0 100644
--- a/htdocs/societe/paymentmodes.php
+++ b/htdocs/societe/paymentmodes.php
@@ -1010,6 +1010,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
{
print '
'.$langs->trans('LocalID').' | ';
}
+ print ''.$langs->trans('Label').' | ';
print ''.$langs->trans('StripeID').' | ';
print ''.$langs->trans('Type').' | ';
print ''.$langs->trans('Informations').' | ';
@@ -1063,6 +1064,9 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print $companypaymentmodetemp->id;
print '';
print '';
+ print $companypaymentmodetemp->label;
+ print ' | ';
+ print '';
print $companypaymentmodetemp->stripe_card_ref;
if ($companypaymentmodetemp->stripe_card_ref)
{
|