diff --git a/htdocs/societe/paymentmodes.php b/htdocs/societe/paymentmodes.php
index f8fcacb2bb3..a98d81aae19 100644
--- a/htdocs/societe/paymentmodes.php
+++ b/htdocs/societe/paymentmodes.php
@@ -826,7 +826,9 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print '
| ';
print ''.$langs->trans('Default').' | ';
print ''.$langs->trans('Note').' | ';
- print " | \n";
+ print ''.$langs->trans('DateModification').' | ';
+ print " | ";
+ print "\n";
$nbremote = 0;
$nblocal = 0;
@@ -907,6 +909,9 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
if (empty($companypaymentmodetemp->stripe_card_ref)) print $langs->trans("Local");
else print $langs->trans("LocalAndRemote");
print '';
+ print '';
+ print dol_print_date($companypaymentmodetemp->tms, 'dayhour');
+ print ' | ';
print '';
if ($user->rights->societe->creer)
{
@@ -1019,6 +1024,9 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print ' | ';
print $langs->trans("Remote");
print ' | ';
+ print '';
+ print '';
+ print ' | ';
print '';
if ($user->rights->societe->creer)
{
|