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/**',
|
'!include/custom/**',
|
||||||
'!backup/**',
|
'!backup/**',
|
||||||
'!files/**',
|
'!files/**',
|
||||||
|
'files/temp/.gitkeep',
|
||||||
'!logs/**',
|
'!logs/**',
|
||||||
'!config.inc.php',
|
'!config.inc.php',
|
||||||
'!update/structure.php',
|
'!update/structure.php',
|
||||||
|
|
|
@ -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',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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.
|
||||||
*
|
*
|
||||||
|
|
|
@ -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'])) {
|
||||||
|
|
Loading…
Reference in New Issue