Skip to content
Snippets Groups Projects
Commit 8eb73aaa authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: convert line delimiters

parent 8f3ead5c
No related branches found
No related tags found
No related merge requests found
......@@ -68,18 +68,18 @@ if ($action == 'convert')
$ret=$object->fetch($obj->rowid);
if ($ret)
{
if ($price_base_type == 'TTC')
{
$newprice=price2num($object->price_ttc,'2');
}
else
{
$newprice=price2num($object->price,'MU');
}
$newvat=str_replace('*','',$newvatrate);
$ret=$object->updatePrice($object->id, $newprice, $price_base_type, $user, $newvat);
if ($price_base_type == 'TTC')
{
$newprice=price2num($object->price_ttc,'2');
}
else
{
$newprice=price2num($object->price,'MU');
}
$newvat=str_replace('*','',$newvatrate);
$ret=$object->updatePrice($object->id, $newprice, $price_base_type, $user, $newvat);
if ($ret < 0) $error++;
}
......
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