diff --git a/htdocs/comm/propal.php b/htdocs/comm/propal.php
index be631b3c427..4ef13e13735 100644
--- a/htdocs/comm/propal.php
+++ b/htdocs/comm/propal.php
@@ -1225,13 +1225,13 @@ if ($_GET['propalid'] > 0)
}
// VAT Rate
- print '
'.vatrate($objp->tva_tx,'%',$objp->info_bits).' | ';
+ print ''.vatrate($objp->tva_tx,'%',$objp->info_bits).' | ';
// U.P HT
- print ''.price($objp->subprice)." | \n";
+ print ''.price($objp->subprice)." | \n";
// Qty
- print '';
+ print ' | ';
if ((($objp->info_bits & 2) != 2) && $objp->special_code != 3)
{
print $objp->qty;
@@ -1253,11 +1253,11 @@ if ($_GET['propalid'] > 0)
if ($objp->special_code == 3)
{
// Si ligne en option
- print ' | '.$langs->trans('Option').' | ';
+ print ''.$langs->trans('Option').' | ';
}
else
{
- print ''.price($objp->total_ht)." | \n";
+ print ''.price($objp->total_ht)." | \n";
}
// Icone d'edition et suppression
diff --git a/htdocs/commande/fiche.php b/htdocs/commande/fiche.php
index 2e0c73ea462..7b2652f8c3b 100644
--- a/htdocs/commande/fiche.php
+++ b/htdocs/commande/fiche.php
@@ -1419,8 +1419,8 @@ else
print '';
}
- print ''.vatrate($objp->tva_tx,'%',$objp->info_bits).' | ';
- print ''.price($objp->subprice).' | ';
+ print ''.vatrate($objp->tva_tx,'%',$objp->info_bits).' | ';
+ print ''.price($objp->subprice).' | ';
print '';
if (($objp->info_bits & 2) != 2)
{
@@ -1436,7 +1436,7 @@ else
{
print ' | | ';
}
- print ''.price($objp->total_ht).' | ';
+ print ''.price($objp->total_ht).' | ';
// Icone d'edition et suppression
if ($commande->statut == 0 && $user->rights->commande->creer)
diff --git a/htdocs/fourn/commande/fiche.php b/htdocs/fourn/commande/fiche.php
index 72f072885e2..4002ca6631f 100644
--- a/htdocs/fourn/commande/fiche.php
+++ b/htdocs/fourn/commande/fiche.php
@@ -703,19 +703,19 @@ if ($id > 0)
print nl2br($objp->description);
print '';
}
- print ''.vatrate($objp->tva_tx).'% | ';
- print ''.price($objp->subprice)." | \n";
- print ''.$objp->qty.' | ';
+ print ''.vatrate($objp->tva_tx).'% | ';
+ print ''.price($objp->subprice)." | \n";
+ print ''.$objp->qty.' | ';
if ($objp->remise_percent > 0)
{
- print ''.dolibarr_print_reduction($objp->remise_percent)." | \n";
+ print ''.dolibarr_print_reduction($objp->remise_percent)." | \n";
}
else
{
print ' | ';
}
//Todo: Modifier la classe pour utiliser le champ total_ttc
- print ''.price($objp->subprice*$objp->qty*(100-$objp->remise_percent)/100).' | ';
+ print ''.price($objp->subprice*$objp->qty*(100-$objp->remise_percent)/100).' | ';
if ($commande->statut == 0 && $user->rights->fournisseur->commande->creer)
{
print 'id.'&action=editline&rowid='.$objp->rowid.'#'.$objp->rowid.'">';
|