From d0dffc8999af9a5bbe08baa80ef2c74085e8fe4c Mon Sep 17 00:00:00 2001 From: Laurent Destailleur <eldy@destailleur.fr> Date: Fri, 20 Jun 2014 14:13:23 +0200 Subject: [PATCH] Fix: Duplicate column --- htdocs/product/stock/massstockmove.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/htdocs/product/stock/massstockmove.php b/htdocs/product/stock/massstockmove.php index 7831baa5865..afe9e20e28b 100644 --- a/htdocs/product/stock/massstockmove.php +++ b/htdocs/product/stock/massstockmove.php @@ -252,7 +252,6 @@ print '<table class="liste" width="100%">'; print '<tr class="liste_titre">'; print getTitleFieldOfList($langs->trans('ProductRef'),0,$_SERVER["PHP_SELF"],'',$param,'','class="tagtd"',$sortfield,$sortorder); -print getTitleFieldOfList($langs->trans('ProductLabel'),0,$_SERVER["PHP_SELF"],'',$param,'','class="tagtd"',$sortfield,$sortorder); print getTitleFieldOfList($langs->trans('WarehouseSource'),0,$_SERVER["PHP_SELF"],'',$param,'','class="tagtd"',$sortfield,$sortorder); print getTitleFieldOfList($langs->trans('WarehouseTarget'),0,$_SERVER["PHP_SELF"],'',$param,'','class="tagtd"',$sortfield,$sortorder); print getTitleFieldOfList($langs->trans('Qty'),0,$_SERVER["PHP_SELF"],'',$param,'','align="center" class="tagtd"',$sortfield,$sortorder); @@ -262,7 +261,7 @@ print '</tr>'; print '<tr '.$bc[$var].'>'; // Product -print '<td colspan="2">'; +print '<td>'; $filtertype=0; if (! empty($conf->global->STOCK_SUPPORTS_SERVICES)) $filtertype=''; if ($conf->global->PRODUIT_LIMIT_SIZE <= 0) @@ -272,7 +271,7 @@ if ($conf->global->PRODUIT_LIMIT_SIZE <= 0) else { $limit = $conf->global->PRODUIT_LIMIT_SIZE; -} +} print $form->select_produits($id_product,'productid',$filtertype,$limit); print '</td>'; // In warehouse -- GitLab