Skip to content
Snippets Groups Projects
Commit c8b52887 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Merge pull request #2008 from ndrosis/patch-10

Fix : The tva not coming from multi price for invoice
parents 4f084080 24439eb1
No related branches found
No related tags found
No related merge requests found
......@@ -1152,6 +1152,8 @@ else if ($action == 'addline' && $user->rights->facture->creer)
$pu_ttc = $prod->multiprices_ttc[$object->client->price_level];
$price_min = $prod->multiprices_min[$object->client->price_level];
$price_base_type = $prod->multiprices_base_type[$object->client->price_level];
if (isset($prod->multiprices_tva_tx[$object->client->price_level])) $tva_tx=$prod->multiprices_tva_tx[$object->client->price_level];
if (isset($prod->multiprices_recuperableonly[$object->client->price_level])) $tva_npr=$prod->multiprices_recuperableonly[$object->client->price_level];
}
elseif (! empty($conf->global->PRODUIT_CUSTOMER_PRICES))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment