Blame view

tests/Fixture/MaterielsFixture.php 20.2 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
23
24
25
26
27
28
29
30
<?php
namespace App\Test\Fixture;

use Cake\TestSuite\Fixture\TestFixture;

/**
 * MaterielsFixture
 *
 */
class MaterielsFixture extends TestFixture
{

    /**
     * Fields
     *
     * @var array
     */
    // @codingStandardsIgnoreStart
    public $fields = [
        'id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null],
        'designation' => ['type' => 'string', 'length' => 50, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'sur_categorie_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
        'categorie_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
        'sous_categorie_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
        'numero_laboratoire' => ['type' => 'string', 'length' => 14, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'description' => ['type' => 'text', 'length' => null, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
        'materiel_administratif' => ['type' => 'boolean', 'length' => null, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
        'materiel_technique' => ['type' => 'boolean', 'length' => null, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
        'status' => ['type' => 'string', 'length' => 15, 'null' => true, 'default' => 'CREATED', 'comment' => '', 'precision' => null, 'fixed' => null],
        'date_acquisition' => ['type' => 'date', 'length' => null, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
9cfb4997   Alexandre   Version: 2.4.3.10
31
32
33
34
    	'date_fin_garantie' => ['type' => 'date', 'length' => null, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
    	'duree_garantie' => ['type' => 'integer', 'length' => 10, 'unsigned' => false, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
    	'unite_duree_garantie' => ['type' => 'string', 'length' => 30, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
    	'fournisseur' => ['type' => 'string', 'length' => 50, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
9212589e   Alexandre   Ajout tests (débu...
35
        'prix_ht' => ['type' => 'float', 'length' => 45, 'precision' => 0, 'unsigned' => true, 'null' => true, 'default' => null, 'comment' => ''],
6c4edfa3   Alexandre   First Commit LabI...
36
37
38
39
40
41
42
43
44
45
        'eotp' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'numero_commande' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'code_comptable' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'numero_serie' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'groupes_thematique_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
        'groupes_metier_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
        'numero_inventaire_organisme' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'numero_inventaire_old' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => 'Ancien numero inventaire', 'precision' => null, 'fixed' => null],
        'date_archivage' => ['type' => 'date', 'length' => null, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
        'etiquette' => ['type' => 'boolean', 'length' => null, 'null' => true, 'default' => '0', 'comment' => 'etiquette sur materiel oui ou non', 'precision' => null],
6c4edfa3   Alexandre   First Commit LabI...
46
47
48
49
50
51
52
53
54
55
        'lieu_detail' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'nom_responsable' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'email_responsable' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
        'nom_createur' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => 'nom du createur de la fiche', 'precision' => null, 'fixed' => null],
        'nom_modificateur' => ['type' => 'string', 'length' => 45, 'null' => true, 'default' => null, 'comment' => 'nom du modificateur de la fiche', 'precision' => null, 'fixed' => null],
        'created' => ['type' => 'datetime', 'length' => null, 'null' => true, 'default' => null, 'comment' => 'date et heure de creation de la fiche', 'precision' => null],
        'modified' => ['type' => 'datetime', 'length' => null, 'null' => true, 'default' => null, 'comment' => 'date et heure de modif de la fiche', 'precision' => null],
        'date_reception' => ['type' => 'date', 'length' => null, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
        'organisme_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
        'site_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => true, 'default' => '2', 'comment' => '', 'precision' => null, 'autoIncrement' => null],
302307ec   Alexandre   Version: 2.4.7.0
56
57
    	'hors_service' => ['type' => 'boolean', 'length' => null, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
    	'_indexes' => [
6c4edfa3   Alexandre   First Commit LabI...
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
            'fk_administrative_materials_sub_categories1' => ['type' => 'index', 'columns' => ['sous_categorie_id'], 'length' => []],
            'fk_materials_thematic_group1' => ['type' => 'index', 'columns' => ['groupes_thematique_id'], 'length' => []],
            'fk_materials_work_group1' => ['type' => 'index', 'columns' => ['groupes_metier_id'], 'length' => []],
            'fk_materiels_categories1' => ['type' => 'index', 'columns' => ['categorie_id'], 'length' => []],
            'fk_materiels_sur_categorie_id' => ['type' => 'index', 'columns' => ['sur_categorie_id'], 'length' => []],
            'fk_materiels_organisme_id' => ['type' => 'index', 'columns' => ['organisme_id'], 'length' => []],
            'fk_materiels_site_id' => ['type' => 'index', 'columns' => ['site_id'], 'length' => []],
        ],
        '_constraints' => [
            'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []],
            'numero_irap' => ['type' => 'unique', 'columns' => ['numero_laboratoire'], 'length' => []],
            'fk_administrative_materials_sub_categories1' => ['type' => 'foreign', 'columns' => ['sous_categorie_id'], 'references' => ['sous_categories', 'id'], 'update' => 'noAction', 'delete' => 'noAction', 'length' => []],
            'fk_materials_thematic_group1' => ['type' => 'foreign', 'columns' => ['groupes_thematique_id'], 'references' => ['groupes_thematiques', 'id'], 'update' => 'noAction', 'delete' => 'noAction', 'length' => []],
            'fk_materials_work_group1' => ['type' => 'foreign', 'columns' => ['groupes_metier_id'], 'references' => ['groupes_metiers', 'id'], 'update' => 'noAction', 'delete' => 'noAction', 'length' => []],
            'fk_materiels_categories1' => ['type' => 'foreign', 'columns' => ['categorie_id'], 'references' => ['categories', 'id'], 'update' => 'noAction', 'delete' => 'noAction', 'length' => []],
            'fk_materiels_organisme_id' => ['type' => 'foreign', 'columns' => ['organisme_id'], 'references' => ['organismes', 'id'], 'update' => 'noAction', 'delete' => 'noAction', 'length' => []],
            'fk_materiels_site_id' => ['type' => 'foreign', 'columns' => ['site_id'], 'references' => ['sites', 'id'], 'update' => 'noAction', 'delete' => 'noAction', 'length' => []],
            'fk_materiels_sur_categorie_id' => ['type' => 'foreign', 'columns' => ['sur_categorie_id'], 'references' => ['sur_categories', 'id'], 'update' => 'noAction', 'delete' => 'noAction', 'length' => []],
        ],
        '_options' => [
            'engine' => 'InnoDB',
            'collation' => 'latin1_swedish_ci'
        ],
    ];
    // @codingStandardsIgnoreEnd

    /**
     * Records
     *
     * @var array
     */
    public $records = [
        [
            'id' => 1,
183ce554   Alexandre   Ajout de test, su...
92
            'designation' => '1 tseT',
6c4edfa3   Alexandre   First Commit LabI...
93
94
95
            'sur_categorie_id' => 1,
            'categorie_id' => 1,
            'sous_categorie_id' => 1,
9212589e   Alexandre   Ajout tests (débu...
96
            'numero_laboratoire' => 'TEST-2016-0001',
6c4edfa3   Alexandre   First Commit LabI...
97
98
99
            'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.',
            'materiel_administratif' => 1,
            'materiel_technique' => 1,
9212589e   Alexandre   Ajout tests (débu...
100
            'status' => 'CREATED',
183ce554   Alexandre   Ajout de test, su...
101
            'date_acquisition' => '2014-04-19',
6c4edfa3   Alexandre   First Commit LabI...
102
            'fournisseur' => 'Lorem ipsum dolor sit amet',
183ce554   Alexandre   Ajout de test, su...
103
            'prix_ht' => 25,
6c4edfa3   Alexandre   First Commit LabI...
104
105
106
107
108
109
110
111
112
113
            'eotp' => 'Lorem ipsum dolor sit amet',
            'numero_commande' => 'Lorem ipsum dolor sit amet',
            'code_comptable' => 'Lorem ipsum dolor sit amet',
            'numero_serie' => 'Lorem ipsum dolor sit amet',
            'groupes_thematique_id' => 1,
            'groupes_metier_id' => 1,
            'numero_inventaire_organisme' => 'Lorem ipsum dolor sit amet',
            'numero_inventaire_old' => 'Lorem ipsum dolor sit amet',
            'date_archivage' => '2016-04-19',
            'etiquette' => 1,
6c4edfa3   Alexandre   First Commit LabI...
114
115
116
117
118
119
120
121
122
123
124
            'lieu_detail' => 'Lorem ipsum dolor sit amet',
            'nom_responsable' => 'Lorem ipsum dolor sit amet',
            'email_responsable' => 'Lorem ipsum dolor sit amet',
            'nom_createur' => 'Lorem ipsum dolor sit amet',
            'nom_modificateur' => 'Lorem ipsum dolor sit amet',
            'created' => '2016-04-19 09:09:29',
            'modified' => '2016-04-19 09:09:29',
            'date_reception' => '2016-04-19',
            'organisme_id' => 1,
            'site_id' => 1
        ],
9212589e   Alexandre   Ajout tests (débu...
125
126
127
128
129
130
131
132
133
134
135
    	[
    		'id' => 2,
    		'designation' => 'Test 2',
    		'sur_categorie_id' => 1,
    		'categorie_id' => 1,
    		'sous_categorie_id' => 1,
    		'numero_laboratoire' => 'TEST-2016-0002',
    		'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.',
    		'materiel_administratif' => 1,
    		'materiel_technique' => 1,
    		'status' => 'CREATED',
183ce554   Alexandre   Ajout de test, su...
136
    		'date_acquisition' => '2015-04-19',
9212589e   Alexandre   Ajout tests (débu...
137
    		'fournisseur' => 'Lorem ipsum dolor sit amet',
183ce554   Alexandre   Ajout de test, su...
138
    		'prix_ht' => 50,
9212589e   Alexandre   Ajout tests (débu...
139
140
141
142
143
144
145
146
147
148
    		'eotp' => 'Lorem ipsum dolor sit amet',
    		'numero_commande' => 'Lorem ipsum dolor sit amet',
    		'code_comptable' => 'Lorem ipsum dolor sit amet',
    		'numero_serie' => 'Lorem ipsum dolor sit amet',
    		'groupes_thematique_id' => 1,
    		'groupes_metier_id' => 1,
    		'numero_inventaire_organisme' => 'Lorem ipsum dolor sit amet',
    		'numero_inventaire_old' => 'Lorem ipsum dolor sit amet',
    		'date_archivage' => '2016-04-19',
    		'etiquette' => 1,
9212589e   Alexandre   Ajout tests (débu...
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
    		'lieu_detail' => 'Lorem ipsum dolor sit amet',
    		'nom_responsable' => 'Lorem ipsum dolor sit amet',
    		'email_responsable' => 'Lorem ipsum dolor sit amet',
    		'nom_createur' => 'Lorem ipsum dolor sit amet',
    		'nom_modificateur' => 'Lorem ipsum dolor sit amet',
    		'created' => '2016-04-19 09:09:29',
    		'modified' => '2016-04-19 09:09:29',
    		'date_reception' => '2016-04-19',
    		'organisme_id' => 1,
    		'site_id' => 1
    	],
    	[
    		'id' => 3,
    		'designation' => 'Test 3',
    		'sur_categorie_id' => 1,
    		'categorie_id' => 1,
    		'sous_categorie_id' => 1,
    		'numero_laboratoire' => 'TEST-2016-0003',
    		'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.',
    		'materiel_administratif' => 1,
    		'materiel_technique' => 1,
    		'status' => 'VALIDATED',
183ce554   Alexandre   Ajout de test, su...
171
    		'date_acquisition' => '2016-05-11',
9212589e   Alexandre   Ajout tests (débu...
172
    		'fournisseur' => 'Lorem ipsum dolor sit amet',
183ce554   Alexandre   Ajout de test, su...
173
    		'prix_ht' => 75,
9212589e   Alexandre   Ajout tests (débu...
174
175
176
177
178
179
180
181
182
183
    		'eotp' => 'Lorem ipsum dolor sit amet',
    		'numero_commande' => 'Lorem ipsum dolor sit amet',
    		'code_comptable' => 'Lorem ipsum dolor sit amet',
    		'numero_serie' => 'Lorem ipsum dolor sit amet',
    		'groupes_thematique_id' => 1,
    		'groupes_metier_id' => 1,
    		'numero_inventaire_organisme' => 'Lorem ipsum dolor sit amet',
    		'numero_inventaire_old' => 'Lorem ipsum dolor sit amet',
    		'date_archivage' => '2016-04-19',
    		'etiquette' => 1,
9212589e   Alexandre   Ajout tests (débu...
184
185
186
187
188
189
190
191
192
193
    		'lieu_detail' => 'Lorem ipsum dolor sit amet',
    		'nom_responsable' => 'Lorem ipsum dolor sit amet',
    		'email_responsable' => 'Lorem ipsum dolor sit amet',
    		'nom_createur' => 'Lorem ipsum dolor sit amet',
    		'nom_modificateur' => 'Lorem ipsum dolor sit amet',
    		'created' => '2016-04-19 09:09:29',
    		'modified' => '2016-04-19 09:09:29',
    		'date_reception' => '2016-04-19',
    		'organisme_id' => 1,
    		'site_id' => 1
30781a09   Alexandre   Version: 2.2.5.4
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
    	],
    		[
    		'id' => 11,
    		'designation' => 'Test 11',
    		'sur_categorie_id' => 1,
    		'categorie_id' => 1,
    		'sous_categorie_id' => 1,
    		'numero_laboratoire' => 'TEST-2016-0011',
    		'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.',
    		'materiel_administratif' => 1,
    		'materiel_technique' => 1,
    		'status' => 'CREATED',
    		'date_acquisition' => '2016-05-11',
    		'fournisseur' => 'Lorem ipsum dolor sit amet',
    		'prix_ht' => 75,
    		'eotp' => 'Lorem ipsum dolor sit amet',
    		'numero_commande' => 'Lorem ipsum dolor sit amet',
    		'code_comptable' => 'Lorem ipsum dolor sit amet',
    		'numero_serie' => 'Lorem ipsum dolor sit amet',
    		'groupes_thematique_id' => 1,
    		'groupes_metier_id' => 1,
    		'numero_inventaire_organisme' => 'Lorem ipsum dolor sit amet',
    		'numero_inventaire_old' => 'Lorem ipsum dolor sit amet',
    		'date_archivage' => '2016-04-19',
49ec2c4a   Alexandre   Version: 2.3.1.0
218
    		'etiquette' => 0,
30781a09   Alexandre   Version: 2.2.5.4
219
    		'lieu_detail' => 'Lorem ipsum dolor sit amet',
04a6b875   Alexandre   Version: 2.4.2.0
220
    		'nom_responsable' => 'test9 test0',
30781a09   Alexandre   Version: 2.2.5.4
221
    		'email_responsable' => 'Lorem ipsum dolor sit amet',
04a6b875   Alexandre   Version: 2.4.2.0
222
    		'nom_createur' => 'test9 test0',
30781a09   Alexandre   Version: 2.2.5.4
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
    		'nom_modificateur' => 'Lorem ipsum dolor sit amet',
    		'created' => '2016-04-19 09:09:29',
    		'modified' => '2016-04-19 09:09:29',
    		'date_reception' => '2016-04-19',
    		'organisme_id' => 1,
    		'site_id' => 1
    		],
    		[
    		'id' => 12,
    		'designation' => 'Test 12',
    		'sur_categorie_id' => 1,
    		'categorie_id' => 1,
    		'sous_categorie_id' => 1,
    		'numero_laboratoire' => 'TEST-2016-0012',
    		'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.',
    		'materiel_administratif' => 1,
    		'materiel_technique' => 1,
    		'status' => 'VALIDATED',
    		'date_acquisition' => '2016-05-11',
    		'fournisseur' => 'Lorem ipsum dolor sit amet',
    		'prix_ht' => 75,
    		'eotp' => 'Lorem ipsum dolor sit amet',
    		'numero_commande' => 'Lorem ipsum dolor sit amet',
    		'code_comptable' => 'Lorem ipsum dolor sit amet',
    		'numero_serie' => 'Lorem ipsum dolor sit amet',
    		'groupes_thematique_id' => 1,
    		'groupes_metier_id' => 1,
    		'numero_inventaire_organisme' => 'Lorem ipsum dolor sit amet',
    		'numero_inventaire_old' => 'Lorem ipsum dolor sit amet',
    		'date_archivage' => '2016-04-19',
    		'etiquette' => 1,
30781a09   Alexandre   Version: 2.2.5.4
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
    		'lieu_detail' => 'Lorem ipsum dolor sit amet',
    		'nom_responsable' => 'Lorem ipsum dolor sit amet',
    		'email_responsable' => 'Lorem ipsum dolor sit amet',
    		'nom_createur' => 'Lorem ipsum dolor sit amet',
    		'nom_modificateur' => 'Lorem ipsum dolor sit amet',
    		'created' => '2016-04-19 09:09:29',
    		'modified' => '2016-04-19 09:09:29',
    		'date_reception' => '2016-04-19',
    		'organisme_id' => 1,
    		'site_id' => 1
    		],
    		[
    		'id' => 13,
    		'designation' => 'Test 13',
    		'sur_categorie_id' => 1,
    		'categorie_id' => 1,
    		'sous_categorie_id' => 1,
    		'numero_laboratoire' => 'TEST-2016-0013',
    		'description' => 'TEST COPIE MATERIEL',
    		'materiel_administratif' => 1,
    		'materiel_technique' => 1,
    		'status' => 'TOBEARCHIVED',
    		'date_acquisition' => '2016-05-11',
    		'fournisseur' => 'Lorem ipsum dolor sit amet',
68964df5   Alexandre   Version: 2.4.2.2
278
279
280
281
282
283
284
285
286
287
288
    		'prix_ht' => 75,
    		'eotp' => 'Lorem ipsum dolor sit amet',
    		'numero_commande' => 'Lorem ipsum dolor sit amet',
    		'code_comptable' => 'Lorem ipsum dolor sit amet',
    		'numero_serie' => 'Lorem ipsum dolor sit amet',
    		'groupes_thematique_id' => 1,
    		'groupes_metier_id' => 1,
    		'numero_inventaire_organisme' => 'Lorem ipsum dolor sit amet',
    		'numero_inventaire_old' => 'Lorem ipsum dolor sit amet',
    		'date_archivage' => '2016-04-19',
    		'etiquette' => 1,
68964df5   Alexandre   Version: 2.4.2.2
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
    		'lieu_detail' => 'Lorem ipsum dolor sit amet',
    		'nom_responsable' => 'Jesus',
    		'email_responsable' => 'Lorem ipsum dolor sit amet',
    		'nom_createur' => 'Lorem ipsum dolor sit amet',
    		'nom_modificateur' => 'Lorem ipsum dolor sit amet',
    		'created' => '2016-04-19 09:09:29',
    		'modified' => '2016-04-19 09:09:29',
    		'date_reception' => '2016-04-19',
    		'organisme_id' => 1,
    		'site_id' => 1
    		],
    		[
    		'id' => 14,
    		'designation' => 'Test 14',
    		'sur_categorie_id' => 1,
    		'categorie_id' => 1,
    		'sous_categorie_id' => 1,
    		'numero_laboratoire' => 'TEST-2016-0014',
    		'description' => 'blabla',
    		'materiel_administratif' => 1,
    		'materiel_technique' => 1,
    		'status' => 'ARCHIVED',
    		'date_acquisition' => '2016-05-11',
    		'fournisseur' => 'Lorem ipsum dolor sit amet',
30781a09   Alexandre   Version: 2.2.5.4
313
314
315
316
317
318
319
320
321
322
323
    		'prix_ht' => 75,
    		'eotp' => 'Lorem ipsum dolor sit amet',
    		'numero_commande' => 'Lorem ipsum dolor sit amet',
    		'code_comptable' => 'Lorem ipsum dolor sit amet',
    		'numero_serie' => 'Lorem ipsum dolor sit amet',
    		'groupes_thematique_id' => 1,
    		'groupes_metier_id' => 1,
    		'numero_inventaire_organisme' => 'Lorem ipsum dolor sit amet',
    		'numero_inventaire_old' => 'Lorem ipsum dolor sit amet',
    		'date_archivage' => '2016-04-19',
    		'etiquette' => 1,
30781a09   Alexandre   Version: 2.2.5.4
324
325
326
327
328
329
330
331
332
333
334
    		'lieu_detail' => 'Lorem ipsum dolor sit amet',
    		'nom_responsable' => 'Jesus',
    		'email_responsable' => 'Lorem ipsum dolor sit amet',
    		'nom_createur' => 'Lorem ipsum dolor sit amet',
    		'nom_modificateur' => 'Lorem ipsum dolor sit amet',
    		'created' => '2016-04-19 09:09:29',
    		'modified' => '2016-04-19 09:09:29',
    		'date_reception' => '2016-04-19',
    		'organisme_id' => 1,
    		'site_id' => 1
    		]
6c4edfa3   Alexandre   First Commit LabI...
335
336
    ];
}