diff --git a/htdocs/comm/index.php b/htdocs/comm/index.php
index dafc1e7ee16..5903b7e4bdb 100644
--- a/htdocs/comm/index.php
+++ b/htdocs/comm/index.php
@@ -634,7 +634,11 @@ if (!empty($conf->societe->enabled) && $user->rights->societe->lire) {
print $s;
print '';
- print '
'.dol_print_date($db->jdate($objp->tms), 'day').' | ';
+
+ $datem = $db->jdate($objp->tms);
+ print '';
+ print dol_print_date($datem, 'day', 'tzuserrel');
+ print ' | ';
print '';
$i++;
@@ -725,7 +729,11 @@ if (((!empty($conf->fournisseur->enabled) && empty($conf->global->MAIN_USE_NEW_S
print $s;
print '';
- print ''.dol_print_date($db->jdate($objp->dm), 'day').' | ';
+
+ $datem = $db->jdate($objp->dm);
+ print '';
+ print dol_print_date($datem, 'day', 'tzuserrel');
+ print ' | ';
print '';
$i++;
@@ -922,7 +930,10 @@ if (!empty($conf->propal->enabled) && $user->rights->propal->lire) {
print '';
print ''.$companystatic->getNomUrl(1, 'customer', 44).' | ';
- print ''.dol_print_date($db->jdate($obj->dp), 'day').' | ';
+ $datem = $db->jdate($obj->dp);
+ print '';
+ print dol_print_date($datem, 'day', 'tzserver');
+ print ' | ';
print ''.price(!empty($conf->global->MAIN_DASHBOARD_USE_TOTAL_HT) ? $obj->total_ht : $obj->total_ttc).' | ';
print ''.$propalstatic->LibStatut($obj->fk_statut, 3).' | ';
@@ -1039,7 +1050,11 @@ if (!empty($conf->commande->enabled) && $user->rights->commande->lire) {
print '';
print ''.$companystatic->getNomUrl(1, 'customer', 44).' | ';
- print ''.dol_print_date($db->jdate($obj->dv), 'day').' | ';
+ $datem = $db->jdate($obj->dv);
+ print '';
+ print dol_print_date($datem, 'day', 'tzserver');
+ print ' | ';
+
print ''.price(!empty($conf->global->MAIN_DASHBOARD_USE_TOTAL_HT) ? $obj->total_ht : $obj->total_ttc).' | ';
print ''.$orderstatic->LibStatut($obj->fk_statut, $obj->billed, 3).' | ';