Merge remote-tracking branch 'origin/4.0' into develop
This commit is contained in:
commit
2793cee829
@ -169,9 +169,6 @@ if ($lastUpdate)
|
||||
print '<br>'.$langs->trans("MonthOfLastMonthlyUpdate").': <strong>'.$yearLastUpdate.'-'.$monthLastUpdate.'</strong>'."\n";
|
||||
}
|
||||
else print $langs->trans('None');
|
||||
|
||||
|
||||
|
||||
print "</div><br>\n";
|
||||
|
||||
$result = $holiday->updateBalance(); // Create users into table holiday if they don't exists. TODO Remove this whif we use field into table user.
|
||||
|
||||
@ -60,7 +60,14 @@ $log_holiday = $cp->fetchLog('ORDER BY cpl.rowid DESC', " AND date_action BETWEE
|
||||
print load_fiche_titre($langs->trans('LogCP'), '<div class="pagination"><ul><li class="pagination"><a href="'.$_SERVER["PHP_SELF"].'?year='.($year-1).'"><</a><li class="pagination"><a href="">'.$langs->trans("Year").' '.$year.'</a></li><li class="pagination"><a href="'.$_SERVER["PHP_SELF"].'?year='.($year+1).'">></a></li></lu></div>', 'title_hrm.png');
|
||||
|
||||
print '<div class="info">'.$langs->trans('LastUpdateCP').': '."\n";
|
||||
if ($cp->getConfCP('lastUpdate')) print '<strong>'.dol_print_date($db->jdate($cp->getConfCP('lastUpdate')),'dayhour','tzuser').'</strong>';
|
||||
$lastUpdate = $cp->getConfCP('lastUpdate');
|
||||
if ($lastUpdate)
|
||||
{
|
||||
$monthLastUpdate = $lastUpdate[4].$lastUpdate[5];
|
||||
$yearLastUpdate = $lastUpdate[0].$lastUpdate[1].$lastUpdate[2].$lastUpdate[3];
|
||||
print '<strong>'.dol_print_date($db->jdate($cp->getConfCP('lastUpdate')),'dayhour','tzuser').'</strong>';
|
||||
print '<br>'.$langs->trans("MonthOfLastMonthlyUpdate").': <strong>'.$yearLastUpdate.'-'.$monthLastUpdate.'</strong>'."\n";
|
||||
}
|
||||
else print $langs->trans('None');
|
||||
print "</div><br>\n";
|
||||
|
||||
@ -108,8 +115,8 @@ foreach($cp->logs as $logs_CP)
|
||||
|
||||
if ($log_holiday == '2')
|
||||
{
|
||||
print '<tr>';
|
||||
print '<td colspan="8" '.$bc[false].'>'.$langs->trans('None').'</td>';
|
||||
print '<tr '.$bc[false].'>';
|
||||
print '<td colspan="8" class="opacitymedium">'.$langs->trans('NoRecordFound').'</td>';
|
||||
print '</tr>';
|
||||
}
|
||||
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 254 B After Width: | Height: | Size: 399 B |
Binary file not shown.
|
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 679 B |
Binary file not shown.
|
Before Width: | Height: | Size: 107 B After Width: | Height: | Size: 410 B |
@ -752,7 +752,7 @@ td.showDragHandle {
|
||||
margin-left: 0;
|
||||
}
|
||||
div.login_block {
|
||||
border-right: none ! important;
|
||||
/* border-right: none ! important; */
|
||||
top: inherit !important;
|
||||
}
|
||||
.side-nav {
|
||||
@ -777,6 +777,7 @@ div.login_block {
|
||||
#id-left {
|
||||
z-index: 201;
|
||||
background: #FFF;
|
||||
border-right: 1px solid rgba(0,0,0,0.3);
|
||||
<?php if ((GETPOST('testmenuhider') || ! empty($conf->global->MAIN_TESTMENUHIDER)) && empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) { ?>
|
||||
top: 50px ! important;
|
||||
<?php } else { ?>
|
||||
@ -2670,7 +2671,7 @@ div.tabBar .noborder {
|
||||
<?php } ?>
|
||||
}
|
||||
span.boxstatstext {
|
||||
opacity: 0.9;
|
||||
/* opacity: 0.9; Disabled. This make text on top of left menu in smartphone size */
|
||||
line-height: 18px;
|
||||
}
|
||||
span.boxstatsindicator {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user