Blame view

src/Model/Entity/Materiel.php 9.71 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

4d55cf0b   Etienne Pallier   NEW ACL centralis...
62
63
64
65
    // Si DEBUG, affiche plus d'infos
    //private $DEBUG=true;
    private $DEBUG=false;
    
6c4edfa3   Alexandre   First Commit LabI...
66
67
68
69
70
71
72
73
74
75
76
    /**
     * 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...
77
        'id' => false
6c4edfa3   Alexandre   First Commit LabI...
78
    ];
ed60c45e   Etienne Pallier   Nouveau script in...
79
    
4d55cf0b   Etienne Pallier   NEW ACL centralis...
80
81
82
83
84
    
    public function d($msg) {
        if ($this->DEBUG) pr($msg);
    }
    
da7f42f6   Etienne Pallier   Diverses simplifi...
85
86
    // Ce qui s'affiche quand on fait echo $entity
    public function __toString() { return $this->designation; }
2de8cefa   Etienne Pallier   Diverses simplifi...
87
    
4d55cf0b   Etienne Pallier   NEW ACL centralis...
88
89
    protected function hasStatus($status) { return $this->status == $status; }

2de8cefa   Etienne Pallier   Diverses simplifi...
90
91
92
93
94
95
96
97
98
99
100
101
    // (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'; }
4d55cf0b   Etienne Pallier   NEW ACL centralis...
102

2de8cefa   Etienne Pallier   Diverses simplifi...
103
    
92acc9fe   Etienne Pallier   Harmonisation (v3...
104
105
    // Ce matériel est utilisé ou déclaré par l'utilisateur $userfullname
    // is Owned Or Declared By User
4d55cf0b   Etienne Pallier   NEW ACL centralis...
106
    // fullname = "Pallier Etienne" (= champ "nom" du user : $user->nom)
2de8cefa   Etienne Pallier   Diverses simplifi...
107
    //public function isUsedOrCreatedByUser($user) {
92acc9fe   Etienne Pallier   Harmonisation (v3...
108
    //public function isOwnedOrDeclaredByUser($username) { 
bc6fe47e   Etienne Pallier   Version: 3.7.9.28
109
    public function belongsToUser($userfullname) {
c0c241ca   Etienne Pallier   Bugfixes et mise ...
110
        //debug("userfullname is $userfullname");
4d55cf0b   Etienne Pallier   NEW ACL centralis...
111
        $res = in_array($userfullname, [$this->nom_createur, $this->nom_responsable]);
c0c241ca   Etienne Pallier   Bugfixes et mise ...
112
        //$this->d("$userfullname in [ $this->nom_createur, $this->nom_responsable ] ? ".(int)$res);
4d55cf0b   Etienne Pallier   NEW ACL centralis...
113
        return $res;
2de8cefa   Etienne Pallier   Diverses simplifi...
114
    }
92acc9fe   Etienne Pallier   Harmonisation (v3...
115
116
    
    // Ce matériel a le même groupe que l'un de ceux de l'utilisateur courant
da7f42f6   Etienne Pallier   Diverses simplifi...
117
    public function isSameGroupAsUser($user_group_metier_id, $user_group_thematique_id) {
2de8cefa   Etienne Pallier   Diverses simplifi...
118
        // Responsable groupe métier ?
da7f42f6   Etienne Pallier   Diverses simplifi...
119
120
121
122
123
        //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...
124
    } // isSameGroupAsUser
2de8cefa   Etienne Pallier   Diverses simplifi...
125
    
bc6fe47e   Etienne Pallier   Version: 3.7.9.28
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
    /*
     * @return true si ce matériel peut être "géré" par l'utilisateur $u, 
     * en autorisant systématiquement à partir du role $from_role
     * (false sinon)
     *
     * Un utilisateur peut "gérer" (éditer, supprimer) un matériel existant ssi :
     * - a) il a au moins le profil $from_role (ADMIN, SUPERADMIN)
     * ou
     * - b) le matériel lui "appartient" (il en est l'utilisateur ou bien il a créé sa fiche)
     * ou
     * - c) il est RESPONSABLE et est du même groupe que le matériel
     */
    // Par défaut, autorisé à partir du profil utilisateur ADMIN ($role)
    public function isManageableByUserOrFromRole(User $u, $from_role='admin') {
        /*
         debug("utilisateur1:");
         debug($u);
         if (is_array($u)) $u = new User($u);
         debug("utilisateur2:");
         debug($u);
         */
        // a)
        if ($from_role=='admin' && $u->is_admin_or_more) return true;
        if ($from_role=='super' && $u->is_super) return true;
        // b)
        if ($this->belongsToUser($u->nom)) return true;
        //if ($u->ownsMatos($this)) return true;
        // c)
c0c241ca   Etienne Pallier   Bugfixes et mise ...
154
        $res = $u->is_resp && $this->isSameGroupAsUser($u->groupes_metier_id, $u->groupes_thematique_id);
bc6fe47e   Etienne Pallier   Version: 3.7.9.28
155
        return $res;
c0c241ca   Etienne Pallier   Bugfixes et mise ...
156
        //return $u->is_resp && $this->isSameGroupAsUser($u->groupes_metier_id, $u->groupes_thematique_id);
bc6fe47e   Etienne Pallier   Version: 3.7.9.28
157
158
159
160
        //return $this->isSameGroupAsMatos($m);
    }
    
    //@return true si ce matériel peut être "géré" par l'utilisateur $u, false sinon
4d55cf0b   Etienne Pallier   NEW ACL centralis...
161
162
163
164
165
166
167
168
169
170
171
172
173
    ///public function isManageableByUser(User $u) { return $this->isManageableByUserOrFromRole($u, 'admin'); }
    
    public function isDeleteableByUser(User $u) {
        // on autorise ADMIN(+) à supprimer un matos archivé
        if ($u->is_admin_or_more && $this->is_archived) return true;
        // sinon, règle par défaut
        return $this->is_created && $this->isManageableByUserOrFromRole($u, 'super'); 
    }

    // 'edit' et 'add' by copy
    public function isEditableOrCopiableByUser(User $u) {
        return $this->is_created && $this->isManageableByUserOrFromRole($u, 'admin');
    }
bc6fe47e   Etienne Pallier   Version: 3.7.9.28
174
175
176
177
178
179
180
181
182
183
184
185
186
187
    
    // Ce matériel peut être PRÊTÉ par $u
    // ATTENTION AU SENS : On ne regarde pas si $u peut EMPRUNTER, mais s'il peut PRETER (c'est pas pareil)
    public function canBeLentByUser(User $u) { return $this->is_validated && $this->isManageableByUserOrFromRole($u, 'super'); }
    //public function isLendableByUser(User $u) { return $this->isManageableByUserFromRole($u, 'super'); }
    
    // L'utilisateur $u peut créer un "suivi" de ce matériel
    // Même conditions que pour le prêt
    public function canBeSuiviByUser(User $u) { return $this->canBeLentByUser($u); }
        //return $m->is_validated && $this->isManageableByUserOrFromRole($u, 'super'); 

    public function canDeleteSuiviByUser(User $u) { return $this->isManageableByUserOrFromRole($u, 'super'); }
    //public function canDeleteSuiviByUser(User $u) { return $this->isManageableByUserOrFromRole($u, 'admin'); }
    
2de8cefa   Etienne Pallier   Diverses simplifi...
188
    
ed60c45e   Etienne Pallier   Nouveau script in...
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
    /* 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...
245
}