Correzione date Preventivi e Contratti
This commit is contained in:
parent
4cf5fcddbe
commit
46cbd26a18
|
@ -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.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue