update with html5 compliant code
This commit is contained in:
parent
621b42e8e3
commit
af36883d72
@ -674,7 +674,7 @@ foreach ($listofreferent as $key => $value)
|
|||||||
|
|
||||||
print '<tr class="oddeven">';
|
print '<tr class="oddeven">';
|
||||||
// Module
|
// Module
|
||||||
print '<td align="left">'.$name.'</td>';
|
print '<td class="left">'.$name.'</td>';
|
||||||
// Nb
|
// Nb
|
||||||
print '<td align="right">'.$i.'</td>';
|
print '<td align="right">'.$i.'</td>';
|
||||||
// Amount HT
|
// Amount HT
|
||||||
@ -968,7 +968,7 @@ foreach ($listofreferent as $key => $value)
|
|||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
// Third party or user
|
// Third party or user
|
||||||
print '<td align="left">';
|
print '<td class="left">';
|
||||||
if (is_object($element->thirdparty)) print $element->thirdparty->getNomUrl(1,'',48);
|
if (is_object($element->thirdparty)) print $element->thirdparty->getNomUrl(1,'',48);
|
||||||
else if ($tablename == 'expensereport_det')
|
else if ($tablename == 'expensereport_det')
|
||||||
{
|
{
|
||||||
|
|||||||
@ -807,7 +807,7 @@ while ($i < min($num,$limit))
|
|||||||
// Visibility
|
// Visibility
|
||||||
if (! empty($arrayfields['p.public']['checked']))
|
if (! empty($arrayfields['p.public']['checked']))
|
||||||
{
|
{
|
||||||
print '<td align="left">';
|
print '<td class="left">';
|
||||||
if ($obj->public) print $langs->trans('SharedProject');
|
if ($obj->public) print $langs->trans('SharedProject');
|
||||||
else print $langs->trans('PrivateProject');
|
else print $langs->trans('PrivateProject');
|
||||||
print '</td>';
|
print '</td>';
|
||||||
@ -922,8 +922,8 @@ if (isset($totalarray['totaloppfield']) || isset($totalarray['totalbudgetfield']
|
|||||||
$i++;
|
$i++;
|
||||||
if ($i == 1)
|
if ($i == 1)
|
||||||
{
|
{
|
||||||
if ($num < $limit && empty($offset)) print '<td align="left">'.$langs->trans("Total").'</td>';
|
if ($num < $limit && empty($offset)) print '<td class="left">'.$langs->trans("Total").'</td>';
|
||||||
else print '<td align="left">'.$langs->trans("Totalforthispage").'</td>';
|
else print '<td class="left">'.$langs->trans("Totalforthispage").'</td>';
|
||||||
}
|
}
|
||||||
elseif ($totalarray['totaloppfield'] == $i) print '<td align="right">'.price($totalarray['totalopp'], 1, $langs, 1, -1, -1).'</td>';
|
elseif ($totalarray['totaloppfield'] == $i) print '<td align="right">'.price($totalarray['totalopp'], 1, $langs, 1, -1, -1).'</td>';
|
||||||
elseif ($totalarray['totalbudgetfield'] == $i) print '<td align="right">'.price($totalarray['totalbudget'], 1, $langs, 1, -1, -1).'</td>';
|
elseif ($totalarray['totalbudgetfield'] == $i) print '<td align="right">'.price($totalarray['totalbudget'], 1, $langs, 1, -1, -1).'</td>';
|
||||||
|
|||||||
@ -447,13 +447,13 @@ if ($id > 0 || ! empty($ref))
|
|||||||
print '<tr class="oddeven" valign="top">';
|
print '<tr class="oddeven" valign="top">';
|
||||||
|
|
||||||
// Source
|
// Source
|
||||||
print '<td align="left">';
|
print '<td class="left">';
|
||||||
if ($tab[$i]['source']=='internal') print $langs->trans("User");
|
if ($tab[$i]['source']=='internal') print $langs->trans("User");
|
||||||
if ($tab[$i]['source']=='external') print $langs->trans("ThirdPartyContact");
|
if ($tab[$i]['source']=='external') print $langs->trans("ThirdPartyContact");
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
// Societe
|
// Societe
|
||||||
print '<td align="left">';
|
print '<td class="left">';
|
||||||
if ($tab[$i]['socid'] > 0)
|
if ($tab[$i]['socid'] > 0)
|
||||||
{
|
{
|
||||||
$companystatic->fetch($tab[$i]['socid']);
|
$companystatic->fetch($tab[$i]['socid']);
|
||||||
|
|||||||
@ -818,8 +818,8 @@ if (isset($totalarray['totaldurationeffectivefield']) || isset($totalarray['tota
|
|||||||
$i++;
|
$i++;
|
||||||
if ($i == 1)
|
if ($i == 1)
|
||||||
{
|
{
|
||||||
if ($num < $limit && empty($offset)) print '<td align="left">'.$langs->trans("Total").'</td>';
|
if ($num < $limit && empty($offset)) print '<td class="left">'.$langs->trans("Total").'</td>';
|
||||||
else print '<td align="left">'.$langs->trans("Totalforthispage").'</td>';
|
else print '<td class="left">'.$langs->trans("Totalforthispage").'</td>';
|
||||||
}
|
}
|
||||||
elseif ($totalarray['totalplannedworkloadfield'] == $i) print '<td align="center">'.convertSecondToTime($totalarray['totalplannedworkload'],$plannedworkloadoutputformat).'</td>';
|
elseif ($totalarray['totalplannedworkloadfield'] == $i) print '<td align="center">'.convertSecondToTime($totalarray['totalplannedworkload'],$plannedworkloadoutputformat).'</td>';
|
||||||
elseif ($totalarray['totaldurationeffectivefield'] == $i) print '<td align="center">'.convertSecondToTime($totalarray['totaldurationeffective'],$timespentoutputformat).'</td>';
|
elseif ($totalarray['totaldurationeffectivefield'] == $i) print '<td align="center">'.convertSecondToTime($totalarray['totaldurationeffective'],$timespentoutputformat).'</td>';
|
||||||
|
|||||||
@ -1105,7 +1105,7 @@ if (($id > 0 || ! empty($ref)) || $projectidforalltimes > 0)
|
|||||||
// Note
|
// Note
|
||||||
if (! empty($arrayfields['t.note']['checked']))
|
if (! empty($arrayfields['t.note']['checked']))
|
||||||
{
|
{
|
||||||
print '<td align="left">';
|
print '<td class="left">';
|
||||||
if ($action == 'editline' && $_GET['lineid'] == $task_time->rowid)
|
if ($action == 'editline' && $_GET['lineid'] == $task_time->rowid)
|
||||||
{
|
{
|
||||||
print '<textarea name="timespent_note_line" width="95%" rows="'.ROWS_2.'">'.$task_time->note.'</textarea>';
|
print '<textarea name="timespent_note_line" width="95%" rows="'.ROWS_2.'">'.$task_time->note.'</textarea>';
|
||||||
@ -1320,7 +1320,7 @@ if (($id > 0 || ! empty($ref)) || $projectidforalltimes > 0)
|
|||||||
// Note
|
// Note
|
||||||
if (! empty($arrayfields['t.note']['checked']))
|
if (! empty($arrayfields['t.note']['checked']))
|
||||||
{
|
{
|
||||||
print '<td align="left">';
|
print '<td class="left">';
|
||||||
if ($action == 'splitline' && $_GET['lineid'] == $task_time->rowid)
|
if ($action == 'splitline' && $_GET['lineid'] == $task_time->rowid)
|
||||||
{
|
{
|
||||||
print '<textarea name="timespent_note_line" width="95%" rows="'.ROWS_2.'">'.$task_time->note.'</textarea>';
|
print '<textarea name="timespent_note_line" width="95%" rows="'.ROWS_2.'">'.$task_time->note.'</textarea>';
|
||||||
@ -1468,7 +1468,7 @@ if (($id > 0 || ! empty($ref)) || $projectidforalltimes > 0)
|
|||||||
// Note
|
// Note
|
||||||
if (! empty($arrayfields['t.note']['checked']))
|
if (! empty($arrayfields['t.note']['checked']))
|
||||||
{
|
{
|
||||||
print '<td align="left">';
|
print '<td class="left">';
|
||||||
if ($action == 'splitline' && $_GET['lineid'] == $task_time->rowid)
|
if ($action == 'splitline' && $_GET['lineid'] == $task_time->rowid)
|
||||||
{
|
{
|
||||||
print '<textarea name="timespent_note_line_2" width="95%" rows="'.ROWS_2.'">'.$task_time->note.'</textarea>';
|
print '<textarea name="timespent_note_line_2" width="95%" rows="'.ROWS_2.'">'.$task_time->note.'</textarea>';
|
||||||
@ -1548,8 +1548,8 @@ if (($id > 0 || ! empty($ref)) || $projectidforalltimes > 0)
|
|||||||
$i++;
|
$i++;
|
||||||
if ($i == 1)
|
if ($i == 1)
|
||||||
{
|
{
|
||||||
if ($num < $limit && empty($offset)) print '<td align="left">'.$langs->trans("Total").'</td>';
|
if ($num < $limit && empty($offset)) print '<td class="left">'.$langs->trans("Total").'</td>';
|
||||||
else print '<td align="left">'.$langs->trans("Totalforthispage").'</td>';
|
else print '<td class="left">'.$langs->trans("Totalforthispage").'</td>';
|
||||||
}
|
}
|
||||||
elseif ($totalarray['totaldurationfield'] == $i) print '<td align="right">'.convertSecondToTime($totalarray['totalduration'],'allhourmin').'</td>';
|
elseif ($totalarray['totaldurationfield'] == $i) print '<td align="right">'.convertSecondToTime($totalarray['totalduration'],'allhourmin').'</td>';
|
||||||
elseif ($totalarray['totalvaluefield'] == $i) print '<td align="right">'.price($totalarray['totalvalue']).'</td>';
|
elseif ($totalarray['totalvaluefield'] == $i) print '<td align="right">'.price($totalarray['totalvalue']).'</td>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user