diff --git a/htdocs/commissions/index.php b/htdocs/commissions/index.php index c6988f19b8d844766a4fcaa6b6d53187aa2dd5eb..d7e024990d01809954ee489c7e57a708db18e410 100644 --- a/htdocs/commissions/index.php +++ b/htdocs/commissions/index.php @@ -77,7 +77,7 @@ if ($agentid > 0) { print '<tr><td width="20%">'.$langs->trans('CommercialAgent').'</td>'; print '<td colspan="4">'; - print $form->select_dolusers($selected=$agentid,$htmlname='agentid',$show_empty=1,$exclude='',$disabled=0,$include='',$enableonly=''); + print $form->select_dolusers($agentid,'agentid',1,'',0,'',''); print '</td></tr>'; if (! $sortorder) $sortorder="ASC"; @@ -86,7 +86,7 @@ if ($agentid > 0) { else { print '<tr><td width="20%">'.$langs->trans('CommercialAgent').'</td>'; print '<td colspan="4">'; - print $form->select_dolusers($selected='',$htmlname='agentid',$show_empty=1,$exclude='',$disabled=0,$include='',$enableonly=''); + print $form->select_dolusers('','agentid',1,'',0,'',''); print '</td></tr>'; if (! $sortorder) $sortorder="ASC"; if (! $sortfield) $sortfield="u.login"; diff --git a/htdocs/margin/tabs/productMargins.php b/htdocs/margin/tabs/productMargins.php index 04495eb5e7a3cc67f480b2b55984288373036d3b..6fa027e4638eff490bfa3eb5f075420beb94bab4 100644 --- a/htdocs/margin/tabs/productMargins.php +++ b/htdocs/margin/tabs/productMargins.php @@ -96,12 +96,12 @@ if ($id > 0 || ! empty($ref)) print '</tr>'; // Status (to sell) - print '<tr><td>'.$langs->trans("Status").' ('.$langs->trans("Sell").')'.'</td><td colspan="3">'; + print '<tr><td>'.$langs->trans("Status").' ('.$langs->trans("Sell").')</td><td colspan="3">'; print $object->getLibStatut(2,0); print '</td></tr>'; // Status (to buy) - print '<tr><td>'.$langs->trans("Status").' ('.$langs->trans("Buy").')'.'</td><td colspan="3">'; + print '<tr><td>'.$langs->trans("Status").' ('.$langs->trans("Buy").')</td><td colspan="3">'; print $object->getLibStatut(2,1); print '</td></tr>';