Skip to content

Commit

Permalink
Merge branch '3.9' of https://github.com/Dolibarr/dolibarr.git into 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
atm-florian committed Aug 17, 2016
2 parents a132375 + 0cb7440 commit 00443da
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions htdocs/commande/list.php
Expand Up @@ -587,10 +587,13 @@
print dol_print_date($db->jdate($objp->date_commande), 'day');
print '</td>';

// Delivery date
print '<td align="center">';
print dol_print_date($db->jdate($objp->date_delivery), 'day');
print '</td>';
if (empty($conf->global->ORDER_DISABLE_DELIVERY_DATE))
{
// Delivery date
print '<td align="center">';
print dol_print_date($db->jdate($objp->date_delivery), 'day');
print '</td>';
}

// Amount HT
print '<td align="right" class="nowrap">'.price($objp->total_ht).'</td>';
Expand Down

0 comments on commit 00443da

Please sign in to comment.