Skip to content
Snippets Groups Projects
Commit 0a0e0e06 authored by Marcos García de La Fuente's avatar Marcos García de La Fuente Committed by Laurent Destailleur
Browse files

Fixed [ bug #1691 ] Don't think the ID should be displayed in holiday module

parent 491aef72
No related branches found
No related tags found
No related merge requests found
......@@ -144,17 +144,14 @@ if($cp_events == 1)
print '</form><br>';
}
dol_fiche_head();
print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">'."\n";
print '<input type="hidden" name="action" value="update" />';
print '<table class="noborder" width="100%;">';
print "<tr class=\"liste_titre\">";
print '<td width="5%">'.$langs->trans('ID').'</td>';
print '<td width="50%">'.$langs->trans('Employee').'</td>';
print '<td width="55%">'.$langs->trans('Employee').'</td>';
print '<td width="20%" style="text-align:center">'.$langs->trans('Available').'</td>';
print '<td width="20%" style="text-align:center">'.$langs->trans('Note').'</td>';
print '<td style="text-align:center">'.$langs->trans('UpdateButtonCP').'</td>';
print '<td></td>';
print '</tr>';
foreach($listUsers as $users)
......@@ -163,7 +160,6 @@ foreach($listUsers as $users)
$var=!$var;
print '<tr '.$bc[$var].' style="height: 20px;">';
print '<td>'.$users['rowid'].'</td>';
print '<td>';
$userstatic->id=$users['rowid'];
$userstatic->lastname=$users['name'];
......@@ -183,9 +179,6 @@ foreach($listUsers as $users)
print '</table>';
print '</form>';
dol_fiche_end();
llxFooter();
$db->close();
......@@ -48,7 +48,6 @@ ConfirmDeleteCP=Confirm the deletion of this leave request?
ErrorCantDeleteCP=Error you don't have the right to delete this leave request.
CantCreateCP=You don't have the right to make leave requests.
InvalidValidatorCP=You must choose an approbator to your leave request.
UpdateButtonCP=Update
CantUpdate=You cannot update this leave request.
NoDateDebut=You must select a start date.
NoDateFin=You must select an end date.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment