Blame view

src/Controller/DocumentsController.php 5.82 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
<?php
namespace App\Controller;

use App\Controller\AppController;
6bb4a0f7   Alexandre   Version: 2.2.2
5
6
use Cake\ORM\TableRegistry;
use FPDF;
6c4edfa3   Alexandre   First Commit LabI...
7
8
9
10
11
12
13
14
15

/**
 * Documents Controller
 *
 * @property \App\Model\Table\DocumentsTable $Documents
 */
class DocumentsController extends AppController
{

04a6b875   Alexandre   Version: 2.4.2.0
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
	/**
	 * @param $user
	 *
	 * Give authorization for documents
	 *
	 * @return boolean
	 */
	public function isAuthorized($user)
	{

		if (in_array($action, ['admission', 'sortie'])) {
			if (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur'])) {
				return true;
			}
		}
	
		return parent::isAuthorized($user);
	}
	
6c4edfa3   Alexandre   First Commit LabI...
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
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->paginate = [
            'contain' => ['Materiels', 'Suivis']
        ];
        $documents = $this->paginate($this->Documents);

        $this->set(compact('documents'));
        $this->set('_serialize', ['documents']);
    }

    /**
     * View method
     *
     * @param string|null $id Document id.
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function view($id = null)
    {
        $document = $this->Documents->get($id, [
            'contain' => ['Materiels', 'Suivis']
        ]);

        $this->set('document', $document);
        $this->set('_serialize', ['document']);
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
        $document = $this->Documents->newEntity();
        if ($this->request->is('post')) {
            $document = $this->Documents->patchEntity($document, $this->request->data);
            if ($this->Documents->save($document)) {
3601f4f5   Alexandre   Traduction messag...
79
                $this->Flash->success(__('Le fichier a bien été ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
80
81
                return $this->redirect(['action' => 'index']);
            } else {
3601f4f5   Alexandre   Traduction messag...
82
                $this->Flash->error(__('Le fichier n\'a pas pu être ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
            }
        }
        $materiels = $this->Documents->Materiels->find('list', ['limit' => 200]);
        $suivis = $this->Documents->Suivis->find('list', ['limit' => 200]);
        $this->set(compact('document', 'materiels', 'suivis'));
        $this->set('_serialize', ['document']);
    }

    /**
     * Edit method
     *
     * @param string|null $id Document id.
     * @return \Cake\Network\Response|void Redirects on successful edit, renders view otherwise.
     * @throws \Cake\Network\Exception\NotFoundException When record not found.
     */
    public function edit($id = null)
    {
        $document = $this->Documents->get($id, [
            'contain' => []
        ]);
        if ($this->request->is(['patch', 'post', 'put'])) {
            $document = $this->Documents->patchEntity($document, $this->request->data);
            if ($this->Documents->save($document)) {
3601f4f5   Alexandre   Traduction messag...
106
                $this->Flash->success(__('Le fichier a bien été édité.'));
6c4edfa3   Alexandre   First Commit LabI...
107
108
                return $this->redirect(['action' => 'index']);
            } else {
3601f4f5   Alexandre   Traduction messag...
109
                $this->Flash->error(__('Le fichier n\'a pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
            }
        }
        $materiels = $this->Documents->Materiels->find('list', ['limit' => 200]);
        $suivis = $this->Documents->Suivis->find('list', ['limit' => 200]);
        $this->set(compact('document', 'materiels', 'suivis'));
        $this->set('_serialize', ['document']);
    }

    /**
     * Delete method
     *
     * @param string|null $id Document id.
     * @return \Cake\Network\Response|null Redirects to index.
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function delete($id = null)
    {
        $this->request->allowMethod(['post', 'delete']);
        $document = $this->Documents->get($id);
        if ($this->Documents->delete($document)) {
3601f4f5   Alexandre   Traduction messag...
130
            $this->Flash->success(__('Le fichier a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
131
        } else {
3601f4f5   Alexandre   Traduction messag...
132
            $this->Flash->error(__('Le fichier n\'a pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
133
134
135
        }
        return $this->redirect(['action' => 'index']);
    }
6bb4a0f7   Alexandre   Version: 2.2.2
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
    
    
    public function sortie($labNumber) {   
    	$this->set('fpdf', new FPDF ( 'P', 'mm', 'A4' ));
    }
    
    public function admission($labNumber) {
    	
    	$this->set ( 'fpdf', new FPDF ( 'P', 'mm', 'A4' ) );
    	// Find the concerned materiel
    	$materiel = TableRegistry::get('Materiels')->find('all', ['conditions' => ['numero_laboratoire' => $labNumber]])->first(); // End find
    	
    	// Get the administration user name
    	$userName = $this->Auth->user('username');
    	$numeroLab = $materiel->numero_laboratoire;
    	$dateAcquisition = $materiel->date_acquisition;
    	// convert to French format dd-mm-yyyy :
    	$dateAcquisition = date ( "d-m-Y", strtotime ( $dateAcquisition ) );
    	$numeroCommande = $materiel->numero_commande;
    	$designation = $materiel->designation;
    	if(isset($materiel->organisme_id) && !empty($materiel->organisme_id)) {
    		$organisme = TableRegistry::get('Organismes')->find('all')->where(['id =' => $materiel->organisme_id])->first()->nom;
    	}
    	else {
    		$organisme = "";
    	}

    	$fournisseur = $materiel->fournisseur;
    	$numeroOrganisme = $materiel->numero_inventaire_organisme;
    	$eotp = $materiel->eotp;
    	$prix = $materiel->prix_ht;
    
    	// Build the data array
    	$TDoc = [
    			'organisme' => $organisme,
    			'numlab' => $numeroLab,
    			'designation' => $designation,
    			'dateAcquis' => $dateAcquisition,
    			'numCde' => $numeroCommande,
    			'fournisseur' => $fournisseur,
    			'eotp' => $eotp,
    			'prix' => $prix,
    			'numOrg' => $numeroOrganisme
    	];
    
    	// set the data for the document (accessible par $data dans le document)
    	$this->set ( 'data', $TDoc );
    
    } // End fct admission
    
    
6c4edfa3   Alexandre   First Commit LabI...
187
}