Blame view

src/Model/Entity/Document.php 1.64 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
<?php
namespace App\Model\Entity;

use Cake\ORM\Entity;

/**
 * Document Entity.
 *
 * @property int $id
 * @property string $type_doc
 * @property string $chemin
4fd23929   Alexandre   Version: 2.5.0
12
 * @property string $description
9b4da83b   Alexandre   Version: 2.5.0.0
13
 * @property string $nom
4dae83a2   Alexandre   Version: 2.5.1.0
14
 * @property bool $photo
6c4edfa3   Alexandre   First Commit LabI...
15
16
17
18
 * @property int $materiel_id
 * @property \App\Model\Entity\Materiel $materiel
 * @property int $suivi_id
 * @property \App\Model\Entity\Suivi $suivi
9b4da83b   Alexandre   Version: 2.5.0.0
19
20
 * @property int $type_document_id
 * @property \App\Model\Entity\TypeDocument $type_document
6c4edfa3   Alexandre   First Commit LabI...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 */
class Document 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,
63c3cb16   epallier   Nombreux petits b...
36
        'id' => false
6c4edfa3   Alexandre   First Commit LabI...
37
    ];
d6da8a54   Etienne Pallier   Nouveau workflow ...
38
39
40
41
42
43
44
45
46
47
48
49
50
51
    
    // (EP 20200504)
    // Propriétés virtuelles (attributs virtuels de l'entité)
    // A utiliser dans le controleur ainsi : $materiel->is_devis
    //protected function _getIsCreated() { return $this->_fields['status'] == 'CREATED'; }
    protected function _getIsDevis() { 
        //debug($this);
        /*
        // Ceci permettra des accès du type $document->type_document->nom depuis la vue
        $document = $this->Documents->get($id, [
            'contain' => ['TypeDocuments']
        ])
        $doc_type = $this->Documents->TypeDocuments->get($this->type_document_id)['nom'];
        */
557e9884   Etienne Pallier   Bouton "Commander...
52
        return strtoupper(trim($this->type_document->nom)) == 'DEVIS';
d6da8a54   Etienne Pallier   Nouveau workflow ...
53
54
    }
    
6c4edfa3   Alexandre   First Commit LabI...
55
}