Formattazione codice
This commit is contained in:
parent
37cf4bbd2c
commit
99ef5ec700
26
editor.php
26
editor.php
|
@ -174,14 +174,14 @@ if (empty($record) || !$has_access) {
|
||||||
|
|
||||||
<div class="float-right d-none d-sm-inline">';
|
<div class="float-right d-none d-sm-inline">';
|
||||||
|
|
||||||
// Pulsanti personalizzati
|
// Pulsanti personalizzati
|
||||||
$buttons = $structure->filepath('buttons.php');
|
$buttons = $structure->filepath('buttons.php');
|
||||||
|
|
||||||
if (!empty($buttons)) {
|
if (!empty($buttons)) {
|
||||||
include $buttons;
|
include $buttons;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
{( "name": "button", "type": "print", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}
|
{( "name": "button", "type": "print", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}
|
||||||
|
|
||||||
{( "name": "button", "type": "email", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}';
|
{( "name": "button", "type": "email", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}';
|
||||||
|
@ -338,14 +338,14 @@ if (empty($record) || !$has_access) {
|
||||||
echo '
|
echo '
|
||||||
<div id="tab_info" class="tab-pane">';
|
<div id="tab_info" class="tab-pane">';
|
||||||
|
|
||||||
// Eventuale header personalizzato
|
// Eventuale header personalizzato
|
||||||
if ($module_header_html) {
|
if ($module_header_html) {
|
||||||
echo '<div class="module-header">';
|
echo '<div class="module-header">';
|
||||||
echo $module_header_html;
|
echo $module_header_html;
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="timeline">';
|
<div class="timeline">';
|
||||||
|
|
||||||
$operations = $dbo->fetchArray('SELECT `zz_operations`.*, `zz_users`.`username` FROM `zz_operations` LEFT JOIN `zz_users` ON `zz_operations`.`id_utente` = `zz_users`.`id` WHERE id_module = '.prepare($id_module).' AND id_record = '.prepare($id_record).' ORDER BY `created_at` DESC LIMIT 200');
|
$operations = $dbo->fetchArray('SELECT `zz_operations`.*, `zz_users`.`username` FROM `zz_operations` LEFT JOIN `zz_users` ON `zz_operations`.`id_utente` = `zz_users`.`id` WHERE id_module = '.prepare($id_module).' AND id_record = '.prepare($id_record).' ORDER BY `created_at` DESC LIMIT 200');
|
||||||
|
|
|
@ -41,7 +41,6 @@ echo '
|
||||||
<i class="fa fa-'.(!empty($info_firma) ? 'refresh' : 'desktop').'"></i> '.$frase.'...
|
<i class="fa fa-'.(!empty($info_firma) ? 'refresh' : 'desktop').'"></i> '.$frase.'...
|
||||||
</button>';
|
</button>';
|
||||||
|
|
||||||
|
|
||||||
// TODO: da standardizzare in struttura per tutti i moduli di tipo table
|
// 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.'">
|
/*<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').'
|
<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'].'" ]}
|
{[ "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>
|
||||||
<div class="col-md-3">
|
<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>
|
||||||
</div>
|
</div>
|
||||||
<!-- RIGA 5 -->
|
<!-- RIGA 5 -->
|
||||||
|
|
|
@ -139,15 +139,15 @@ echo '
|
||||||
$show_prezzi = Auth::user()['gruppo'] != 'Tecnici' || (Auth::user()['gruppo'] == 'Tecnici' && setting('Mostra i prezzi al tecnico'));
|
$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');
|
$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 '
|
echo '
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<div class="card card-info card-outline shadow">
|
<div class="card card-info card-outline shadow">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<h3 class="card-title"><i class="fa fa-wrench"></i> '.tr('Attività _NUM_ del _DATA_', [
|
<h3 class="card-title"><i class="fa fa-wrench"></i> '.tr('Attività _NUM_ del _DATA_', [
|
||||||
'_NUM_' => $intervento->codice,
|
'_NUM_' => $intervento->codice,
|
||||||
'_DATA_' => Translator::dateToLocale($intervento->data_richiesta)
|
'_DATA_' => Translator::dateToLocale($intervento->data_richiesta),
|
||||||
]).'</h3>
|
]).'</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p>
|
<p>
|
||||||
|
@ -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="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="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="separator">|</span>
|
||||||
|
|
||||||
<span class="round-16" style="background-color:'.$stato->colore.';"></span> '.$stato->getTranslation('title').'
|
<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'];
|
$data_sollecito_1 = $has_inviata['sent_at'];
|
||||||
$id_template = $template_1;
|
$id_template = $template_1;
|
||||||
if (!$has_inviata) {
|
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 {
|
} 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']));
|
$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'];
|
$data_sollecito_2 = $has_inviata['sent_at'];
|
||||||
|
|
|
@ -33,7 +33,7 @@ echo '
|
||||||
$start = $_SESSION['period_start'];
|
$start = $_SESSION['period_start'];
|
||||||
$end = $_SESSION['period_end'];
|
$end = $_SESSION['period_end'];
|
||||||
|
|
||||||
$translated_months = [ tr('Gennaio'), tr('Febbraio'), tr('Marzo'), tr('Aprile'), tr('Maggio'), tr('Giugno'), tr('Luglio'), tr('Agosto'), tr('Settembre'), tr('Ottobre'), tr('Novembre'), tr('Dicembre') ];
|
$translated_months = [tr('Gennaio'), tr('Febbraio'), tr('Marzo'), tr('Aprile'), tr('Maggio'), tr('Giugno'), tr('Luglio'), tr('Agosto'), tr('Settembre'), tr('Ottobre'), tr('Novembre'), tr('Dicembre')];
|
||||||
|
|
||||||
// Fatturato
|
// Fatturato
|
||||||
echo '
|
echo '
|
||||||
|
@ -414,7 +414,7 @@ echo '
|
||||||
echo '
|
echo '
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var translatedMonths = ' . json_encode($translated_months) . ';
|
var translatedMonths = '.json_encode($translated_months).';
|
||||||
|
|
||||||
new Chart(document.getElementById("interventi_n_tipologia").getContext("2d"), {
|
new Chart(document.getElementById("interventi_n_tipologia").getContext("2d"), {
|
||||||
type: "bar",
|
type: "bar",
|
||||||
|
@ -470,7 +470,7 @@ echo '
|
||||||
echo '
|
echo '
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var translatedMonths = ' . json_encode($translated_months) . ';
|
var translatedMonths = '.json_encode($translated_months).';
|
||||||
new Chart(document.getElementById("interventi_ore_tipologia").getContext("2d"), {
|
new Chart(document.getElementById("interventi_ore_tipologia").getContext("2d"), {
|
||||||
type: "bar",
|
type: "bar",
|
||||||
data: {
|
data: {
|
||||||
|
@ -561,7 +561,7 @@ echo '
|
||||||
echo '
|
echo '
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var translatedMonths = ' . json_encode($translated_months) . ';
|
var translatedMonths = '.json_encode($translated_months).';
|
||||||
|
|
||||||
new Chart(document.getElementById("sessioni").getContext("2d"), {
|
new Chart(document.getElementById("sessioni").getContext("2d"), {
|
||||||
type: "bar",
|
type: "bar",
|
||||||
|
@ -729,7 +729,7 @@ echo '
|
||||||
echo '
|
echo '
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var translatedMonths = ' . json_encode($translated_months) . ';
|
var translatedMonths = '.json_encode($translated_months).';
|
||||||
|
|
||||||
new Chart(document.getElementById("n_anagrafiche").getContext("2d"), {
|
new Chart(document.getElementById("n_anagrafiche").getContext("2d"), {
|
||||||
type: "line",
|
type: "line",
|
||||||
|
|
|
@ -40,7 +40,6 @@ if ($tipo_documento == 'ordine') {
|
||||||
$righe_utilizzate = get('righe_ddt');
|
$righe_utilizzate = get('righe_ddt');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
|
@ -66,7 +65,7 @@ echo '
|
||||||
$id_riferimento = get('id_riferimento');
|
$id_riferimento = get('id_riferimento');
|
||||||
$righe = $documento->getRighe();
|
$righe = $documento->getRighe();
|
||||||
foreach ($righe as $riga) {
|
foreach ($righe as $riga) {
|
||||||
$qta_rimanente = $riga->qta_rimanente - (float)$righe_utilizzate[$riga->id];
|
$qta_rimanente = $riga->qta_rimanente - (float) $righe_utilizzate[$riga->id];
|
||||||
$riga_origine = $riga->getOriginalComponent();
|
$riga_origine = $riga->getOriginalComponent();
|
||||||
|
|
||||||
if (!empty($riga->idarticolo)) {
|
if (!empty($riga->idarticolo)) {
|
||||||
|
|
Loading…
Reference in New Issue