Avviso per sessioni di lavoro con ore a zero
consuntivi preventivi, contratti e ordini
This commit is contained in:
parent
901b146360
commit
c8de719f47
|
@ -57,7 +57,7 @@ if (!empty($interventi)) {
|
|||
</td>
|
||||
|
||||
<td class="text-right">
|
||||
'.numberFormat($intervento->ore_totali).'
|
||||
'.($intervento->ore_totali<=0 ? '<i class="fa fa-warning tip" style="position:relative;margin-left:-16px;" title="'.tr("Questa sessione è vuota").'" ></i> ': '' ).numberFormat($intervento->ore_totali).'
|
||||
</td>
|
||||
|
||||
<td class="text-right">
|
||||
|
|
|
@ -125,8 +125,7 @@ if (!empty($sessioni)) {
|
|||
|
||||
// ORE
|
||||
echo '
|
||||
<td style="border-right:1px solid #aaa;">'.($ore<=0 ? '<i class="fa fa-warning tip" title="'.tr("Questa sessione è vuota").'" ></i>': '' ).'
|
||||
'.Translator::numberToLocale($ore).'
|
||||
<td style="border-right:1px solid #aaa;">'.($ore<=0 ? '<i class="fa fa-warning tip" style="position:relative;margin-left:-16px;" title="'.tr("Questa sessione è vuota").'" ></i>': '' ).' '.Translator::numberToLocale($ore).'
|
||||
|
||||
<div class="extra hide">
|
||||
<table class="table table-condensed table-bordered">
|
||||
|
|
|
@ -54,9 +54,10 @@ if (!empty($interventi)) {
|
|||
</td>
|
||||
|
||||
<td class="text-right">
|
||||
'.numberFormat($intervento->ore_totali).'
|
||||
'.($intervento->ore_totali<=0 ? '<i class="fa fa-warning tip" style="position:relative;margin-left:-16px;" title="'.tr("Questa sessione è vuota").'" ></i> ': '' ).numberFormat($intervento->ore_totali).'
|
||||
</td>
|
||||
|
||||
|
||||
<td class="text-right">
|
||||
'.numberFormat($intervento->km_totali).'
|
||||
</td>
|
||||
|
|
|
@ -54,7 +54,7 @@ if (!empty($interventi)) {
|
|||
</td>
|
||||
|
||||
<td class="text-right">
|
||||
'.numberFormat($intervento->ore_totali).'
|
||||
'.($intervento->ore_totali<=0 ? '<i class="fa fa-warning tip" style="position:relative;margin-left:-16px;" title="'.tr("Questa sessione è vuota").'" ></i> ': '' ).numberFormat($intervento->ore_totali).'
|
||||
</td>
|
||||
|
||||
<td class="text-right">
|
||||
|
|
Loading…
Reference in New Issue