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

Fix: view remise percent (negative or positive)

parent 870e9675
No related branches found
No related tags found
No related merge requests found
......@@ -2859,7 +2859,9 @@ else
}
else print ' ';
print '</td>';
if ($objp->remise_percent > 0)
// Remise percent (negative or positive)
if (!empty($objp->remise_percent))
{
print '<td align="right">'.dol_print_reduction($objp->remise_percent,$langs)."</td>\n";
}
......
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