Materiel.php
4.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
namespace App\Model\Entity;
use Cake\ORM\Entity;
/**
* Materiel Entity.
*
* @property int $id
* @property string $designation
* @property int $sur_categorie_id
* @property \App\Model\Entity\SurCategory $sur_category
* @property int $categorie_id
* @property \App\Model\Entity\Category $category
* @property int $sous_categorie_id
* @property \App\Model\Entity\SousCategory $sous_category
* @property string $numero_laboratoire
* @property string $description
* @property bool $materiel_administratif
* @property bool $materiel_technique
* @property string $status
* @property \Cake\I18n\Time $date_acquisition
* @property float $prix_ht
* @property string $eotp
* @property string $numero_commande
* @property string $code_comptable
* @property string $numero_serie
* @property int $groupes_thematique_id
* @property \App\Model\Entity\GroupesThematique $groupes_thematique
* @property int $groupes_metier_id
* @property \App\Model\Entity\GroupesMetier $groupes_metier
* @property string $numero_inventaire_organisme
* @property string $numero_inventaire_old
* @property \Cake\I18n\Time $date_archivage
* @property bool $etiquette
* @property string $lieu_detail
* @property string $nom_responsable
* @property string $email_responsable
* @property string $nom_createur
* @property string $nom_modificateur
* @property \Cake\I18n\Time $created
* @property \Cake\I18n\Time $modified
* @property \Cake\I18n\Time $date_fin_garantie
* @property int $duree_garantie
* @property string $unite_duree_garantie
* @property \Cake\I18n\Time $date_reception
* @property int $organisme_id
* @property \App\Model\Entity\Organisme $organisme
* @property int $site_id
* @property int $photo_id
* @property bool $hors_service
* @property \App\Model\Entity\Site $site
* @property \App\Model\Entity\Document[] $documents
* @property \App\Model\Entity\Emprunt[] $emprunts
* @property \App\Model\Entity\Suivi[] $suivis
* @property int $fournisseur_id
* @property \App\Model\Entity\Fournisseur $fournisseur
* @property bool $metrologie
*/
class Materiel extends Entity
{
/**
* Fields that can be mass assigned using newEntity() or patchEntity().
*
* Note that when '*' is set to true, this allows all unspecified fields to
* be mass assigned. For security purposes, it is advised to set '*' to false
* (or remove it), and explicitly make individual fields accessible as needed.
*
* @var array
*/
protected $_accessible = [
'*' => true,
'id' => false
];
/* 14/1/19 bake autogenerated:
protected $_accessible = [
'designation' => true,
'sur_categorie_id' => true,
'categorie_id' => true,
'sous_categorie_id' => true,
'numero_laboratoire' => true,
'description' => true,
'materiel_administratif' => true,
'materiel_technique' => true,
'status' => true,
'date_acquisition' => true,
'prix_ht' => true,
'eotp' => true,
'numero_commande' => true,
'code_comptable' => true,
'numero_serie' => true,
'groupes_thematique_id' => true,
'groupes_metier_id' => true,
'numero_inventaire_organisme' => true,
'numero_inventaire_old' => true,
'date_archivage' => true,
'etiquette' => true,
'lieu_detail' => true,
'nom_responsable' => true,
'email_responsable' => true,
'gestionnaire_id' => true,
'nom_createur' => true,
'nom_modificateur' => true,
'created' => true,
'modified' => true,
'date_reception' => true,
'organisme_id' => true,
'site_id' => true,
'date_fin_garantie' => true,
'duree_garantie' => true,
'unite_duree_garantie' => true,
'hors_service' => true,
'photo_id' => true,
'metrologie' => true,
'fournisseur_id' => true,
'sur_category' => true,
'category' => true,
'sous_category' => true,
'groupes_thematique' => true,
'groupes_metier' => true,
'organisme' => true,
'site' => true,
'documents' => true,
'emprunts' => true,
'suivis' => true,
'fournisseur' => true,
'user' => true
];
*/
}