From 4f8f39f71b259f237dc581bc87480c5c01197b5d Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Thu, 10 Dec 2009 12:16:17 +0000 Subject: [PATCH] Fix: view remise percent (negative or positive) --- htdocs/compta/facture.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/htdocs/compta/facture.php b/htdocs/compta/facture.php index 2f5838769bd..ee57fc02990 100644 --- a/htdocs/compta/facture.php +++ b/htdocs/compta/facture.php @@ -2859,7 +2859,9 @@ else } else print ' '; print ''; - if ($objp->remise_percent > 0) + + // Remise percent (negative or positive) + if (!empty($objp->remise_percent)) { print ''.dol_print_reduction($objp->remise_percent,$langs)."\n"; }