diff --git a/htdocs/commande/fiche.php b/htdocs/commande/fiche.php index 3c8e5ce0772..808160802cf 100644 --- a/htdocs/commande/fiche.php +++ b/htdocs/commande/fiche.php @@ -580,7 +580,7 @@ else print '
| '.$langs->trans('Ref').' | '; + print '||||||||
| '.$langs->trans('Ref').' | '; print ''.$commande->ref.' | '; print ''.$langs->trans('Source').' : ' . $commande->sources[$commande->source] ; if ($commande->source == 0) @@ -858,7 +858,10 @@ else } print ' | '; print ''; - print $html->select_tva('eltva_tx',$objp->tva_tx,$mysoc,$soc); + if($soc->tva_assuj == "0") + print '0'; + else + print $html->select_tva('eltva_tx',$objp->tva_tx,$mysoc,$soc); print ' | '; print ''; print ' | '; @@ -905,7 +908,7 @@ else print ' | '; print ' | '; if($soc->tva_assuj == "0") - print '0'; + print '0'; else print $html->select_tva('tva_tx',$conf->defaulttx,$mysoc,$soc); print ' | ';|