From f66f757e3b6d793c9ede28af089775a572771c2b Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Fri, 26 Oct 2007 20:22:06 +0000 Subject: [PATCH] test --- htdocs/commande/fiche.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/commande/fiche.php b/htdocs/commande/fiche.php index f5dacf0e1e3..5d1ff103eda 100644 --- a/htdocs/commande/fiche.php +++ b/htdocs/commande/fiche.php @@ -327,14 +327,14 @@ if ($_POST['action'] == 'addligne' && $user->rights->commande->creer) // multiprix if ($conf->global->PRODUIT_MULTIPRICES == 1) { - $pu_ht = $prod->multiprices[$commande->client->price_level]; - $pu_ttc = $prod->multiprices_ttc[$commande->client->price_level]; - $price_base_type = $prod->multiprices_base_type[$commande->client->price_level]; + $pu_ht = $prod->multiprices[$commande->client->price_level]; + $pu_ttc = $prod->multiprices_ttc[$commande->client->price_level]; + $price_base_type = $prod->multiprices_base_type[$commande->client->price_level]; } else { $pu_ht = $prod->price; - $pu_ttc = $prod->price_ttc; + $pu_ttc = $prod->price_ttc; $price_base_type = $prod->price_base_type; }