Blame view

src/Model/Entity/Materiel.php 6.29 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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
6c4edfa3   Alexandre   First Commit LabI...
23
24
25
26
27
28
29
30
31
32
33
34
35
 * @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
6c4edfa3   Alexandre   First Commit LabI...
36
37
38
39
40
41
42
 * @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
9cfb4997   Alexandre   Version: 2.4.3.10
43
44
45
 * @property \Cake\I18n\Time $date_fin_garantie
 * @property int $duree_garantie
 * @property string $unite_duree_garantie
6c4edfa3   Alexandre   First Commit LabI...
46
47
48
49
 * @property \Cake\I18n\Time $date_reception
 * @property int $organisme_id
 * @property \App\Model\Entity\Organisme $organisme
 * @property int $site_id
4dae83a2   Alexandre   Version: 2.5.1.0
50
 * @property int $photo_id
302307ec   Alexandre   Version: 2.4.7.0
51
 * @property bool $hors_service
6c4edfa3   Alexandre   First Commit LabI...
52
53
54
55
 * @property \App\Model\Entity\Site $site
 * @property \App\Model\Entity\Document[] $documents
 * @property \App\Model\Entity\Emprunt[] $emprunts
 * @property \App\Model\Entity\Suivi[] $suivis
d70c5618   Alexis Proust   mise a jour fichier
56
57
58
 * @property int $fournisseur_id
 * @property \App\Model\Entity\Fournisseur $fournisseur
 * @property bool $metrologie
6c4edfa3   Alexandre   First Commit LabI...
59
 */
92acc9fe   Etienne Pallier   Harmonisation (v3...
60
class Materiel extends Entity {
6c4edfa3   Alexandre   First Commit LabI...
61
62
63
64
65
66
67
68
69
70
71
72

    /**
     * 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,
63c3cb16   epallier   Nombreux petits b...
73
        'id' => false
6c4edfa3   Alexandre   First Commit LabI...
74
    ];
ed60c45e   Etienne Pallier   Nouveau script in...
75
    
da7f42f6   Etienne Pallier   Diverses simplifi...
76
77
    // Ce qui s'affiche quand on fait echo $entity
    public function __toString() { return $this->designation; }
2de8cefa   Etienne Pallier   Diverses simplifi...
78
79
80
81
82
83
84
85
86
87
88
89
90
91
    
    // (EP 20200504)
    // Propriétés virtuelles (attributs virtuels de l'entité matériel)
    // A utiliser dans le controleur ainsi : $materiel->is_created
    //public function isCreated() { return $this->status == 'CREATED'; }
    //protected function _getIsCreated() { return $this->_fields['status'] == 'CREATED'; }
    protected function _getIsCreated() { return $this->status == 'CREATED'; }
    //return $this->status == 'CREATED';
    protected function _getIsValidated() { return $this->status == 'VALIDATED'; }
    //protected function _getIsValidated() { return $this->_fields['status'] == 'VALIDATED'; }
    //public function is_tobearchived() { return $this->status == 'TOBEARCHIVED'; }
    protected function _getIsTobearchived() { return $this->status == 'TOBEARCHIVED'; }
    protected function _getIsArchived() { return $this->status == 'ARCHIVED'; }
    
92acc9fe   Etienne Pallier   Harmonisation (v3...
92
93
94
    // Ce matériel est utilisé ou déclaré par l'utilisateur $userfullname
    // is Owned Or Declared By User
    // fullname = "Pallier Etienne"
2de8cefa   Etienne Pallier   Diverses simplifi...
95
    //public function isUsedOrCreatedByUser($user) {
92acc9fe   Etienne Pallier   Harmonisation (v3...
96
97
98
    //public function isOwnedOrDeclaredByUser($username) { 
    public function belongsToUser($userfullname) { 
        return in_array($userfullname, [$this->nom_createur, $this->nom_responsable]);
2de8cefa   Etienne Pallier   Diverses simplifi...
99
    }
92acc9fe   Etienne Pallier   Harmonisation (v3...
100
101
    
    // Ce matériel a le même groupe que l'un de ceux de l'utilisateur courant
da7f42f6   Etienne Pallier   Diverses simplifi...
102
    public function isSameGroupAsUser($user_group_metier_id, $user_group_thematique_id) {
2de8cefa   Etienne Pallier   Diverses simplifi...
103
        // Responsable groupe métier ?
da7f42f6   Etienne Pallier   Diverses simplifi...
104
105
106
107
108
        //if ($this->groupes_metier_id==null && $this->groupes_thematique_id==null) return false;
        //if ($user_group_metier_id==null && $user_group_thematique_id==null) return false;
        $samegroup1 = $this->groupes_metier_id!=null && $this->groupes_metier_id==$user_group_metier_id;
        $samegroup2 = $this->groupes_thematique_id!=null && $this->groupes_thematique_id==$user_group_thematique_id;
        return $samegroup1 || $samegroup2;
2de8cefa   Etienne Pallier   Diverses simplifi...
109
    } // isSameGroupAsUser
2de8cefa   Etienne Pallier   Diverses simplifi...
110
111
    
    
ed60c45e   Etienne Pallier   Nouveau script in...
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
    /* 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
    ];
    */
    
6c4edfa3   Alexandre   First Commit LabI...
168
}