Formattazione codice
This commit is contained in:
parent
37cf4bbd2c
commit
99ef5ec700
|
@ -41,7 +41,6 @@ echo '
|
|||
<i class="fa fa-'.(!empty($info_firma) ? 'refresh' : 'desktop').'"></i> '.$frase.'...
|
||||
</button>';
|
||||
|
||||
|
||||
// TODO: da standardizzare in struttura per tutti i moduli di tipo table
|
||||
/*<a class="btn btn-info'.($prev ? '' : ' disabled').'" href="'.base_path().'/editor.php?id_module=3&id_record='.$prev.'">
|
||||
<i class="fa fa-arrow-circle-left"></i> '.tr('Precedente').'
|
||||
|
|
|
@ -209,7 +209,7 @@ echo '
|
|||
{[ "type": "select", "label": "'.tr('Sede destinazione').'", "name": "idsede_destinazione","value": "$idsede_destinazione$", "ajax-source": "sedi", "select-options": '.json_encode(['idanagrafica' => $record['idanagrafica']]).', "placeholder": "'.tr('Sede legale').'", "readonly": "'.$record['flag_completato'].'" ]}
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
{[ "type": "select", "label": "'.tr('Tags').'", "multiple": "1", "name": "tags[]", "values": "query=SELECT `id`, `name` as descrizione FROM `in_tags` ORDER BY `name`", "value": "'.implode(',', $tags).'", "icon-after": "add|'.(Module::where('name', 'Tags')->first()->id).'|" ]}
|
||||
{[ "type": "select", "label": "'.tr('Tags').'", "multiple": "1", "name": "tags[]", "values": "query=SELECT `id`, `name` as descrizione FROM `in_tags` ORDER BY `name`", "value": "'.implode(',', $tags).'", "icon-after": "add|'.Module::where('name', 'Tags')->first()->id.'|" ]}
|
||||
</div>
|
||||
</div>
|
||||
<!-- RIGA 5 -->
|
||||
|
|
|
@ -139,14 +139,14 @@ echo '
|
|||
$show_prezzi = Auth::user()['gruppo'] != 'Tecnici' || (Auth::user()['gruppo'] == 'Tecnici' && setting('Mostra i prezzi al tecnico'));
|
||||
$prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
|
||||
|
||||
$stato = \Modules\Interventi\Stato::find($intervento->stato->id);
|
||||
$stato = Modules\Interventi\Stato::find($intervento->stato->id);
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
<div class="card card-info card-outline shadow">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><i class="fa fa-wrench"></i> '.tr('Attività _NUM_ del _DATA_', [
|
||||
'_NUM_' => $intervento->codice,
|
||||
'_DATA_' => Translator::dateToLocale($intervento->data_richiesta)
|
||||
'_DATA_' => Translator::dateToLocale($intervento->data_richiesta),
|
||||
]).'</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
@ -160,7 +160,7 @@ echo '
|
|||
<span class="tip" title="'.tr('Numero di km percorsi').'"><i class="fa fa-truck text-gray"></i> '.Translator::numberToLocale($intervento->sessioni->sum('km')).' '.tr('km').'</span>
|
||||
<span class="separator">|</span>
|
||||
|
||||
<span class="tip" title="'.tr('Importo totale del lavoro').'"><i class="fa fa-money text-gray"></i> '.($show_prezzi ? moneyFormat(($prezzi_ivati ? $intervento->totale : $intervento->totale_imponibile), 2) : '-').'</span>
|
||||
<span class="tip" title="'.tr('Importo totale del lavoro').'"><i class="fa fa-money text-gray"></i> '.($show_prezzi ? moneyFormat($prezzi_ivati ? $intervento->totale : $intervento->totale_imponibile, 2) : '-').'</span>
|
||||
<span class="separator">|</span>
|
||||
|
||||
<span class="round-16" style="background-color:'.$stato->colore.';"></span> '.$stato->getTranslation('title').'
|
||||
|
|
|
@ -159,7 +159,7 @@ class SollecitoTask extends Manager
|
|||
$data_sollecito_1 = $has_inviata['sent_at'];
|
||||
$id_template = $template_1;
|
||||
if (!$has_inviata) {
|
||||
$da_inviare = date('Y-m-d', strtotime($r['scadenza'].' + '.($giorni_scadenza).' days')) < date('Y-m-d') ? true : false;
|
||||
$da_inviare = date('Y-m-d', strtotime($r['scadenza'].' + '.$giorni_scadenza.' days')) < date('Y-m-d') ? true : false;
|
||||
} else {
|
||||
$has_inviata = database()->fetchOne('SELECT * FROM em_emails WHERE sent_at IS NOT NULL AND id_template='.prepare($template_2).' AND id_record='.prepare($r['id']));
|
||||
$data_sollecito_2 = $has_inviata['sent_at'];
|
||||
|
|
|
@ -40,7 +40,6 @@ if ($tipo_documento == 'ordine') {
|
|||
$righe_utilizzate = get('righe_ddt');
|
||||
}
|
||||
|
||||
|
||||
echo '
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
|
|
Loading…
Reference in New Issue