This commit is contained in:
MatteoPistorello 2021-09-22 11:22:06 +02:00
commit b74daa28a9
4 changed files with 16 additions and 0 deletions

View File

@ -399,6 +399,7 @@ function release(done) {
'!include/custom/**', '!include/custom/**',
'!backup/**', '!backup/**',
'!files/**', '!files/**',
'files/temp/.gitkeep',
'!logs/**', '!logs/**',
'!config.inc.php', '!config.inc.php',
'!update/structure.php', '!update/structure.php',

View File

@ -50,8 +50,10 @@ class Contratto extends Document
* @var array * @var array
*/ */
protected $dates = [ protected $dates = [
'data_bozza',
'data_conclusione', 'data_conclusione',
'data_accettazione', 'data_accettazione',
'data_rifiuto',
]; ];
/** /**

View File

@ -43,6 +43,18 @@ class Preventivo extends Document
protected $table = 'co_preventivi'; protected $table = 'co_preventivi';
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = [
'data_bozza',
'data_conclusione',
'data_accettazione',
'data_rifiuto',
];
/** /**
* Crea un nuovo preventivo. * Crea un nuovo preventivo.
* *

View File

@ -216,6 +216,7 @@ class Interventi extends AppResource
$record->richiesta = $data['richiesta']; $record->richiesta = $data['richiesta'];
$record->descrizione = $data['descrizione']; $record->descrizione = $data['descrizione'];
$record->informazioniaggiuntive = $data['informazioni_aggiuntive']; $record->informazioniaggiuntive = $data['informazioni_aggiuntive'];
$record->idsede_destinazione = $data['id_sede'] ?: 0;
// Salvataggio firma eventuale // Salvataggio firma eventuale
if (empty($record->firma_nome) && !empty($data['firma_nome'])) { if (empty($record->firma_nome) && !empty($data['firma_nome'])) {