From 9ce6361d2868cd45d7cceb16f2c16368563c0e64 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 20 Aug 2005 19:12:36 +0000 Subject: [PATCH] New: Gestion des taux de tva en base dans llx_c_tva --- htdocs/html.form.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/html.form.class.php b/htdocs/html.form.class.php index 8c90a9accdc..660525d2c97 100644 --- a/htdocs/html.form.class.php +++ b/htdocs/html.form.class.php @@ -942,11 +942,11 @@ class Form else { $txtva[0] = '19.6'; - $libtva[0] = '19.6'; + $libtva[0] = '19.6%'; $txtva[1] = '5.5'; - $libtva[1] = '5.5'; + $libtva[1] = '5.5%'; $txtva[2] = '0'; - $libtva[2] = '0'; + $libtva[2] = '0%'; } if ($defaulttx == '') @@ -966,7 +966,7 @@ class Form { print ' selected="true"'; } - print '>'.$libtva[$i].'%'; + print '>'.$libtva[$i].''; } print ''; }