2018-08-29 18:06:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Modules\Interventi;
|
|
|
|
|
2018-12-14 09:46:35 +01:00
|
|
|
use Common\Document;
|
2018-08-29 18:06:51 +02:00
|
|
|
use Modules\Anagrafiche\Anagrafica;
|
2019-02-14 17:49:58 +01:00
|
|
|
use Modules\Contratti\Contratto;
|
2019-01-11 08:32:08 +01:00
|
|
|
use Modules\Preventivi\Preventivo;
|
2019-07-08 12:24:59 +02:00
|
|
|
use Modules\TipiIntervento\Tipo as TipoSessione;
|
2019-07-08 12:25:51 +02:00
|
|
|
use Util\Generator;
|
2018-08-29 18:06:51 +02:00
|
|
|
|
2018-12-14 09:46:35 +01:00
|
|
|
class Intervento extends Document
|
2018-08-29 18:06:51 +02:00
|
|
|
{
|
|
|
|
protected $table = 'in_interventi';
|
|
|
|
|
2019-07-15 11:16:12 +02:00
|
|
|
protected $info = [];
|
|
|
|
|
2019-01-11 08:32:08 +01:00
|
|
|
/**
|
2020-01-03 16:45:44 +01:00
|
|
|
* Crea un nuovo intervento.
|
2019-01-11 08:32:08 +01:00
|
|
|
*
|
|
|
|
* @param Anagrafica $anagrafica
|
|
|
|
* @param TipoSessione $tipo_sessione
|
|
|
|
* @param Stato $stato
|
|
|
|
* @param string $data_richiesta
|
|
|
|
*
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
public static function build(Anagrafica $anagrafica, TipoSessione $tipo_sessione, Stato $stato, $data_richiesta)
|
|
|
|
{
|
|
|
|
$model = parent::build();
|
|
|
|
|
|
|
|
$model->anagrafica()->associate($anagrafica);
|
|
|
|
$model->stato()->associate($stato);
|
|
|
|
$model->tipoSessione()->associate($tipo_sessione);
|
|
|
|
|
2019-06-20 18:14:41 +02:00
|
|
|
$model->codice = static::getNextCodice($data_richiesta);
|
2019-01-11 08:32:08 +01:00
|
|
|
$model->data_richiesta = $data_richiesta;
|
|
|
|
|
|
|
|
$model->save();
|
|
|
|
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
2019-07-12 17:35:14 +02:00
|
|
|
public function getOreTotaliAttribute()
|
|
|
|
{
|
2019-07-15 11:16:12 +02:00
|
|
|
if (!isset($this->info['ore_totali'])) {
|
|
|
|
$sessioni = $this->sessioni;
|
|
|
|
|
|
|
|
$this->info['ore_totali'] = $sessioni->sum('ore');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->info['ore_totali'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getKmTotaliAttribute()
|
|
|
|
{
|
|
|
|
if (!isset($this->info['km_totali'])) {
|
|
|
|
$sessioni = $this->sessioni;
|
|
|
|
|
|
|
|
$this->info['km_totali'] = $sessioni->sum('km');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->info['km_totali'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getInizioAttribute()
|
|
|
|
{
|
|
|
|
if (!isset($this->info['inizio'])) {
|
|
|
|
$sessioni = $this->sessioni;
|
|
|
|
|
|
|
|
$this->info['inizio'] = $sessioni->min('orario_inizio');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->info['inizio'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getFineAttribute()
|
|
|
|
{
|
|
|
|
if (!isset($this->info['fine'])) {
|
|
|
|
$sessioni = $this->sessioni;
|
2019-07-12 17:35:14 +02:00
|
|
|
|
2019-07-15 11:16:12 +02:00
|
|
|
$this->info['fine'] = $sessioni->max('orario_fine');
|
|
|
|
}
|
2019-07-12 17:35:14 +02:00
|
|
|
|
2019-07-15 11:16:12 +02:00
|
|
|
return $this->info['fine'];
|
2019-07-12 17:35:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restituisce la collezione di righe e articoli con valori rilevanti per i conti.
|
|
|
|
*
|
|
|
|
* @return iterable
|
|
|
|
*/
|
|
|
|
public function getRigheContabili()
|
|
|
|
{
|
|
|
|
$results = parent::getRigheContabili();
|
|
|
|
|
|
|
|
return $results->merge($this->sessioni);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Relazioni Eloquent
|
|
|
|
|
2018-08-29 18:06:51 +02:00
|
|
|
public function anagrafica()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Anagrafica::class, 'idanagrafica');
|
|
|
|
}
|
|
|
|
|
2019-01-11 08:32:08 +01:00
|
|
|
public function preventivo()
|
|
|
|
{
|
2019-02-14 17:49:58 +01:00
|
|
|
return $this->belongsTo(Preventivo::class, 'id_preventivo');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function contratto()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Contratto::class, 'id_contratto');
|
2019-01-11 08:32:08 +01:00
|
|
|
}
|
|
|
|
|
2018-08-29 18:06:51 +02:00
|
|
|
public function stato()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Stato::class, 'idstatointervento');
|
|
|
|
}
|
|
|
|
|
2020-01-03 16:45:44 +01:00
|
|
|
public function tipo()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Tipo::class, 'idtipointervento');
|
|
|
|
}
|
|
|
|
|
2019-01-11 08:32:08 +01:00
|
|
|
public function tipoSessione()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(TipoSessione::class, 'idtipointervento');
|
|
|
|
}
|
|
|
|
|
2018-08-29 18:06:51 +02:00
|
|
|
public function articoli()
|
|
|
|
{
|
2019-04-12 01:50:20 +02:00
|
|
|
return $this->hasMany(Components\Articolo::class, 'idintervento');
|
2018-08-29 18:06:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function righe()
|
|
|
|
{
|
2019-04-12 01:50:20 +02:00
|
|
|
return $this->hasMany(Components\Riga::class, 'idintervento');
|
2018-08-29 18:06:51 +02:00
|
|
|
}
|
2018-12-25 11:32:19 +01:00
|
|
|
|
2019-04-04 17:12:32 +02:00
|
|
|
public function sconti()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Components\Sconto::class, 'idintervento');
|
|
|
|
}
|
|
|
|
|
2018-12-25 11:33:15 +01:00
|
|
|
public function descrizioni()
|
|
|
|
{
|
2019-03-29 12:46:17 +01:00
|
|
|
return $this->righe()->where('prezzo_vendita', 0);
|
2018-12-25 11:32:19 +01:00
|
|
|
}
|
2019-01-11 08:32:08 +01:00
|
|
|
|
2019-04-12 01:50:20 +02:00
|
|
|
public function sessioni()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Components\Sessione::class, 'idintervento');
|
|
|
|
}
|
|
|
|
|
2019-01-11 08:32:08 +01:00
|
|
|
// Metodi statici
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calcola il nuovo codice di intervento.
|
2019-06-29 11:01:26 +02:00
|
|
|
*
|
2019-06-20 18:14:41 +02:00
|
|
|
* @param string $data
|
2019-06-29 11:01:26 +02:00
|
|
|
*
|
2019-01-11 08:32:08 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
2019-06-20 18:14:41 +02:00
|
|
|
public static function getNextCodice($data)
|
2019-01-11 08:32:08 +01:00
|
|
|
{
|
|
|
|
$maschera = setting('Formato codice intervento');
|
|
|
|
|
2019-06-20 18:14:41 +02:00
|
|
|
//$ultimo = Generator::getPreviousFrom($maschera, 'in_interventi', 'codice');
|
|
|
|
|
|
|
|
$ultimo = Generator::getPreviousFrom($maschera, 'in_interventi', 'codice', [
|
|
|
|
'YEAR(data_richiesta) = '.prepare(date('Y', strtotime($data))),
|
|
|
|
]);
|
|
|
|
|
2019-01-11 08:32:08 +01:00
|
|
|
$numero = Generator::generate($maschera, $ultimo);
|
|
|
|
|
|
|
|
return $numero;
|
|
|
|
}
|
2018-08-29 18:06:51 +02:00
|
|
|
}
|