Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
b74daa28a9
|
@ -399,6 +399,7 @@ function release(done) {
|
|||
'!include/custom/**',
|
||||
'!backup/**',
|
||||
'!files/**',
|
||||
'files/temp/.gitkeep',
|
||||
'!logs/**',
|
||||
'!config.inc.php',
|
||||
'!update/structure.php',
|
||||
|
|
|
@ -50,8 +50,10 @@ class Contratto extends Document
|
|||
* @var array
|
||||
*/
|
||||
protected $dates = [
|
||||
'data_bozza',
|
||||
'data_conclusione',
|
||||
'data_accettazione',
|
||||
'data_rifiuto',
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
|
@ -43,6 +43,18 @@ class Preventivo extends Document
|
|||
|
||||
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.
|
||||
*
|
||||
|
|
|
@ -216,6 +216,7 @@ class Interventi extends AppResource
|
|||
$record->richiesta = $data['richiesta'];
|
||||
$record->descrizione = $data['descrizione'];
|
||||
$record->informazioniaggiuntive = $data['informazioni_aggiuntive'];
|
||||
$record->idsede_destinazione = $data['id_sede'] ?: 0;
|
||||
|
||||
// Salvataggio firma eventuale
|
||||
if (empty($record->firma_nome) && !empty($data['firma_nome'])) {
|
||||
|
|
Loading…
Reference in New Issue