diff --git a/htdocs/commande/fiche.php b/htdocs/commande/fiche.php
index 6481149c719..96b8590a1f3 100644
--- a/htdocs/commande/fiche.php
+++ b/htdocs/commande/fiche.php
@@ -644,6 +644,40 @@ else
print '
| '.$langs->trans('Date').' | ';
print ''.dolibarr_print_date($commande->date,'%A %d %B %Y').' | ';
print '
';
+
+ // Conditions et modes de réglement
+ print '| ';
+ print '';
+ print ' | ';
+ if ($_GET['action'] == 'editconditions')
+ {
+ $html->form_conditions_reglement($_SERVER['PHP_SELF'].'?id='.$commande->id,$commande->cond_reglement_id,'cond_reglement_id');
+ }
+ else
+ {
+ $html->form_conditions_reglement($_SERVER['PHP_SELF'].'?id='.$commande->id,$commande->cond_reglement_id,'none');
+ }
+ print ' | ';
+ print '';
+ print '';
+ print ' | ';
+ if ($_GET['action'] == 'editmode')
+ {
+ $html->form_modes_reglement($_SERVER['PHP_SELF'].'?id='.$commande->id,$commande->mode_reglement_id,'mode_reglement_id');
+ }
+ else
+ {
+ $html->form_modes_reglement($_SERVER['PHP_SELF'].'?id='.$commande->id,$commande->mode_reglement_id,'none');
+ }
+ print ' |
';
// Projet
if ($conf->projet->enabled)