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;
|
2018-12-25 11:32:19 +01:00
|
|
|
use Modules\Interventi\Components\Articolo;
|
2018-12-29 12:03:22 +01:00
|
|
|
use Modules\Interventi\Components\Riga;
|
2019-01-11 08:32:08 +01:00
|
|
|
use Modules\Preventivi\Preventivo;
|
|
|
|
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-01-11 08:32:08 +01:00
|
|
|
/**
|
|
|
|
* Crea un nuovo preventivo.
|
|
|
|
*
|
|
|
|
* @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);
|
|
|
|
|
|
|
|
$model->codice = static::getNextCodice();
|
|
|
|
$model->data_richiesta = $data_richiesta;
|
|
|
|
|
|
|
|
$model->save();
|
|
|
|
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Articolo::class, 'idintervento');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function righe()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Riga::class, 'idintervento');
|
|
|
|
}
|
2018-12-25 11:32:19 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
// Metodi statici
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calcola il nuovo codice di intervento.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getNextCodice()
|
|
|
|
{
|
|
|
|
$maschera = setting('Formato codice intervento');
|
|
|
|
|
|
|
|
$ultimo = Generator::getPreviousFrom($maschera, 'in_interventi', 'codice');
|
|
|
|
$numero = Generator::generate($maschera, $ultimo);
|
|
|
|
|
|
|
|
return $numero;
|
|
|
|
}
|
2018-08-29 18:06:51 +02:00
|
|
|
}
|