From 1690da236919ec0173da0bfd82792cb3dd49ce64 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 25 May 2014 04:34:04 +0200 Subject: [PATCH] Fix: Bad balance of td --- htdocs/product/liste.php | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/htdocs/product/liste.php b/htdocs/product/liste.php index 015e7a8a1e3..2eccb9095a5 100644 --- a/htdocs/product/liste.php +++ b/htdocs/product/liste.php @@ -368,6 +368,15 @@ else print ' '; print ''; } + else + { + print ''; + print ' '; + print ''; + print ''; + print ' '; + print ''; + } print ''; print $form->selectarray('tosell', array('0'=>$langs->trans('ProductStatusNotOnSellShort'),'1'=>$langs->trans('ProductStatusOnSellShort')),$tosell,1); @@ -429,7 +438,7 @@ else print ''.$objp->barcode.''; } - // Date + // Modification Date print ''.dol_print_date($db->jdate($objp->datem),'day')."\n"; // Duration @@ -454,7 +463,8 @@ else } // Better buy price - if ($user->rights->produit->creer) { + if ($user->rights->produit->creer) + { print ''; if ($objp->minsellprice != '') { @@ -489,7 +499,12 @@ else } else { - print ' '; + print ''; + print ' '; + print ''; + print ''; + print ' '; + print ''; } }