mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-16 19:40:44 +01:00
Fix minore
This commit is contained in:
parent
88c4651f8e
commit
352b97d71a
@ -33,9 +33,6 @@ echo '
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
$("#id_sede").change(function(){
|
$("#id_sede").change(function(){
|
||||||
session_set("giacenze_sedi,idsede", $(this).val(), 0);
|
session_set("giacenze_sedi,idsede", $(this).val(), 0).then(location.reload());
|
||||||
setTimeout(function(){
|
|
||||||
location.reload();
|
|
||||||
}, 500);
|
|
||||||
});
|
});
|
||||||
</script>';
|
</script>';
|
||||||
|
@ -130,7 +130,7 @@ echo '
|
|||||||
<th class="text-center" width="1%"></th>
|
<th class="text-center" width="1%"></th>
|
||||||
<th class="text-center" width="10%">'.tr('Matricola').'</th>
|
<th class="text-center" width="10%">'.tr('Matricola').'</th>
|
||||||
<th class="text-center" width="20%">'.tr('Nome').'</th>
|
<th class="text-center" width="20%">'.tr('Nome').'</th>
|
||||||
<th class="text-center" width="5%">'.tr('Data').'</th>
|
<th class="text-center" width="8%">'.tr('Data').'</th>
|
||||||
<th class="text-center">'.tr('Descrizione').'</th>
|
<th class="text-center">'.tr('Descrizione').'</th>
|
||||||
<th class="text-center" width="25%">'.tr("Componenti soggetti all'intervento").'</th>
|
<th class="text-center" width="25%">'.tr("Componenti soggetti all'intervento").'</th>
|
||||||
<th class="text-center" width="5%">Checklist</th>
|
<th class="text-center" width="5%">Checklist</th>
|
||||||
@ -147,9 +147,9 @@ echo '
|
|||||||
if (sizeof($checks)) {
|
if (sizeof($checks)) {
|
||||||
$class = '';
|
$class = '';
|
||||||
$icon = 'plus';
|
$icon = 'plus';
|
||||||
$checks_not_verified = $checks->where('checked_at', null)->first();
|
$checks_not_verified = $checks->where('checked_at', null)->count();
|
||||||
$type = sizeof($checks_not_verified) ? 'warning' : 'success';
|
$type = $checks_not_verified ? 'warning' : 'success';
|
||||||
$icon2 = sizeof($checks_not_verified) ? 'clock-o' : 'check';
|
$icon2 = $checks_not_verified ? 'clock-o' : 'check';
|
||||||
}
|
}
|
||||||
echo '
|
echo '
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user