Compare commits
2 Commits
078f319898
...
b110f2bc3b
Author | SHA1 | Date |
---|---|---|
valentina | b110f2bc3b | |
valentina | dc0aeb4494 |
|
@ -1,148 +0,0 @@
|
|||
<?php
|
||||
/*
|
||||
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
||||
* Copyright (C) DevCode s.r.l.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Models\Module;
|
||||
use Models\Upload;
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
use Modules\Anagrafiche\Sede;
|
||||
use Modules\Interventi\Intervento;
|
||||
use Modules\Ordini\Ordine;
|
||||
use Modules\Preventivi\Preventivo;
|
||||
use Modules\Scadenzario\Scadenza;
|
||||
|
||||
// Anagrafica
|
||||
$anagrafica = $contratto->anagrafica;
|
||||
|
||||
// Sede
|
||||
if ($intervento->idsede_destinazione) {
|
||||
$sede = $dbo->selectOne('an_sedi', '*', ['id' => $intervento->idsede_destinazione]);
|
||||
} else {
|
||||
$sede = $anagrafica->toArray();
|
||||
}
|
||||
|
||||
// Referente
|
||||
$referente = null;
|
||||
if ($contratto->idreferente) {
|
||||
$referente = $dbo->selectOne('an_referenti', '*', ['id' => $contratto->idreferente]);
|
||||
}
|
||||
|
||||
// Preventivo
|
||||
$preventivo = null;
|
||||
if ($contratto->id_preventivo) {
|
||||
$preventivo = Preventivo::find($contratto->id_preventivo);
|
||||
}
|
||||
|
||||
// Ordine
|
||||
$ordine = null;
|
||||
if ($contratto->id_ordine) {
|
||||
$ordine = Ordine::find($contratto->id_ordine);
|
||||
}
|
||||
|
||||
// Altre attività
|
||||
$interventi_programmati = Intervento::select('in_interventi.*')
|
||||
->join('in_statiintervento', 'in_interventi.idstatointervento', '=', 'in_statiintervento.id')
|
||||
->where('idanagrafica', $intervento->idanagrafica)
|
||||
->where('idsede_destinazione', $intervento->idsede_destinazione)
|
||||
->where('is_completato', '!=', 1)
|
||||
->where('in_interventi.id', '!=', $id_record)
|
||||
->get();
|
||||
|
||||
// Insoluti
|
||||
$insoluti = Scadenza::where('idanagrafica', $contratto->idanagrafica)
|
||||
->whereRaw('co_scadenziario.da_pagare > co_scadenziario.pagato')
|
||||
->whereRaw('co_scadenziario.scadenza < NOW()')
|
||||
->count();
|
||||
|
||||
// Logo
|
||||
$logo = Upload::where('id_module', Module::where('name', 'Anagrafiche')->first()->id)->where('id_record', $contratto->idanagrafica)->where('name', 'Logo azienda')->first()->filename;
|
||||
|
||||
$logo = $logo ? base_path().'/files/anagrafiche/'.$logo : App::getPaths()['img'].'/logo_header.png';
|
||||
|
||||
echo '
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-md-1">
|
||||
<img src="'.$logo.'" class="img-fluid">
|
||||
</div>';
|
||||
|
||||
// Cliente
|
||||
echo '
|
||||
<div class="col-md-3">
|
||||
<h4 style="margin:4px 0;"><b>'.$anagrafica->ragione_sociale.'</b></h4>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['nomesede'] ? $sede['nomesede'].'<br>' : '').'
|
||||
'.$sede['indirizzo'].'<br>
|
||||
'.$sede['cap'].' - '.$sede['citta'].' ('.$sede['provincia'].')
|
||||
</p>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$sede['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$sede['telefono'].'</a>' : '').'
|
||||
'.($sede['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$sede['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$sede['email'].'</a>' : '').'
|
||||
'.($referente['nome'] ? '<p></p><i class="fa fa-user-o text-muted"></i> '.$referente['nome'].'<br>' : '').'
|
||||
'.($referente['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$referente['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$referente['telefono'].'</a>' : '').'
|
||||
'.($referente['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$referente['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$referente['email'].'</a>' : '').'
|
||||
</p>
|
||||
</div>';
|
||||
|
||||
// Panoramica
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
<div class="card card-info">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><i class="fa fa-map"></i> '.tr('Panoramica contratto num. ').$contratto->numero.'</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<p style="margin:3px 0;"><i class="fa fa-'.($insoluti ? 'warning text-danger' : 'check text-success').'"></i>
|
||||
'.($insoluti ? tr('Sono presenti insoluti') : tr('Non sono presenti insoluti')).'
|
||||
</p>
|
||||
|
||||
<p style="margin:3px 0;"><i class="fa '.(count($interventi_programmati) == 0 ? 'fa-clock-o text-success' : 'fa-clock-o text-warning').'"></i> '.(count($interventi_programmati) == 0 ? tr('Non sono presenti attività programmate') : 'Attività aperte:');
|
||||
if (count($interventi_programmati) != 0) {
|
||||
foreach ($interventi_programmati as $intervento_programmato) {
|
||||
echo ' <a class="btn btn-default btn-xs" href="'.base_path().'/editor.php?id_module='.Modules::get('Interventi')['id'].'&id_record='.$intervento_programmato->id.'" target="_blank">'.$intervento_programmato->codice.' ('.(new Carbon($intervento_programmato->data_richiesta))->diffForHumans().')</a>';
|
||||
}
|
||||
}
|
||||
echo '
|
||||
</p>';
|
||||
|
||||
// Preventivo
|
||||
if ($preventivo) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Preventivi', $preventivo->id, tr('Preventivo num. _NUM_ del _DATA_', ['_NUM_' => $preventivo->numero, '_DATA_' => Translator::dateToLocale($preventivo->data_bozza)])).'
|
||||
</p>';
|
||||
}
|
||||
|
||||
// Ordine
|
||||
if ($ordine) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Ordini cliente', $ordine->id, tr('Ordine num. _NUM_ del _DATA_', ['_NUM_' => $ordine->numero, '_DATA_' => Translator::dateToLocale($ordine->data)])).'
|
||||
</p>';
|
||||
}
|
||||
echo '
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>';
|
|
@ -1,164 +0,0 @@
|
|||
<?php
|
||||
/*
|
||||
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
||||
* Copyright (C) DevCode s.r.l.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
use Models\Module;
|
||||
use Models\Upload;
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
use Modules\Anagrafiche\Sede;
|
||||
use Modules\Contratti\Contratto;
|
||||
use Modules\Ordini\Ordine;
|
||||
use Modules\Preventivi\Preventivo;
|
||||
use Modules\Scadenzario\Scadenza;
|
||||
|
||||
// Anagrafica
|
||||
$anagrafica = $ddt->anagrafica;
|
||||
|
||||
// Sede
|
||||
if ($ddt->idsede_destinazione) {
|
||||
$sede = $dbo->selectOne('an_sedi', '*', ['id' => $ddt->idsede_destinazione]);
|
||||
} else {
|
||||
$sede = $anagrafica->toArray();
|
||||
}
|
||||
|
||||
// Referente
|
||||
$referente = null;
|
||||
if ($ddt->idreferente) {
|
||||
$referente = $dbo->selectOne('an_referenti', '*', ['id' => $ddt->idreferente]);
|
||||
}
|
||||
|
||||
// Contratto
|
||||
$contratto = null;
|
||||
$ore_erogate = 0;
|
||||
$ore_previste = 0;
|
||||
$perc_ore = 0;
|
||||
$color = 'danger';
|
||||
if ($ddt->id_contratto) {
|
||||
$contratto = Contratto::find($ddt->id_contratto);
|
||||
$ore_erogate = $contratto->interventi->sum('ore_totali');
|
||||
$ore_previste = $contratto->getRighe()->where('um', 'ore')->sum('qta');
|
||||
$perc_ore = $ore_previste != 0 ? ($ore_erogate * 100) / $ore_previste : 0;
|
||||
if ($perc_ore < 75) {
|
||||
$color = 'success';
|
||||
} elseif ($perc_ore <= 100) {
|
||||
$color = 'warning';
|
||||
}
|
||||
}
|
||||
|
||||
// Preventivo
|
||||
$preventivo = null;
|
||||
if ($ddt->id_preventivo) {
|
||||
$preventivo = Preventivo::find($ddt->id_preventivo);
|
||||
}
|
||||
|
||||
// Ordine
|
||||
$ordine = null;
|
||||
if ($ddt->id_ordine) {
|
||||
$ordine = Ordine::find($ddt->id_ordine);
|
||||
}
|
||||
|
||||
// Insoluti
|
||||
$insoluti = Scadenza::where('idanagrafica', $ddt->idanagrafica)
|
||||
->whereRaw('co_scadenziario.da_pagare > co_scadenziario.pagato')
|
||||
->whereRaw('co_scadenziario.scadenza < NOW()')
|
||||
->count();
|
||||
|
||||
// Logo
|
||||
$logo = Upload::where('id_module', Module::where('name', 'Anagrafiche')->first()->id)->where('id_record', $ddt->idanagrafica)->where('name', 'Logo azienda')->first()->filename;
|
||||
|
||||
$logo = $logo ? base_path().'/files/anagrafiche/'.$logo : App::getPaths()['img'].'/logo_header.png';
|
||||
|
||||
echo '
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-md-1">
|
||||
<img src="'.$logo.'" class="img-fluid">
|
||||
</div>';
|
||||
|
||||
// Cliente
|
||||
echo '
|
||||
<div class="col-md-3">
|
||||
<h4 style="margin:4px 0;"><b>'.$anagrafica->ragione_sociale.'</b></h4>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['nomesede'] ? $sede['nomesede'].'<br>' : '').'
|
||||
'.$sede['indirizzo'].'<br>
|
||||
'.$sede['cap'].' - '.$sede['citta'].' ('.$sede['provincia'].')
|
||||
</p>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$sede['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$sede['telefono'].'</a>' : '').'
|
||||
'.($sede['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$sede['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$sede['email'].'</a>' : '').'
|
||||
'.($referente['nome'] ? '<p></p><i class="fa fa-user-o text-muted"></i> '.$referente['nome'].'<br>' : '').'
|
||||
'.($referente['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$referente['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$referente['telefono'].'</a>' : '').'
|
||||
'.($referente['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$referente['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$referente['email'].'</a>' : '').'
|
||||
</p>
|
||||
</div>';
|
||||
|
||||
// Panoramica
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
<div class="card card-info">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><i class="fa fa-map"></i> '.tr('Panoramica ddt num. ').$ddt->codice.'</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<p style="margin:3px 0;"><i class="fa fa-'.($insoluti ? 'warning text-danger' : 'check text-success').'"></i>
|
||||
'.($insoluti ? tr('Sono presenti insoluti') : tr('Non sono presenti insoluti')).'
|
||||
</p>';
|
||||
|
||||
// Contratto
|
||||
if ($contratto) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Contratti', $contratto->id, tr('Contratto num. _NUM_ del _DATA_', ['_NUM_' => $contratto->numero, '_DATA_' => Translator::dateToLocale($contratto->data_bozza)]));
|
||||
if ($ore_previste > 0) {
|
||||
echo '
|
||||
- '.$ore_erogate.'/'.$ore_previste.' '.tr('ore').'<br>
|
||||
|
||||
<div class="progress" style="margin:0; height:8px;">
|
||||
<div class="progress-bar progress-bar-'.$color.'" style="width:'.$perc_ore.'%"></div>
|
||||
</div>';
|
||||
}
|
||||
echo '
|
||||
</p>';
|
||||
}
|
||||
|
||||
// Preventivo
|
||||
if ($preventivo) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Preventivi', $preventivo->id, tr('Preventivo num. _NUM_ del _DATA_', ['_NUM_' => $preventivo->numero, '_DATA_' => Translator::dateToLocale($preventivo->data_bozza)])).'
|
||||
</p>';
|
||||
}
|
||||
|
||||
// Ordine
|
||||
if ($ordine) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Ordini cliente', $ordine->id, tr('Ordine num. _NUM_ del _DATA_', ['_NUM_' => $ordine->numero, '_DATA_' => Translator::dateToLocale($ordine->data)])).'
|
||||
</p>';
|
||||
}
|
||||
echo '
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>';
|
|
@ -1,183 +0,0 @@
|
|||
<?php
|
||||
/*
|
||||
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
||||
* Copyright (C) DevCode s.r.l.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Models\Module;
|
||||
use Models\Upload;
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
use Modules\Anagrafiche\Sede;
|
||||
use Modules\Contratti\Contratto;
|
||||
use Modules\Interventi\Intervento;
|
||||
use Modules\Ordini\Ordine;
|
||||
use Modules\Preventivi\Preventivo;
|
||||
use Modules\Scadenzario\Scadenza;
|
||||
|
||||
// Anagrafica
|
||||
$anagrafica = $fattura->anagrafica;
|
||||
|
||||
// Sede
|
||||
if ($fattura->idsede_destinazione) {
|
||||
$sede = $dbo->selectOne('an_sedi', '*', ['id' => $fattura->idsede_destinazione]);
|
||||
} else {
|
||||
$sede = $anagrafica->toArray();
|
||||
}
|
||||
|
||||
// Referente
|
||||
$referente = null;
|
||||
if ($fattura->idreferente) {
|
||||
$referente = $dbo->selectOne('an_referenti', '*', ['id' => $fattura->idreferente]);
|
||||
}
|
||||
|
||||
// Contratto
|
||||
$contratto = null;
|
||||
$ore_erogate = 0;
|
||||
$ore_previste = 0;
|
||||
$perc_ore = 0;
|
||||
$color = 'danger';
|
||||
if ($fattura->id_contratto) {
|
||||
$contratto = Contratto::find($fattura->id_contratto);
|
||||
$ore_erogate = $contratto->interventi->sum('ore_totali');
|
||||
$ore_previste = $contratto->getRighe()->where('um', 'ore')->sum('qta');
|
||||
$perc_ore = $ore_previste != 0 ? ($ore_erogate * 100) / $ore_previste : 0;
|
||||
if ($perc_ore < 75) {
|
||||
$color = 'success';
|
||||
} elseif ($perc_ore <= 100) {
|
||||
$color = 'warning';
|
||||
}
|
||||
}
|
||||
|
||||
// Preventivo
|
||||
$preventivo = null;
|
||||
if ($fattura->id_preventivo) {
|
||||
$preventivo = Preventivo::find($fattura->id_preventivo);
|
||||
}
|
||||
|
||||
// Ordine
|
||||
$ordine = null;
|
||||
if ($fattura->id_ordine) {
|
||||
$ordine = Ordine::find($fattura->id_ordine);
|
||||
}
|
||||
|
||||
// Attività
|
||||
$interventi_programmati = Intervento::select('in_interventi.*')
|
||||
->join('in_statiintervento', 'in_interventi.idstatointervento', '=', 'in_statiintervento.id')
|
||||
->where('idanagrafica', $intervento->idanagrafica)
|
||||
->where('idsede_destinazione', $intervento->idsede_destinazione)
|
||||
->where('is_completato', '!=', 1)
|
||||
->where('in_interventi.id', '!=', $id_record)
|
||||
->get();
|
||||
|
||||
// Insoluti
|
||||
$insoluti = Scadenza::where('idanagrafica', $fattura->idanagrafica)
|
||||
->whereRaw('co_scadenziario.da_pagare > co_scadenziario.pagato')
|
||||
->whereRaw('co_scadenziario.scadenza < NOW()')
|
||||
->count();
|
||||
|
||||
// Logo
|
||||
$logo = Upload::where('id_module', Module::where('name', 'Anagrafiche')->first()->id)->where('id_record', $fattura->idanagrafica)->where('name', 'Logo azienda')->first()->filename;
|
||||
|
||||
$logo = $logo ? base_path().'/files/anagrafiche/'.$logo : App::getPaths()['img'].'/logo_header.png';
|
||||
|
||||
echo '
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-md-1">
|
||||
<img src="'.$logo.'" class="img-fluid">
|
||||
</div>';
|
||||
|
||||
// Cliente
|
||||
echo '
|
||||
<div class="col-md-3">
|
||||
<h4 style="margin:4px 0;"><b>'.$anagrafica->ragione_sociale.'</b></h4>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['nomesede'] ? $sede['nomesede'].'<br>' : '').'
|
||||
'.$sede['indirizzo'].'<br>
|
||||
'.$sede['cap'].' - '.$sede['citta'].' ('.$sede['provincia'].')
|
||||
</p>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$sede['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$sede['telefono'].'</a>' : '').'
|
||||
'.($sede['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$sede['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$sede['email'].'</a>' : '').'
|
||||
'.($referente['nome'] ? '<p></p><i class="fa fa-user-o text-muted"></i> '.$referente['nome'].'<br>' : '').'
|
||||
'.($referente['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$referente['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$referente['telefono'].'</a>' : '').'
|
||||
'.($referente['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$referente['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$referente['email'].'</a>' : '').'
|
||||
</p>
|
||||
</div>';
|
||||
|
||||
// Panoramica
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
<div class="card card-info">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><i class="fa fa-map"></i> '.tr('Panoramica fattura num. ').$fattura->numero_esterno.'</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<p style="margin:3px 0;"><i class="fa fa-'.($insoluti ? 'warning text-danger' : 'check text-success').'"></i>
|
||||
'.($insoluti ? tr('Sono presenti insoluti') : tr('Non sono presenti insoluti')).'
|
||||
</p>
|
||||
|
||||
<p style="margin:3px 0;"><i class="fa '.(count($interventi_programmati) == 0 ? 'fa-clock-o text-success' : 'fa-clock-o text-warning').'"></i> '.(count($interventi_programmati) == 0 ? tr('Non sono presenti attività programmate') : 'Attività aperte:');
|
||||
if (count($interventi_programmati) != 0) {
|
||||
foreach ($interventi_programmati as $intervento_programmato) {
|
||||
echo ' <a class="btn btn-default btn-xs" href="'.base_path().'/editor.php?id_module='.Modules::get('Interventi')['id'].'&id_record='.$intervento_programmato->id.'" target="_blank">'.$intervento_programmato->codice.' ('.(new Carbon($intervento_programmato->data_richiesta))->diffForHumans().')</a>';
|
||||
}
|
||||
}
|
||||
echo '
|
||||
</p>';
|
||||
// Contratto
|
||||
if ($contratto) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Contratti', $contratto->id, tr('Contratto num. _NUM_ del _DATA_', ['_NUM_' => $contratto->numero, '_DATA_' => Translator::dateToLocale($contratto->data_bozza)]));
|
||||
if ($ore_previste > 0) {
|
||||
echo '
|
||||
- '.$ore_erogate.'/'.$ore_previste.' '.tr('ore').'<br>
|
||||
|
||||
<div class="progress" style="margin:0; height:8px;">
|
||||
<div class="progress-bar progress-bar-'.$color.'" style="width:'.$perc_ore.'%"></div>
|
||||
</div>';
|
||||
}
|
||||
echo '
|
||||
</p>';
|
||||
}
|
||||
|
||||
// Preventivo
|
||||
if ($preventivo) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Preventivi', $preventivo->id, tr('Preventivo num. _NUM_ del _DATA_', ['_NUM_' => $preventivo->numero, '_DATA_' => Translator::dateToLocale($preventivo->data_bozza)])).'
|
||||
</p>';
|
||||
}
|
||||
|
||||
// Ordine
|
||||
if ($ordine) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Ordini cliente', $ordine->id, tr('Ordine num. _NUM_ del _DATA_', ['_NUM_' => $ordine->numero, '_DATA_' => Translator::dateToLocale($ordine->data)])).'
|
||||
</p>';
|
||||
}
|
||||
echo '
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>';
|
|
@ -100,17 +100,17 @@ echo '
|
|||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="card card-primary shadow">
|
||||
<div class="card card-info card-outline shadow">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><i class="fa fa-vcard"></i> '.tr('Cliente').'</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<div class="col-md-2">
|
||||
<img src="'.$logo.'" class="img-fluid">
|
||||
</div>
|
||||
|
||||
<div class="col-md-9">';
|
||||
<div class="col-md-10">';
|
||||
|
||||
// Cliente
|
||||
echo '
|
||||
|
@ -142,9 +142,9 @@ $prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
|
|||
$stato = \Modules\Interventi\Stato::find($intervento->stato->id);
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
<div class="card card-primary shadow">
|
||||
<div class="card card-info card-outline shadow">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><i class="fa fa-map"></i> '.tr('Attività _NUM_ del _DATA_', [
|
||||
<h3 class="card-title"><i class="fa fa-wrench"></i> '.tr('Attività _NUM_ del _DATA_', [
|
||||
'_NUM_' => $intervento->codice,
|
||||
'_DATA_' => Translator::dateToLocale($intervento->data_richiesta)
|
||||
]).'</h3>
|
||||
|
@ -227,7 +227,7 @@ $sede_azienda = $anagrafica_azienda->sedeLegale;
|
|||
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
<div class="card card-primary shadow">
|
||||
<div class="card card-info card-outline shadow">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><i class="fa fa-map"></i> '.tr('Geolocalizzazione').'</h3>
|
||||
</div>
|
||||
|
|
|
@ -1,169 +0,0 @@
|
|||
<?php
|
||||
/*
|
||||
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
||||
* Copyright (C) DevCode s.r.l.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Models\Module;
|
||||
use Models\Upload;
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
use Modules\Anagrafiche\Sede;
|
||||
use Modules\Contratti\Contratto;
|
||||
use Modules\Interventi\Intervento;
|
||||
use Modules\Preventivi\Preventivo;
|
||||
use Modules\Scadenzario\Scadenza;
|
||||
|
||||
// Anagrafica
|
||||
$anagrafica = $ordine->anagrafica;
|
||||
|
||||
// Sede
|
||||
if ($ordine->idsede_destinazione) {
|
||||
$sede = $dbo->selectOne('an_sedi', '*', ['id' => $ordine->idsede_destinazione]);
|
||||
} else {
|
||||
$sede = $anagrafica->toArray();
|
||||
}
|
||||
|
||||
// Referente
|
||||
$referente = null;
|
||||
if ($ordine->idreferente) {
|
||||
$referente = $dbo->selectOne('an_referenti', '*', ['id' => $ordine->idreferente]);
|
||||
}
|
||||
|
||||
// Contratto
|
||||
$contratto = null;
|
||||
$ore_erogate = 0;
|
||||
$ore_previste = 0;
|
||||
$perc_ore = 0;
|
||||
$color = 'danger';
|
||||
if ($ordine->id_contratto) {
|
||||
$contratto = Contratto::find($ordine->id_contratto);
|
||||
$ore_erogate = $contratto->interventi->sum('ore_totali');
|
||||
$ore_previste = $contratto->getRighe()->where('um', 'ore')->sum('qta');
|
||||
$perc_ore = $ore_previste != 0 ? ($ore_erogate * 100) / $ore_previste : 0;
|
||||
if ($perc_ore < 75) {
|
||||
$color = 'success';
|
||||
} elseif ($perc_ore <= 100) {
|
||||
$color = 'warning';
|
||||
}
|
||||
}
|
||||
|
||||
// Preventivo
|
||||
$preventivo = null;
|
||||
if ($ordine->id_preventivo) {
|
||||
$preventivo = Preventivo::find($ordine->id_preventivo);
|
||||
}
|
||||
|
||||
// Altre attività
|
||||
$interventi_programmati = Intervento::select('in_interventi.*')
|
||||
->join('in_statiintervento', 'in_interventi.idstatointervento', '=', 'in_statiintervento.id')
|
||||
->where('idanagrafica', $intervento->idanagrafica)
|
||||
->where('idsede_destinazione', $intervento->idsede_destinazione)
|
||||
->where('is_completato', '!=', 1)
|
||||
->where('in_interventi.id', '!=', $id_record)
|
||||
->get();
|
||||
|
||||
// Insoluti
|
||||
$insoluti = Scadenza::where('idanagrafica', $ordine->idanagrafica)
|
||||
->whereRaw('co_scadenziario.da_pagare > co_scadenziario.pagato')
|
||||
->whereRaw('co_scadenziario.scadenza < NOW()')
|
||||
->count();
|
||||
|
||||
// Logo
|
||||
$logo = Upload::where('id_module', Module::where('name', 'Anagrafiche')->first()->id)->where('id_record', $ordine->idanagrafica)->where('name', 'Logo azienda')->first()->filename;
|
||||
|
||||
$logo = $logo ? base_path().'/files/anagrafiche/'.$logo : App::getPaths()['img'].'/logo_header.png';
|
||||
|
||||
echo '
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-md-1">
|
||||
<img src="'.$logo.'" class="img-fluid">
|
||||
</div>';
|
||||
|
||||
// Cliente
|
||||
echo '
|
||||
<div class="col-md-3">
|
||||
<h4 style="margin:4px 0;"><b>'.$anagrafica->ragione_sociale.'</b></h4>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['nomesede'] ? $sede['nomesede'].'<br>' : '').'
|
||||
'.$sede['indirizzo'].'<br>
|
||||
'.$sede['cap'].' - '.$sede['citta'].' ('.$sede['provincia'].')
|
||||
</p>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$sede['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$sede['telefono'].'</a>' : '').'
|
||||
'.($sede['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$sede['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$sede['email'].'</a>' : '').'
|
||||
'.($referente['nome'] ? '<p></p><i class="fa fa-user-o text-muted"></i> '.$referente['nome'].'<br>' : '').'
|
||||
'.($referente['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$referente['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$referente['telefono'].'</a>' : '').'
|
||||
'.($referente['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$referente['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$referente['email'].'</a>' : '').'
|
||||
</p>
|
||||
</div>';
|
||||
|
||||
// Panoramica
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
<div class="card card-info">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><i class="fa fa-map"></i> '.tr('Panoramica ordine num. ').$ordine->numero.'</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<p style="margin:3px 0;"><i class="fa fa-'.($insoluti ? 'warning text-danger' : 'check text-success').'"></i>
|
||||
'.($insoluti ? tr('Sono presenti insoluti') : tr('Non sono presenti insoluti')).'
|
||||
</p>
|
||||
|
||||
<p style="margin:3px 0;"><i class="fa '.(count($interventi_programmati) == 0 ? 'fa-clock-o text-success' : 'fa-clock-o text-warning').'"></i> '.(count($interventi_programmati) == 0 ? tr('Non sono presenti attività programmate') : 'Attività aperte:');
|
||||
if (count($interventi_programmati) != 0) {
|
||||
foreach ($interventi_programmati as $intervento_programmato) {
|
||||
echo ' <a class="btn btn-default btn-xs" href="'.base_path().'/editor.php?id_module='.Modules::get('Interventi')['id'].'&id_record='.$intervento_programmato->id.'" target="_blank">'.$intervento_programmato->codice.' ('.(new Carbon($intervento_programmato->data_richiesta))->diffForHumans().')</a>';
|
||||
}
|
||||
}
|
||||
echo '
|
||||
</p>';
|
||||
// Contratto
|
||||
if ($contratto) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Contratti', $contratto->id, tr('Contratto num. _NUM_ del _DATA_', ['_NUM_' => $contratto->numero, '_DATA_' => Translator::dateToLocale($contratto->data_bozza)]));
|
||||
if ($ore_previste > 0) {
|
||||
echo '
|
||||
- '.$ore_erogate.'/'.$ore_previste.' '.tr('ore').'<br>
|
||||
|
||||
<div class="progress" style="margin:0; height:8px;">
|
||||
<div class="progress-bar progress-bar-'.$color.'" style="width:'.$perc_ore.'%"></div>
|
||||
</div>';
|
||||
}
|
||||
echo '
|
||||
</p>';
|
||||
}
|
||||
|
||||
// Preventivo
|
||||
if ($preventivo) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Preventivi', $preventivo->id, tr('Preventivo num. _NUM_ del _DATA_', ['_NUM_' => $preventivo->numero, '_DATA_' => Translator::dateToLocale($preventivo->data_bozza)])).'
|
||||
</p>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>';
|
|
@ -1,169 +0,0 @@
|
|||
<?php
|
||||
/*
|
||||
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
||||
* Copyright (C) DevCode s.r.l.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Models\Module;
|
||||
use Models\Upload;
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
use Modules\Anagrafiche\Sede;
|
||||
use Modules\Contratti\Contratto;
|
||||
use Modules\Interventi\Intervento;
|
||||
use Modules\Ordini\Ordine;
|
||||
use Modules\Scadenzario\Scadenza;
|
||||
|
||||
// Anagrafica
|
||||
$anagrafica = $preventivo->anagrafica;
|
||||
|
||||
// Sede
|
||||
if ($preventivo->idsede_destinazione) {
|
||||
$sede = $dbo->selectOne('an_sedi', '*', ['id' => $preventivo->idsede_destinazione]);
|
||||
} else {
|
||||
$sede = $anagrafica->toArray();
|
||||
}
|
||||
|
||||
// Referente
|
||||
$referente = null;
|
||||
if ($preventivo->idreferente) {
|
||||
$referente = $dbo->selectOne('an_referenti', '*', ['id' => $preventivo->idreferente]);
|
||||
}
|
||||
|
||||
// Contratto
|
||||
$contratto = null;
|
||||
$ore_erogate = 0;
|
||||
$ore_previste = 0;
|
||||
$perc_ore = 0;
|
||||
$color = 'danger';
|
||||
if ($preventivo->id_contratto) {
|
||||
$contratto = Contratto::find($preventivo->id_contratto);
|
||||
$ore_erogate = $contratto->interventi->sum('ore_totali');
|
||||
$ore_previste = $contratto->getRighe()->where('um', 'ore')->sum('qta');
|
||||
$perc_ore = $ore_previste != 0 ? ($ore_erogate * 100) / $ore_previste : 0;
|
||||
if ($perc_ore < 75) {
|
||||
$color = 'success';
|
||||
} elseif ($perc_ore <= 100) {
|
||||
$color = 'warning';
|
||||
}
|
||||
}
|
||||
|
||||
// Ordine
|
||||
$ordine = null;
|
||||
if ($preventivo->id_ordine) {
|
||||
$ordine = Ordine::find($preventivo->id_ordine);
|
||||
}
|
||||
|
||||
// Attività
|
||||
$interventi_programmati = Intervento::select('in_interventi.*')
|
||||
->join('in_statiintervento', 'in_interventi.idstatointervento', '=', 'in_statiintervento.id')
|
||||
->where('idanagrafica', $intervento->idanagrafica)
|
||||
->where('idsede_destinazione', $intervento->idsede_destinazione)
|
||||
->where('is_completato', '!=', 1)
|
||||
->where('in_interventi.id', '!=', $id_record)
|
||||
->get();
|
||||
|
||||
// Insoluti
|
||||
$insoluti = Scadenza::where('idanagrafica', $preventivo->idanagrafica)
|
||||
->whereRaw('co_scadenziario.da_pagare > co_scadenziario.pagato')
|
||||
->whereRaw('co_scadenziario.scadenza < NOW()')
|
||||
->count();
|
||||
|
||||
// Logo
|
||||
$logo = Upload::where('id_module', Module::where('name', 'Anagrafiche')->first()->id)->where('id_record', $preventivo->idanagrafica)->where('name', 'Logo azienda')->first()->filename;
|
||||
|
||||
$logo = $logo ? base_path().'/files/anagrafiche/'.$logo : App::getPaths()['img'].'/logo_header.png';
|
||||
|
||||
echo '
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-md-1">
|
||||
<img src="'.$logo.'" class="img-fluid">
|
||||
</div>';
|
||||
|
||||
// Cliente
|
||||
echo '
|
||||
<div class="col-md-3">
|
||||
<h4 style="margin:4px 0;"><b>'.$anagrafica->ragione_sociale.'</b></h4>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['nomesede'] ? $sede['nomesede'].'<br>' : '').'
|
||||
'.$sede['indirizzo'].'<br>
|
||||
'.$sede['cap'].' - '.$sede['citta'].' ('.$sede['provincia'].')
|
||||
</p>
|
||||
|
||||
<p style="margin:3px 0;">
|
||||
'.($sede['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$sede['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$sede['telefono'].'</a>' : '').'
|
||||
'.($sede['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$sede['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$sede['email'].'</a>' : '').'
|
||||
'.($referente['nome'] ? '<p></p><i class="fa fa-user-o text-muted"></i> '.$referente['nome'].'<br>' : '').'
|
||||
'.($referente['telefono'] ? '<a class="btn btn-default btn-xs" href="tel:'.$referente['telefono'].'" target="_blank"><i class="fa fa-phone text-maroon"></i> '.$referente['telefono'].'</a>' : '').'
|
||||
'.($referente['email'] ? '<a class="btn btn-default btn-xs" href="mailto:'.$referente['email'].'"><i class="fa fa-envelope text-maroon"></i> '.$referente['email'].'</a>' : '').'
|
||||
</p>
|
||||
</div>';
|
||||
|
||||
// Panoramica
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
<div class="card card-info">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><i class="fa fa-map"></i> '.tr('Panoramica preventivo num. ').$preventivo->numero.'</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<p style="margin:3px 0;"><i class="fa fa-'.($insoluti ? 'warning text-danger' : 'check text-success').'"></i>
|
||||
'.($insoluti ? tr('Sono presenti insoluti') : tr('Non sono presenti insoluti')).'
|
||||
</p>
|
||||
|
||||
<p style="margin:3px 0;"><i class="fa '.(count($interventi_programmati) == 0 ? 'fa-clock-o text-success' : 'fa-clock-o text-warning').'"></i> '.(count($interventi_programmati) == 0 ? tr('Non sono presenti attività programmate') : 'Attività aperte:');
|
||||
if (count($interventi_programmati) != 0) {
|
||||
foreach ($interventi_programmati as $intervento_programmato) {
|
||||
echo ' <a class="btn btn-default btn-xs" href="'.base_path().'/editor.php?id_module='.Modules::get('Interventi')['id'].'&id_record='.$intervento_programmato->id.'" target="_blank">'.$intervento_programmato->codice.' ('.(new Carbon($intervento_programmato->data_richiesta))->diffForHumans().')</a>';
|
||||
}
|
||||
}
|
||||
echo '
|
||||
</p>';
|
||||
// Contratto
|
||||
if ($contratto) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Contratti', $contratto->id, tr('Contratto num. _NUM_ del _DATA_', ['_NUM_' => $contratto->numero, '_DATA_' => Translator::dateToLocale($contratto->data_bozza)]));
|
||||
if ($ore_previste > 0) {
|
||||
echo '
|
||||
- '.$ore_erogate.'/'.$ore_previste.' '.tr('ore').'<br>
|
||||
|
||||
<div class="progress" style="margin:0; height:8px;">
|
||||
<div class="progress-bar progress-bar-'.$color.'" style="width:'.$perc_ore.'%"></div>
|
||||
</div>';
|
||||
}
|
||||
echo '
|
||||
</p>';
|
||||
}
|
||||
|
||||
// Ordine
|
||||
if ($ordine) {
|
||||
echo '
|
||||
<p style="margin:3px 0;"><i class="fa fa-book text-info"></i>
|
||||
'.Modules::link('Ordini cliente', $ordine->id, tr('Ordine num. _NUM_ del _DATA_', ['_NUM_' => $ordine->numero, '_DATA_' => Translator::dateToLocale($ordine->data)])).'
|
||||
</p>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>';
|
Loading…
Reference in New Issue