|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* This file is part of the core-library package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) 2018 WEBEWEB |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace WBW\Library\Core\Quadratus\Model\Proprete; |
|
13
|
|
|
|
|
14
|
|
|
use DateTime; |
|
15
|
|
|
|
|
16
|
|
|
/** |
|
17
|
|
|
* Bon trav prev model. |
|
18
|
|
|
* |
|
19
|
|
|
* @author webeweb <https://github.com/webeweb/> |
|
20
|
|
|
* @package WBW\Library\Core\Quadratus\Model\Proprete |
|
21
|
|
|
*/ |
|
22
|
|
|
class BonTravPrev { |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* Ad b t b t q. |
|
26
|
|
|
* |
|
27
|
|
|
* @var string |
|
28
|
|
|
*/ |
|
29
|
|
|
private $adBTBTQ; |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* Ad b t bureau distributeur. |
|
33
|
|
|
* |
|
34
|
|
|
* @var string |
|
35
|
|
|
*/ |
|
36
|
|
|
private $adBTBureauDistributeur; |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* Ad b t civilite. |
|
40
|
|
|
* |
|
41
|
|
|
* @var string |
|
42
|
|
|
*/ |
|
43
|
|
|
private $adBTCivilite; |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* Ad b t code pays. |
|
47
|
|
|
* |
|
48
|
|
|
* @var string |
|
49
|
|
|
*/ |
|
50
|
|
|
private $adBTCodePays; |
|
51
|
|
|
|
|
52
|
|
|
/** |
|
53
|
|
|
* Ad b t code postal. |
|
54
|
|
|
* |
|
55
|
|
|
* @var string |
|
56
|
|
|
*/ |
|
57
|
|
|
private $adBTCodePostal; |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* Ad b t complement. |
|
61
|
|
|
* |
|
62
|
|
|
* @var string |
|
63
|
|
|
*/ |
|
64
|
|
|
private $adBTComplement; |
|
65
|
|
|
|
|
66
|
|
|
/** |
|
67
|
|
|
* Ad b t nom. |
|
68
|
|
|
* |
|
69
|
|
|
* @var string |
|
70
|
|
|
*/ |
|
71
|
|
|
private $adBTNom; |
|
72
|
|
|
|
|
73
|
|
|
/** |
|
74
|
|
|
* Ad b t nom suite. |
|
75
|
|
|
* |
|
76
|
|
|
* @var string |
|
77
|
|
|
*/ |
|
78
|
|
|
private $adBTNomSuite; |
|
79
|
|
|
|
|
80
|
|
|
/** |
|
81
|
|
|
* Ad b t nom voie. |
|
82
|
|
|
* |
|
83
|
|
|
* @var string |
|
84
|
|
|
*/ |
|
85
|
|
|
private $adBTNomVoie; |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* Ad b t num voie. |
|
89
|
|
|
* |
|
90
|
|
|
* @var string |
|
91
|
|
|
*/ |
|
92
|
|
|
private $adBTNumVoie; |
|
93
|
|
|
|
|
94
|
|
|
/** |
|
95
|
|
|
* Ad f b t q. |
|
96
|
|
|
* |
|
97
|
|
|
* @var string |
|
98
|
|
|
*/ |
|
99
|
|
|
private $adFBTQ; |
|
100
|
|
|
|
|
101
|
|
|
/** |
|
102
|
|
|
* Ad f bureau distributeur. |
|
103
|
|
|
* |
|
104
|
|
|
* @var string |
|
105
|
|
|
*/ |
|
106
|
|
|
private $adFBureauDistributeur; |
|
107
|
|
|
|
|
108
|
|
|
/** |
|
109
|
|
|
* Ad f civilite. |
|
110
|
|
|
* |
|
111
|
|
|
* @var string |
|
112
|
|
|
*/ |
|
113
|
|
|
private $adFCivilite; |
|
114
|
|
|
|
|
115
|
|
|
/** |
|
116
|
|
|
* Ad f code pays. |
|
117
|
|
|
* |
|
118
|
|
|
* @var string |
|
119
|
|
|
*/ |
|
120
|
|
|
private $adFCodePays; |
|
121
|
|
|
|
|
122
|
|
|
/** |
|
123
|
|
|
* Ad f code postal. |
|
124
|
|
|
* |
|
125
|
|
|
* @var string |
|
126
|
|
|
*/ |
|
127
|
|
|
private $adFCodePostal; |
|
128
|
|
|
|
|
129
|
|
|
/** |
|
130
|
|
|
* Ad f complement. |
|
131
|
|
|
* |
|
132
|
|
|
* @var string |
|
133
|
|
|
*/ |
|
134
|
|
|
private $adFComplement; |
|
135
|
|
|
|
|
136
|
|
|
/** |
|
137
|
|
|
* Ad f nom. |
|
138
|
|
|
* |
|
139
|
|
|
* @var string |
|
140
|
|
|
*/ |
|
141
|
|
|
private $adFNom; |
|
142
|
|
|
|
|
143
|
|
|
/** |
|
144
|
|
|
* Ad f nom suite. |
|
145
|
|
|
* |
|
146
|
|
|
* @var string |
|
147
|
|
|
*/ |
|
148
|
|
|
private $adFNomSuite; |
|
149
|
|
|
|
|
150
|
|
|
/** |
|
151
|
|
|
* Ad f nom suite2. |
|
152
|
|
|
* |
|
153
|
|
|
* @var string |
|
154
|
|
|
*/ |
|
155
|
|
|
private $adFNomSuite2; |
|
156
|
|
|
|
|
157
|
|
|
/** |
|
158
|
|
|
* Ad f nom suite3. |
|
159
|
|
|
* |
|
160
|
|
|
* @var string |
|
161
|
|
|
*/ |
|
162
|
|
|
private $adFNomSuite3; |
|
163
|
|
|
|
|
164
|
|
|
/** |
|
165
|
|
|
* Ad f nom voie. |
|
166
|
|
|
* |
|
167
|
|
|
* @var string |
|
168
|
|
|
*/ |
|
169
|
|
|
private $adFNomVoie; |
|
170
|
|
|
|
|
171
|
|
|
/** |
|
172
|
|
|
* Ad f num voie. |
|
173
|
|
|
* |
|
174
|
|
|
* @var string |
|
175
|
|
|
*/ |
|
176
|
|
|
private $adFNumVoie; |
|
177
|
|
|
|
|
178
|
|
|
/** |
|
179
|
|
|
* Adresse b t saisie. |
|
180
|
|
|
* |
|
181
|
|
|
* @var boolean |
|
182
|
|
|
*/ |
|
183
|
|
|
private $adresseBTSaisie; |
|
184
|
|
|
|
|
185
|
|
|
/** |
|
186
|
|
|
* Adresse facturation saisie. |
|
187
|
|
|
* |
|
188
|
|
|
* @var boolean |
|
189
|
|
|
*/ |
|
190
|
|
|
private $adresseFacturationSaisie; |
|
191
|
|
|
|
|
192
|
|
|
/** |
|
193
|
|
|
* B t copie. |
|
194
|
|
|
* |
|
195
|
|
|
* @var boolean |
|
196
|
|
|
*/ |
|
197
|
|
|
private $bTCopie; |
|
198
|
|
|
|
|
199
|
|
|
/** |
|
200
|
|
|
* B t devis deja facture. |
|
201
|
|
|
* |
|
202
|
|
|
* @var boolean |
|
203
|
|
|
*/ |
|
204
|
|
|
private $bTDevisDejaFacture; |
|
205
|
|
|
|
|
206
|
|
|
/** |
|
207
|
|
|
* B t valide. |
|
208
|
|
|
* |
|
209
|
|
|
* @var boolean |
|
210
|
|
|
*/ |
|
211
|
|
|
private $bTValide; |
|
212
|
|
|
|
|
213
|
|
|
/** |
|
214
|
|
|
* Code affaire. |
|
215
|
|
|
* |
|
216
|
|
|
* @var string |
|
217
|
|
|
*/ |
|
218
|
|
|
private $codeAffaire; |
|
219
|
|
|
|
|
220
|
|
|
/** |
|
221
|
|
|
* Code chantier. |
|
222
|
|
|
* |
|
223
|
|
|
* @var string |
|
224
|
|
|
*/ |
|
225
|
|
|
private $codeChantier; |
|
226
|
|
|
|
|
227
|
|
|
/** |
|
228
|
|
|
* Code client. |
|
229
|
|
|
* |
|
230
|
|
|
* @var string |
|
231
|
|
|
*/ |
|
232
|
|
|
private $codeClient; |
|
233
|
|
|
|
|
234
|
|
|
/** |
|
235
|
|
|
* Code collaborateur. |
|
236
|
|
|
* |
|
237
|
|
|
* @var string |
|
238
|
|
|
*/ |
|
239
|
|
|
private $codeCollaborateur; |
|
240
|
|
|
|
|
241
|
|
|
/** |
|
242
|
|
|
* Code equipe. |
|
243
|
|
|
* |
|
244
|
|
|
* @var string |
|
245
|
|
|
*/ |
|
246
|
|
|
private $codeEquipe; |
|
247
|
|
|
|
|
248
|
|
|
/** |
|
249
|
|
|
* Code regroupement devis. |
|
250
|
|
|
* |
|
251
|
|
|
* @var string |
|
252
|
|
|
*/ |
|
253
|
|
|
private $codeRegroupementDevis; |
|
254
|
|
|
|
|
255
|
|
|
/** |
|
256
|
|
|
* Code tache type. |
|
257
|
|
|
* |
|
258
|
|
|
* @var string |
|
259
|
|
|
*/ |
|
260
|
|
|
private $codeTacheType; |
|
261
|
|
|
|
|
262
|
|
|
/** |
|
263
|
|
|
* Code tournee. |
|
264
|
|
|
* |
|
265
|
|
|
* @var string |
|
266
|
|
|
*/ |
|
267
|
|
|
private $codeTournee; |
|
268
|
|
|
|
|
269
|
|
|
/** |
|
270
|
|
|
* Critere bool1. |
|
271
|
|
|
* |
|
272
|
|
|
* @var boolean |
|
273
|
|
|
*/ |
|
274
|
|
|
private $critereBool1; |
|
275
|
|
|
|
|
276
|
|
|
/** |
|
277
|
|
|
* Critere bool2. |
|
278
|
|
|
* |
|
279
|
|
|
* @var boolean |
|
280
|
|
|
*/ |
|
281
|
|
|
private $critereBool2; |
|
282
|
|
|
|
|
283
|
|
|
/** |
|
284
|
|
|
* Critere byte1. |
|
285
|
|
|
* |
|
286
|
|
|
* @var string |
|
287
|
|
|
*/ |
|
288
|
|
|
private $critereByte1; |
|
289
|
|
|
|
|
290
|
|
|
/** |
|
291
|
|
|
* Critere liste1. |
|
292
|
|
|
* |
|
293
|
|
|
* @var string |
|
294
|
|
|
*/ |
|
295
|
|
|
private $critereListe1; |
|
296
|
|
|
|
|
297
|
|
|
/** |
|
298
|
|
|
* Critere liste2. |
|
299
|
|
|
* |
|
300
|
|
|
* @var string |
|
301
|
|
|
*/ |
|
302
|
|
|
private $critereListe2; |
|
303
|
|
|
|
|
304
|
|
|
/** |
|
305
|
|
|
* Critere numerique1. |
|
306
|
|
|
* |
|
307
|
|
|
* @var float |
|
308
|
|
|
*/ |
|
309
|
|
|
private $critereNumerique1; |
|
310
|
|
|
|
|
311
|
|
|
/** |
|
312
|
|
|
* Critere numerique2. |
|
313
|
|
|
* |
|
314
|
|
|
* @var float |
|
315
|
|
|
*/ |
|
316
|
|
|
private $critereNumerique2; |
|
317
|
|
|
|
|
318
|
|
|
/** |
|
319
|
|
|
* Critere texte1. |
|
320
|
|
|
* |
|
321
|
|
|
* @var string |
|
322
|
|
|
*/ |
|
323
|
|
|
private $critereTexte1; |
|
324
|
|
|
|
|
325
|
|
|
/** |
|
326
|
|
|
* Critere texte2. |
|
327
|
|
|
* |
|
328
|
|
|
* @var string |
|
329
|
|
|
*/ |
|
330
|
|
|
private $critereTexte2; |
|
331
|
|
|
|
|
332
|
|
|
/** |
|
333
|
|
|
* Date passage. |
|
334
|
|
|
* |
|
335
|
|
|
* @var DateTime |
|
336
|
|
|
*/ |
|
337
|
|
|
private $datePassage; |
|
338
|
|
|
|
|
339
|
|
|
/** |
|
340
|
|
|
* Date premier passage. |
|
341
|
|
|
* |
|
342
|
|
|
* @var DateTime |
|
343
|
|
|
*/ |
|
344
|
|
|
private $datePremierPassage; |
|
345
|
|
|
|
|
346
|
|
|
/** |
|
347
|
|
|
* Date transfert. |
|
348
|
|
|
* |
|
349
|
|
|
* @var DateTime |
|
350
|
|
|
*/ |
|
351
|
|
|
private $dateTransfert; |
|
352
|
|
|
|
|
353
|
|
|
/** |
|
354
|
|
|
* Description. |
|
355
|
|
|
* |
|
356
|
|
|
* @var string |
|
357
|
|
|
*/ |
|
358
|
|
|
private $description; |
|
359
|
|
|
|
|
360
|
|
|
/** |
|
361
|
|
|
* Duree pointee. |
|
362
|
|
|
* |
|
363
|
|
|
* @var float |
|
364
|
|
|
*/ |
|
365
|
|
|
private $dureePointee; |
|
366
|
|
|
|
|
367
|
|
|
/** |
|
368
|
|
|
* Duree prevue. |
|
369
|
|
|
* |
|
370
|
|
|
* @var float |
|
371
|
|
|
*/ |
|
372
|
|
|
private $dureePrevue; |
|
373
|
|
|
|
|
374
|
|
|
/** |
|
375
|
|
|
* Duree validee. |
|
376
|
|
|
* |
|
377
|
|
|
* @var float |
|
378
|
|
|
*/ |
|
379
|
|
|
private $dureeValidee; |
|
380
|
|
|
|
|
381
|
|
|
/** |
|
382
|
|
|
* Employe signe mob. |
|
383
|
|
|
* |
|
384
|
|
|
* @var string |
|
385
|
|
|
*/ |
|
386
|
|
|
private $employeSigneMob; |
|
387
|
|
|
|
|
388
|
|
|
/** |
|
389
|
|
|
* Gestion planning. |
|
390
|
|
|
* |
|
391
|
|
|
* @var boolean |
|
392
|
|
|
*/ |
|
393
|
|
|
private $gestionPlanning; |
|
394
|
|
|
|
|
395
|
|
|
/** |
|
396
|
|
|
* Guid mob. |
|
397
|
|
|
* |
|
398
|
|
|
* @var string |
|
399
|
|
|
*/ |
|
400
|
|
|
private $guidMob; |
|
401
|
|
|
|
|
402
|
|
|
/** |
|
403
|
|
|
* Heure deb. |
|
404
|
|
|
* |
|
405
|
|
|
* @var DateTime |
|
406
|
|
|
*/ |
|
407
|
|
|
private $heureDeb; |
|
408
|
|
|
|
|
409
|
|
|
/** |
|
410
|
|
|
* Latitude. |
|
411
|
|
|
* |
|
412
|
|
|
* @var float |
|
413
|
|
|
*/ |
|
414
|
|
|
private $latitude; |
|
415
|
|
|
|
|
416
|
|
|
/** |
|
417
|
|
|
* Libelle. |
|
418
|
|
|
* |
|
419
|
|
|
* @var string |
|
420
|
|
|
*/ |
|
421
|
|
|
private $libelle; |
|
422
|
|
|
|
|
423
|
|
|
/** |
|
424
|
|
|
* Lien document. |
|
425
|
|
|
* |
|
426
|
|
|
* @var string |
|
427
|
|
|
*/ |
|
428
|
|
|
private $lienDocument; |
|
429
|
|
|
|
|
430
|
|
|
/** |
|
431
|
|
|
* Longitude. |
|
432
|
|
|
* |
|
433
|
|
|
* @var float |
|
434
|
|
|
*/ |
|
435
|
|
|
private $longitude; |
|
436
|
|
|
|
|
437
|
|
|
/** |
|
438
|
|
|
* Montant h t devis. |
|
439
|
|
|
* |
|
440
|
|
|
* @var float |
|
441
|
|
|
*/ |
|
442
|
|
|
private $montantHTDevis; |
|
443
|
|
|
|
|
444
|
|
|
/** |
|
445
|
|
|
* Nb jours pointes. |
|
446
|
|
|
* |
|
447
|
|
|
* @var float |
|
448
|
|
|
*/ |
|
449
|
|
|
private $nbJoursPointes; |
|
450
|
|
|
|
|
451
|
|
|
/** |
|
452
|
|
|
* Nb jours prevus. |
|
453
|
|
|
* |
|
454
|
|
|
* @var float |
|
455
|
|
|
*/ |
|
456
|
|
|
private $nbJoursPrevus; |
|
457
|
|
|
|
|
458
|
|
|
/** |
|
459
|
|
|
* Nombre employes. |
|
460
|
|
|
* |
|
461
|
|
|
* @var int |
|
462
|
|
|
*/ |
|
463
|
|
|
private $nombreEmployes; |
|
464
|
|
|
|
|
465
|
|
|
/** |
|
466
|
|
|
* Non traite. |
|
467
|
|
|
* |
|
468
|
|
|
* @var boolean |
|
469
|
|
|
*/ |
|
470
|
|
|
private $nonTraite; |
|
471
|
|
|
|
|
472
|
|
|
/** |
|
473
|
|
|
* Num b t. |
|
474
|
|
|
* |
|
475
|
|
|
* @var int |
|
476
|
|
|
*/ |
|
477
|
|
|
private $numBT; |
|
478
|
|
|
|
|
479
|
|
|
/** |
|
480
|
|
|
* Numero devis. |
|
481
|
|
|
* |
|
482
|
|
|
* @var string |
|
483
|
|
|
*/ |
|
484
|
|
|
private $numeroDevis; |
|
485
|
|
|
|
|
486
|
|
|
/** |
|
487
|
|
|
* Numero facture. |
|
488
|
|
|
* |
|
489
|
|
|
* @var string |
|
490
|
|
|
*/ |
|
491
|
|
|
private $numeroFacture; |
|
492
|
|
|
|
|
493
|
|
|
/** |
|
494
|
|
|
* Numero p j. |
|
495
|
|
|
* |
|
496
|
|
|
* @var int |
|
497
|
|
|
*/ |
|
498
|
|
|
private $numeroPJ; |
|
499
|
|
|
|
|
500
|
|
|
/** |
|
501
|
|
|
* Observation client. |
|
502
|
|
|
* |
|
503
|
|
|
* @var string |
|
504
|
|
|
*/ |
|
505
|
|
|
private $observationClient; |
|
506
|
|
|
|
|
507
|
|
|
/** |
|
508
|
|
|
* Observation interne. |
|
509
|
|
|
* |
|
510
|
|
|
* @var string |
|
511
|
|
|
*/ |
|
512
|
|
|
private $observationInterne; |
|
513
|
|
|
|
|
514
|
|
|
/** |
|
515
|
|
|
* Occasionnel. |
|
516
|
|
|
* |
|
517
|
|
|
* @var boolean |
|
518
|
|
|
*/ |
|
519
|
|
|
private $occasionnel; |
|
520
|
|
|
|
|
521
|
|
|
/** |
|
522
|
|
|
* Plusieurs jours. |
|
523
|
|
|
* |
|
524
|
|
|
* @var boolean |
|
525
|
|
|
*/ |
|
526
|
|
|
private $plusieursJours; |
|
527
|
|
|
|
|
528
|
|
|
/** |
|
529
|
|
|
* Plusieurs mois. |
|
530
|
|
|
* |
|
531
|
|
|
* @var boolean |
|
532
|
|
|
*/ |
|
533
|
|
|
private $plusieursMois; |
|
534
|
|
|
|
|
535
|
|
|
/** |
|
536
|
|
|
* Poste rent. |
|
537
|
|
|
* |
|
538
|
|
|
* @var string |
|
539
|
|
|
*/ |
|
540
|
|
|
private $posteRent; |
|
541
|
|
|
|
|
542
|
|
|
/** |
|
543
|
|
|
* Proratise. |
|
544
|
|
|
* |
|
545
|
|
|
* @var boolean |
|
546
|
|
|
*/ |
|
547
|
|
|
private $proratise; |
|
548
|
|
|
|
|
549
|
|
|
/** |
|
550
|
|
|
* Signataire. |
|
551
|
|
|
* |
|
552
|
|
|
* @var string |
|
553
|
|
|
*/ |
|
554
|
|
|
private $signataire; |
|
555
|
|
|
|
|
556
|
|
|
/** |
|
557
|
|
|
* Signe. |
|
558
|
|
|
* |
|
559
|
|
|
* @var boolean |
|
560
|
|
|
*/ |
|
561
|
|
|
private $signe; |
|
562
|
|
|
|
|
563
|
|
|
/** |
|
564
|
|
|
* Start mob. |
|
565
|
|
|
* |
|
566
|
|
|
* @var string |
|
567
|
|
|
*/ |
|
568
|
|
|
private $startMob; |
|
569
|
|
|
|
|
570
|
|
|
/** |
|
571
|
|
|
* Type b t. |
|
572
|
|
|
* |
|
573
|
|
|
* @var string |
|
574
|
|
|
*/ |
|
575
|
|
|
private $typeBT; |
|
576
|
|
|
|
|
577
|
|
|
/** |
|
578
|
|
|
* Type b t saisi. |
|
579
|
|
|
* |
|
580
|
|
|
* @var string |
|
581
|
|
|
*/ |
|
582
|
|
|
private $typeBTSaisi; |
|
583
|
|
|
|
|
584
|
|
|
/** |
|
585
|
|
|
* Uniq i d blocage. |
|
586
|
|
|
* |
|
587
|
|
|
* @var string |
|
588
|
|
|
*/ |
|
589
|
|
|
private $uniqIDBlocage; |
|
590
|
|
|
|
|
591
|
|
|
/** |
|
592
|
|
|
* Via. |
|
593
|
|
|
* |
|
594
|
|
|
* @var string |
|
595
|
|
|
*/ |
|
596
|
|
|
private $via; |
|
597
|
|
|
|
|
598
|
|
|
/** |
|
599
|
|
|
* reference1 devis. |
|
600
|
|
|
* |
|
601
|
|
|
* @var string |
|
602
|
|
|
*/ |
|
603
|
|
|
private $reference1Devis; |
|
604
|
|
|
|
|
605
|
|
|
/** |
|
606
|
|
|
* reference2 devis. |
|
607
|
|
|
* |
|
608
|
|
|
* @var string |
|
609
|
|
|
*/ |
|
610
|
|
|
private $reference2Devis; |
|
611
|
|
|
|
|
612
|
|
|
/** |
|
613
|
|
|
* Constructor. |
|
614
|
|
|
*/ |
|
615
|
|
|
public function __construct() { |
|
616
|
|
|
// NOTHING TO DO; |
|
617
|
|
|
} |
|
618
|
|
|
|
|
619
|
|
|
/** |
|
620
|
|
|
* Get the ad b t b t q. |
|
621
|
|
|
* |
|
622
|
|
|
* @return string Returns the ad b t b t q. |
|
623
|
|
|
*/ |
|
624
|
|
|
public function getAdBTBTQ() { |
|
625
|
|
|
return $this->adBTBTQ; |
|
626
|
|
|
} |
|
627
|
|
|
|
|
628
|
|
|
/** |
|
629
|
|
|
* Get the ad b t bureau distributeur. |
|
630
|
|
|
* |
|
631
|
|
|
* @return string Returns the ad b t bureau distributeur. |
|
632
|
|
|
*/ |
|
633
|
|
|
public function getAdBTBureauDistributeur() { |
|
634
|
|
|
return $this->adBTBureauDistributeur; |
|
635
|
|
|
} |
|
636
|
|
|
|
|
637
|
|
|
/** |
|
638
|
|
|
* Get the ad b t civilite. |
|
639
|
|
|
* |
|
640
|
|
|
* @return string Returns the ad b t civilite. |
|
641
|
|
|
*/ |
|
642
|
|
|
public function getAdBTCivilite() { |
|
643
|
|
|
return $this->adBTCivilite; |
|
644
|
|
|
} |
|
645
|
|
|
|
|
646
|
|
|
/** |
|
647
|
|
|
* Get the ad b t code pays. |
|
648
|
|
|
* |
|
649
|
|
|
* @return string Returns the ad b t code pays. |
|
650
|
|
|
*/ |
|
651
|
|
|
public function getAdBTCodePays() { |
|
652
|
|
|
return $this->adBTCodePays; |
|
653
|
|
|
} |
|
654
|
|
|
|
|
655
|
|
|
/** |
|
656
|
|
|
* Get the ad b t code postal. |
|
657
|
|
|
* |
|
658
|
|
|
* @return string Returns the ad b t code postal. |
|
659
|
|
|
*/ |
|
660
|
|
|
public function getAdBTCodePostal() { |
|
661
|
|
|
return $this->adBTCodePostal; |
|
662
|
|
|
} |
|
663
|
|
|
|
|
664
|
|
|
/** |
|
665
|
|
|
* Get the ad b t complement. |
|
666
|
|
|
* |
|
667
|
|
|
* @return string Returns the ad b t complement. |
|
668
|
|
|
*/ |
|
669
|
|
|
public function getAdBTComplement() { |
|
670
|
|
|
return $this->adBTComplement; |
|
671
|
|
|
} |
|
672
|
|
|
|
|
673
|
|
|
/** |
|
674
|
|
|
* Get the ad b t nom. |
|
675
|
|
|
* |
|
676
|
|
|
* @return string Returns the ad b t nom. |
|
677
|
|
|
*/ |
|
678
|
|
|
public function getAdBTNom() { |
|
679
|
|
|
return $this->adBTNom; |
|
680
|
|
|
} |
|
681
|
|
|
|
|
682
|
|
|
/** |
|
683
|
|
|
* Get the ad b t nom suite. |
|
684
|
|
|
* |
|
685
|
|
|
* @return string Returns the ad b t nom suite. |
|
686
|
|
|
*/ |
|
687
|
|
|
public function getAdBTNomSuite() { |
|
688
|
|
|
return $this->adBTNomSuite; |
|
689
|
|
|
} |
|
690
|
|
|
|
|
691
|
|
|
/** |
|
692
|
|
|
* Get the ad b t nom voie. |
|
693
|
|
|
* |
|
694
|
|
|
* @return string Returns the ad b t nom voie. |
|
695
|
|
|
*/ |
|
696
|
|
|
public function getAdBTNomVoie() { |
|
697
|
|
|
return $this->adBTNomVoie; |
|
698
|
|
|
} |
|
699
|
|
|
|
|
700
|
|
|
/** |
|
701
|
|
|
* Get the ad b t num voie. |
|
702
|
|
|
* |
|
703
|
|
|
* @return string Returns the ad b t num voie. |
|
704
|
|
|
*/ |
|
705
|
|
|
public function getAdBTNumVoie() { |
|
706
|
|
|
return $this->adBTNumVoie; |
|
707
|
|
|
} |
|
708
|
|
|
|
|
709
|
|
|
/** |
|
710
|
|
|
* Get the ad f b t q. |
|
711
|
|
|
* |
|
712
|
|
|
* @return string Returns the ad f b t q. |
|
713
|
|
|
*/ |
|
714
|
|
|
public function getAdFBTQ() { |
|
715
|
|
|
return $this->adFBTQ; |
|
716
|
|
|
} |
|
717
|
|
|
|
|
718
|
|
|
/** |
|
719
|
|
|
* Get the ad f bureau distributeur. |
|
720
|
|
|
* |
|
721
|
|
|
* @return string Returns the ad f bureau distributeur. |
|
722
|
|
|
*/ |
|
723
|
|
|
public function getAdFBureauDistributeur() { |
|
724
|
|
|
return $this->adFBureauDistributeur; |
|
725
|
|
|
} |
|
726
|
|
|
|
|
727
|
|
|
/** |
|
728
|
|
|
* Get the ad f civilite. |
|
729
|
|
|
* |
|
730
|
|
|
* @return string Returns the ad f civilite. |
|
731
|
|
|
*/ |
|
732
|
|
|
public function getAdFCivilite() { |
|
733
|
|
|
return $this->adFCivilite; |
|
734
|
|
|
} |
|
735
|
|
|
|
|
736
|
|
|
/** |
|
737
|
|
|
* Get the ad f code pays. |
|
738
|
|
|
* |
|
739
|
|
|
* @return string Returns the ad f code pays. |
|
740
|
|
|
*/ |
|
741
|
|
|
public function getAdFCodePays() { |
|
742
|
|
|
return $this->adFCodePays; |
|
743
|
|
|
} |
|
744
|
|
|
|
|
745
|
|
|
/** |
|
746
|
|
|
* Get the ad f code postal. |
|
747
|
|
|
* |
|
748
|
|
|
* @return string Returns the ad f code postal. |
|
749
|
|
|
*/ |
|
750
|
|
|
public function getAdFCodePostal() { |
|
751
|
|
|
return $this->adFCodePostal; |
|
752
|
|
|
} |
|
753
|
|
|
|
|
754
|
|
|
/** |
|
755
|
|
|
* Get the ad f complement. |
|
756
|
|
|
* |
|
757
|
|
|
* @return string Returns the ad f complement. |
|
758
|
|
|
*/ |
|
759
|
|
|
public function getAdFComplement() { |
|
760
|
|
|
return $this->adFComplement; |
|
761
|
|
|
} |
|
762
|
|
|
|
|
763
|
|
|
/** |
|
764
|
|
|
* Get the ad f nom. |
|
765
|
|
|
* |
|
766
|
|
|
* @return string Returns the ad f nom. |
|
767
|
|
|
*/ |
|
768
|
|
|
public function getAdFNom() { |
|
769
|
|
|
return $this->adFNom; |
|
770
|
|
|
} |
|
771
|
|
|
|
|
772
|
|
|
/** |
|
773
|
|
|
* Get the ad f nom suite. |
|
774
|
|
|
* |
|
775
|
|
|
* @return string Returns the ad f nom suite. |
|
776
|
|
|
*/ |
|
777
|
|
|
public function getAdFNomSuite() { |
|
778
|
|
|
return $this->adFNomSuite; |
|
779
|
|
|
} |
|
780
|
|
|
|
|
781
|
|
|
/** |
|
782
|
|
|
* Get the ad f nom suite2. |
|
783
|
|
|
* |
|
784
|
|
|
* @return string Returns the ad f nom suite2. |
|
785
|
|
|
*/ |
|
786
|
|
|
public function getAdFNomSuite2() { |
|
787
|
|
|
return $this->adFNomSuite2; |
|
788
|
|
|
} |
|
789
|
|
|
|
|
790
|
|
|
/** |
|
791
|
|
|
* Get the ad f nom suite3. |
|
792
|
|
|
* |
|
793
|
|
|
* @return string Returns the ad f nom suite3. |
|
794
|
|
|
*/ |
|
795
|
|
|
public function getAdFNomSuite3() { |
|
796
|
|
|
return $this->adFNomSuite3; |
|
797
|
|
|
} |
|
798
|
|
|
|
|
799
|
|
|
/** |
|
800
|
|
|
* Get the ad f nom voie. |
|
801
|
|
|
* |
|
802
|
|
|
* @return string Returns the ad f nom voie. |
|
803
|
|
|
*/ |
|
804
|
|
|
public function getAdFNomVoie() { |
|
805
|
|
|
return $this->adFNomVoie; |
|
806
|
|
|
} |
|
807
|
|
|
|
|
808
|
|
|
/** |
|
809
|
|
|
* Get the ad f num voie. |
|
810
|
|
|
* |
|
811
|
|
|
* @return string Returns the ad f num voie. |
|
812
|
|
|
*/ |
|
813
|
|
|
public function getAdFNumVoie() { |
|
814
|
|
|
return $this->adFNumVoie; |
|
815
|
|
|
} |
|
816
|
|
|
|
|
817
|
|
|
/** |
|
818
|
|
|
* Get the adresse b t saisie. |
|
819
|
|
|
* |
|
820
|
|
|
* @return boolean Returns the adresse b t saisie. |
|
821
|
|
|
*/ |
|
822
|
|
|
public function getAdresseBTSaisie() { |
|
823
|
|
|
return $this->adresseBTSaisie; |
|
824
|
|
|
} |
|
825
|
|
|
|
|
826
|
|
|
/** |
|
827
|
|
|
* Get the adresse facturation saisie. |
|
828
|
|
|
* |
|
829
|
|
|
* @return boolean Returns the adresse facturation saisie. |
|
830
|
|
|
*/ |
|
831
|
|
|
public function getAdresseFacturationSaisie() { |
|
832
|
|
|
return $this->adresseFacturationSaisie; |
|
833
|
|
|
} |
|
834
|
|
|
|
|
835
|
|
|
/** |
|
836
|
|
|
* Get the b t copie. |
|
837
|
|
|
* |
|
838
|
|
|
* @return boolean Returns the b t copie. |
|
839
|
|
|
*/ |
|
840
|
|
|
public function getBTCopie() { |
|
841
|
|
|
return $this->bTCopie; |
|
842
|
|
|
} |
|
843
|
|
|
|
|
844
|
|
|
/** |
|
845
|
|
|
* Get the b t devis deja facture. |
|
846
|
|
|
* |
|
847
|
|
|
* @return boolean Returns the b t devis deja facture. |
|
848
|
|
|
*/ |
|
849
|
|
|
public function getBTDevisDejaFacture() { |
|
850
|
|
|
return $this->bTDevisDejaFacture; |
|
851
|
|
|
} |
|
852
|
|
|
|
|
853
|
|
|
/** |
|
854
|
|
|
* Get the b t valide. |
|
855
|
|
|
* |
|
856
|
|
|
* @return boolean Returns the b t valide. |
|
857
|
|
|
*/ |
|
858
|
|
|
public function getBTValide() { |
|
859
|
|
|
return $this->bTValide; |
|
860
|
|
|
} |
|
861
|
|
|
|
|
862
|
|
|
/** |
|
863
|
|
|
* Get the code affaire. |
|
864
|
|
|
* |
|
865
|
|
|
* @return string Returns the code affaire. |
|
866
|
|
|
*/ |
|
867
|
|
|
public function getCodeAffaire() { |
|
868
|
|
|
return $this->codeAffaire; |
|
869
|
|
|
} |
|
870
|
|
|
|
|
871
|
|
|
/** |
|
872
|
|
|
* Get the code chantier. |
|
873
|
|
|
* |
|
874
|
|
|
* @return string Returns the code chantier. |
|
875
|
|
|
*/ |
|
876
|
|
|
public function getCodeChantier() { |
|
877
|
|
|
return $this->codeChantier; |
|
878
|
|
|
} |
|
879
|
|
|
|
|
880
|
|
|
/** |
|
881
|
|
|
* Get the code client. |
|
882
|
|
|
* |
|
883
|
|
|
* @return string Returns the code client. |
|
884
|
|
|
*/ |
|
885
|
|
|
public function getCodeClient() { |
|
886
|
|
|
return $this->codeClient; |
|
887
|
|
|
} |
|
888
|
|
|
|
|
889
|
|
|
/** |
|
890
|
|
|
* Get the code collaborateur. |
|
891
|
|
|
* |
|
892
|
|
|
* @return string Returns the code collaborateur. |
|
893
|
|
|
*/ |
|
894
|
|
|
public function getCodeCollaborateur() { |
|
895
|
|
|
return $this->codeCollaborateur; |
|
896
|
|
|
} |
|
897
|
|
|
|
|
898
|
|
|
/** |
|
899
|
|
|
* Get the code equipe. |
|
900
|
|
|
* |
|
901
|
|
|
* @return string Returns the code equipe. |
|
902
|
|
|
*/ |
|
903
|
|
|
public function getCodeEquipe() { |
|
904
|
|
|
return $this->codeEquipe; |
|
905
|
|
|
} |
|
906
|
|
|
|
|
907
|
|
|
/** |
|
908
|
|
|
* Get the code regroupement devis. |
|
909
|
|
|
* |
|
910
|
|
|
* @return string Returns the code regroupement devis. |
|
911
|
|
|
*/ |
|
912
|
|
|
public function getCodeRegroupementDevis() { |
|
913
|
|
|
return $this->codeRegroupementDevis; |
|
914
|
|
|
} |
|
915
|
|
|
|
|
916
|
|
|
/** |
|
917
|
|
|
* Get the code tache type. |
|
918
|
|
|
* |
|
919
|
|
|
* @return string Returns the code tache type. |
|
920
|
|
|
*/ |
|
921
|
|
|
public function getCodeTacheType() { |
|
922
|
|
|
return $this->codeTacheType; |
|
923
|
|
|
} |
|
924
|
|
|
|
|
925
|
|
|
/** |
|
926
|
|
|
* Get the code tournee. |
|
927
|
|
|
* |
|
928
|
|
|
* @return string Returns the code tournee. |
|
929
|
|
|
*/ |
|
930
|
|
|
public function getCodeTournee() { |
|
931
|
|
|
return $this->codeTournee; |
|
932
|
|
|
} |
|
933
|
|
|
|
|
934
|
|
|
/** |
|
935
|
|
|
* Get the critere bool1. |
|
936
|
|
|
* |
|
937
|
|
|
* @return boolean Returns the critere bool1. |
|
938
|
|
|
*/ |
|
939
|
|
|
public function getCritereBool1() { |
|
940
|
|
|
return $this->critereBool1; |
|
941
|
|
|
} |
|
942
|
|
|
|
|
943
|
|
|
/** |
|
944
|
|
|
* Get the critere bool2. |
|
945
|
|
|
* |
|
946
|
|
|
* @return boolean Returns the critere bool2. |
|
947
|
|
|
*/ |
|
948
|
|
|
public function getCritereBool2() { |
|
949
|
|
|
return $this->critereBool2; |
|
950
|
|
|
} |
|
951
|
|
|
|
|
952
|
|
|
/** |
|
953
|
|
|
* Get the critere byte1. |
|
954
|
|
|
* |
|
955
|
|
|
* @return string Returns the critere byte1. |
|
956
|
|
|
*/ |
|
957
|
|
|
public function getCritereByte1() { |
|
958
|
|
|
return $this->critereByte1; |
|
959
|
|
|
} |
|
960
|
|
|
|
|
961
|
|
|
/** |
|
962
|
|
|
* Get the critere liste1. |
|
963
|
|
|
* |
|
964
|
|
|
* @return string Returns the critere liste1. |
|
965
|
|
|
*/ |
|
966
|
|
|
public function getCritereListe1() { |
|
967
|
|
|
return $this->critereListe1; |
|
968
|
|
|
} |
|
969
|
|
|
|
|
970
|
|
|
/** |
|
971
|
|
|
* Get the critere liste2. |
|
972
|
|
|
* |
|
973
|
|
|
* @return string Returns the critere liste2. |
|
974
|
|
|
*/ |
|
975
|
|
|
public function getCritereListe2() { |
|
976
|
|
|
return $this->critereListe2; |
|
977
|
|
|
} |
|
978
|
|
|
|
|
979
|
|
|
/** |
|
980
|
|
|
* Get the critere numerique1. |
|
981
|
|
|
* |
|
982
|
|
|
* @return float Returns the critere numerique1. |
|
983
|
|
|
*/ |
|
984
|
|
|
public function getCritereNumerique1() { |
|
985
|
|
|
return $this->critereNumerique1; |
|
986
|
|
|
} |
|
987
|
|
|
|
|
988
|
|
|
/** |
|
989
|
|
|
* Get the critere numerique2. |
|
990
|
|
|
* |
|
991
|
|
|
* @return float Returns the critere numerique2. |
|
992
|
|
|
*/ |
|
993
|
|
|
public function getCritereNumerique2() { |
|
994
|
|
|
return $this->critereNumerique2; |
|
995
|
|
|
} |
|
996
|
|
|
|
|
997
|
|
|
/** |
|
998
|
|
|
* Get the critere texte1. |
|
999
|
|
|
* |
|
1000
|
|
|
* @return string Returns the critere texte1. |
|
1001
|
|
|
*/ |
|
1002
|
|
|
public function getCritereTexte1() { |
|
1003
|
|
|
return $this->critereTexte1; |
|
1004
|
|
|
} |
|
1005
|
|
|
|
|
1006
|
|
|
/** |
|
1007
|
|
|
* Get the critere texte2. |
|
1008
|
|
|
* |
|
1009
|
|
|
* @return string Returns the critere texte2. |
|
1010
|
|
|
*/ |
|
1011
|
|
|
public function getCritereTexte2() { |
|
1012
|
|
|
return $this->critereTexte2; |
|
1013
|
|
|
} |
|
1014
|
|
|
|
|
1015
|
|
|
/** |
|
1016
|
|
|
* Get the date passage. |
|
1017
|
|
|
* |
|
1018
|
|
|
* @return DateTime Returns the date passage. |
|
1019
|
|
|
*/ |
|
1020
|
|
|
public function getDatePassage() { |
|
1021
|
|
|
return $this->datePassage; |
|
1022
|
|
|
} |
|
1023
|
|
|
|
|
1024
|
|
|
/** |
|
1025
|
|
|
* Get the date premier passage. |
|
1026
|
|
|
* |
|
1027
|
|
|
* @return DateTime Returns the date premier passage. |
|
1028
|
|
|
*/ |
|
1029
|
|
|
public function getDatePremierPassage() { |
|
1030
|
|
|
return $this->datePremierPassage; |
|
1031
|
|
|
} |
|
1032
|
|
|
|
|
1033
|
|
|
/** |
|
1034
|
|
|
* Get the date transfert. |
|
1035
|
|
|
* |
|
1036
|
|
|
* @return DateTime Returns the date transfert. |
|
1037
|
|
|
*/ |
|
1038
|
|
|
public function getDateTransfert() { |
|
1039
|
|
|
return $this->dateTransfert; |
|
1040
|
|
|
} |
|
1041
|
|
|
|
|
1042
|
|
|
/** |
|
1043
|
|
|
* Get the description. |
|
1044
|
|
|
* |
|
1045
|
|
|
* @return string Returns the description. |
|
1046
|
|
|
*/ |
|
1047
|
|
|
public function getDescription() { |
|
1048
|
|
|
return $this->description; |
|
1049
|
|
|
} |
|
1050
|
|
|
|
|
1051
|
|
|
/** |
|
1052
|
|
|
* Get the duree pointee. |
|
1053
|
|
|
* |
|
1054
|
|
|
* @return float Returns the duree pointee. |
|
1055
|
|
|
*/ |
|
1056
|
|
|
public function getDureePointee() { |
|
1057
|
|
|
return $this->dureePointee; |
|
1058
|
|
|
} |
|
1059
|
|
|
|
|
1060
|
|
|
/** |
|
1061
|
|
|
* Get the duree prevue. |
|
1062
|
|
|
* |
|
1063
|
|
|
* @return float Returns the duree prevue. |
|
1064
|
|
|
*/ |
|
1065
|
|
|
public function getDureePrevue() { |
|
1066
|
|
|
return $this->dureePrevue; |
|
1067
|
|
|
} |
|
1068
|
|
|
|
|
1069
|
|
|
/** |
|
1070
|
|
|
* Get the duree validee. |
|
1071
|
|
|
* |
|
1072
|
|
|
* @return float Returns the duree validee. |
|
1073
|
|
|
*/ |
|
1074
|
|
|
public function getDureeValidee() { |
|
1075
|
|
|
return $this->dureeValidee; |
|
1076
|
|
|
} |
|
1077
|
|
|
|
|
1078
|
|
|
/** |
|
1079
|
|
|
* Get the employe signe mob. |
|
1080
|
|
|
* |
|
1081
|
|
|
* @return string Returns the employe signe mob. |
|
1082
|
|
|
*/ |
|
1083
|
|
|
public function getEmployeSigneMob() { |
|
1084
|
|
|
return $this->employeSigneMob; |
|
1085
|
|
|
} |
|
1086
|
|
|
|
|
1087
|
|
|
/** |
|
1088
|
|
|
* Get the gestion planning. |
|
1089
|
|
|
* |
|
1090
|
|
|
* @return boolean Returns the gestion planning. |
|
1091
|
|
|
*/ |
|
1092
|
|
|
public function getGestionPlanning() { |
|
1093
|
|
|
return $this->gestionPlanning; |
|
1094
|
|
|
} |
|
1095
|
|
|
|
|
1096
|
|
|
/** |
|
1097
|
|
|
* Get the guid mob. |
|
1098
|
|
|
* |
|
1099
|
|
|
* @return string Returns the guid mob. |
|
1100
|
|
|
*/ |
|
1101
|
|
|
public function getGuidMob() { |
|
1102
|
|
|
return $this->guidMob; |
|
1103
|
|
|
} |
|
1104
|
|
|
|
|
1105
|
|
|
/** |
|
1106
|
|
|
* Get the heure deb. |
|
1107
|
|
|
* |
|
1108
|
|
|
* @return DateTime Returns the heure deb. |
|
1109
|
|
|
*/ |
|
1110
|
|
|
public function getHeureDeb() { |
|
1111
|
|
|
return $this->heureDeb; |
|
1112
|
|
|
} |
|
1113
|
|
|
|
|
1114
|
|
|
/** |
|
1115
|
|
|
* Get the latitude. |
|
1116
|
|
|
* |
|
1117
|
|
|
* @return float Returns the latitude. |
|
1118
|
|
|
*/ |
|
1119
|
|
|
public function getLatitude() { |
|
1120
|
|
|
return $this->latitude; |
|
1121
|
|
|
} |
|
1122
|
|
|
|
|
1123
|
|
|
/** |
|
1124
|
|
|
* Get the libelle. |
|
1125
|
|
|
* |
|
1126
|
|
|
* @return string Returns the libelle. |
|
1127
|
|
|
*/ |
|
1128
|
|
|
public function getLibelle() { |
|
1129
|
|
|
return $this->libelle; |
|
1130
|
|
|
} |
|
1131
|
|
|
|
|
1132
|
|
|
/** |
|
1133
|
|
|
* Get the lien document. |
|
1134
|
|
|
* |
|
1135
|
|
|
* @return string Returns the lien document. |
|
1136
|
|
|
*/ |
|
1137
|
|
|
public function getLienDocument() { |
|
1138
|
|
|
return $this->lienDocument; |
|
1139
|
|
|
} |
|
1140
|
|
|
|
|
1141
|
|
|
/** |
|
1142
|
|
|
* Get the longitude. |
|
1143
|
|
|
* |
|
1144
|
|
|
* @return float Returns the longitude. |
|
1145
|
|
|
*/ |
|
1146
|
|
|
public function getLongitude() { |
|
1147
|
|
|
return $this->longitude; |
|
1148
|
|
|
} |
|
1149
|
|
|
|
|
1150
|
|
|
/** |
|
1151
|
|
|
* Get the montant h t devis. |
|
1152
|
|
|
* |
|
1153
|
|
|
* @return float Returns the montant h t devis. |
|
1154
|
|
|
*/ |
|
1155
|
|
|
public function getMontantHTDevis() { |
|
1156
|
|
|
return $this->montantHTDevis; |
|
1157
|
|
|
} |
|
1158
|
|
|
|
|
1159
|
|
|
/** |
|
1160
|
|
|
* Get the nb jours pointes. |
|
1161
|
|
|
* |
|
1162
|
|
|
* @return float Returns the nb jours pointes. |
|
1163
|
|
|
*/ |
|
1164
|
|
|
public function getNbJoursPointes() { |
|
1165
|
|
|
return $this->nbJoursPointes; |
|
1166
|
|
|
} |
|
1167
|
|
|
|
|
1168
|
|
|
/** |
|
1169
|
|
|
* Get the nb jours prevus. |
|
1170
|
|
|
* |
|
1171
|
|
|
* @return float Returns the nb jours prevus. |
|
1172
|
|
|
*/ |
|
1173
|
|
|
public function getNbJoursPrevus() { |
|
1174
|
|
|
return $this->nbJoursPrevus; |
|
1175
|
|
|
} |
|
1176
|
|
|
|
|
1177
|
|
|
/** |
|
1178
|
|
|
* Get the nombre employes. |
|
1179
|
|
|
* |
|
1180
|
|
|
* @return int Returns the nombre employes. |
|
1181
|
|
|
*/ |
|
1182
|
|
|
public function getNombreEmployes() { |
|
1183
|
|
|
return $this->nombreEmployes; |
|
1184
|
|
|
} |
|
1185
|
|
|
|
|
1186
|
|
|
/** |
|
1187
|
|
|
* Get the non traite. |
|
1188
|
|
|
* |
|
1189
|
|
|
* @return boolean Returns the non traite. |
|
1190
|
|
|
*/ |
|
1191
|
|
|
public function getNonTraite() { |
|
1192
|
|
|
return $this->nonTraite; |
|
1193
|
|
|
} |
|
1194
|
|
|
|
|
1195
|
|
|
/** |
|
1196
|
|
|
* Get the num b t. |
|
1197
|
|
|
* |
|
1198
|
|
|
* @return int Returns the num b t. |
|
1199
|
|
|
*/ |
|
1200
|
|
|
public function getNumBT() { |
|
1201
|
|
|
return $this->numBT; |
|
1202
|
|
|
} |
|
1203
|
|
|
|
|
1204
|
|
|
/** |
|
1205
|
|
|
* Get the numero devis. |
|
1206
|
|
|
* |
|
1207
|
|
|
* @return string Returns the numero devis. |
|
1208
|
|
|
*/ |
|
1209
|
|
|
public function getNumeroDevis() { |
|
1210
|
|
|
return $this->numeroDevis; |
|
1211
|
|
|
} |
|
1212
|
|
|
|
|
1213
|
|
|
/** |
|
1214
|
|
|
* Get the numero facture. |
|
1215
|
|
|
* |
|
1216
|
|
|
* @return string Returns the numero facture. |
|
1217
|
|
|
*/ |
|
1218
|
|
|
public function getNumeroFacture() { |
|
1219
|
|
|
return $this->numeroFacture; |
|
1220
|
|
|
} |
|
1221
|
|
|
|
|
1222
|
|
|
/** |
|
1223
|
|
|
* Get the numero p j. |
|
1224
|
|
|
* |
|
1225
|
|
|
* @return int Returns the numero p j. |
|
1226
|
|
|
*/ |
|
1227
|
|
|
public function getNumeroPJ() { |
|
1228
|
|
|
return $this->numeroPJ; |
|
1229
|
|
|
} |
|
1230
|
|
|
|
|
1231
|
|
|
/** |
|
1232
|
|
|
* Get the observation client. |
|
1233
|
|
|
* |
|
1234
|
|
|
* @return string Returns the observation client. |
|
1235
|
|
|
*/ |
|
1236
|
|
|
public function getObservationClient() { |
|
1237
|
|
|
return $this->observationClient; |
|
1238
|
|
|
} |
|
1239
|
|
|
|
|
1240
|
|
|
/** |
|
1241
|
|
|
* Get the observation interne. |
|
1242
|
|
|
* |
|
1243
|
|
|
* @return string Returns the observation interne. |
|
1244
|
|
|
*/ |
|
1245
|
|
|
public function getObservationInterne() { |
|
1246
|
|
|
return $this->observationInterne; |
|
1247
|
|
|
} |
|
1248
|
|
|
|
|
1249
|
|
|
/** |
|
1250
|
|
|
* Get the occasionnel. |
|
1251
|
|
|
* |
|
1252
|
|
|
* @return boolean Returns the occasionnel. |
|
1253
|
|
|
*/ |
|
1254
|
|
|
public function getOccasionnel() { |
|
1255
|
|
|
return $this->occasionnel; |
|
1256
|
|
|
} |
|
1257
|
|
|
|
|
1258
|
|
|
/** |
|
1259
|
|
|
* Get the plusieurs jours. |
|
1260
|
|
|
* |
|
1261
|
|
|
* @return boolean Returns the plusieurs jours. |
|
1262
|
|
|
*/ |
|
1263
|
|
|
public function getPlusieursJours() { |
|
1264
|
|
|
return $this->plusieursJours; |
|
1265
|
|
|
} |
|
1266
|
|
|
|
|
1267
|
|
|
/** |
|
1268
|
|
|
* Get the plusieurs mois. |
|
1269
|
|
|
* |
|
1270
|
|
|
* @return boolean Returns the plusieurs mois. |
|
1271
|
|
|
*/ |
|
1272
|
|
|
public function getPlusieursMois() { |
|
1273
|
|
|
return $this->plusieursMois; |
|
1274
|
|
|
} |
|
1275
|
|
|
|
|
1276
|
|
|
/** |
|
1277
|
|
|
* Get the poste rent. |
|
1278
|
|
|
* |
|
1279
|
|
|
* @return string Returns the poste rent. |
|
1280
|
|
|
*/ |
|
1281
|
|
|
public function getPosteRent() { |
|
1282
|
|
|
return $this->posteRent; |
|
1283
|
|
|
} |
|
1284
|
|
|
|
|
1285
|
|
|
/** |
|
1286
|
|
|
* Get the proratise. |
|
1287
|
|
|
* |
|
1288
|
|
|
* @return boolean Returns the proratise. |
|
1289
|
|
|
*/ |
|
1290
|
|
|
public function getProratise() { |
|
1291
|
|
|
return $this->proratise; |
|
1292
|
|
|
} |
|
1293
|
|
|
|
|
1294
|
|
|
/** |
|
1295
|
|
|
* Get the signataire. |
|
1296
|
|
|
* |
|
1297
|
|
|
* @return string Returns the signataire. |
|
1298
|
|
|
*/ |
|
1299
|
|
|
public function getSignataire() { |
|
1300
|
|
|
return $this->signataire; |
|
1301
|
|
|
} |
|
1302
|
|
|
|
|
1303
|
|
|
/** |
|
1304
|
|
|
* Get the signe. |
|
1305
|
|
|
* |
|
1306
|
|
|
* @return boolean Returns the signe. |
|
1307
|
|
|
*/ |
|
1308
|
|
|
public function getSigne() { |
|
1309
|
|
|
return $this->signe; |
|
1310
|
|
|
} |
|
1311
|
|
|
|
|
1312
|
|
|
/** |
|
1313
|
|
|
* Get the start mob. |
|
1314
|
|
|
* |
|
1315
|
|
|
* @return string Returns the start mob. |
|
1316
|
|
|
*/ |
|
1317
|
|
|
public function getStartMob() { |
|
1318
|
|
|
return $this->startMob; |
|
1319
|
|
|
} |
|
1320
|
|
|
|
|
1321
|
|
|
/** |
|
1322
|
|
|
* Get the type b t. |
|
1323
|
|
|
* |
|
1324
|
|
|
* @return string Returns the type b t. |
|
1325
|
|
|
*/ |
|
1326
|
|
|
public function getTypeBT() { |
|
1327
|
|
|
return $this->typeBT; |
|
1328
|
|
|
} |
|
1329
|
|
|
|
|
1330
|
|
|
/** |
|
1331
|
|
|
* Get the type b t saisi. |
|
1332
|
|
|
* |
|
1333
|
|
|
* @return string Returns the type b t saisi. |
|
1334
|
|
|
*/ |
|
1335
|
|
|
public function getTypeBTSaisi() { |
|
1336
|
|
|
return $this->typeBTSaisi; |
|
1337
|
|
|
} |
|
1338
|
|
|
|
|
1339
|
|
|
/** |
|
1340
|
|
|
* Get the uniq i d blocage. |
|
1341
|
|
|
* |
|
1342
|
|
|
* @return string Returns the uniq i d blocage. |
|
1343
|
|
|
*/ |
|
1344
|
|
|
public function getUniqIDBlocage() { |
|
1345
|
|
|
return $this->uniqIDBlocage; |
|
1346
|
|
|
} |
|
1347
|
|
|
|
|
1348
|
|
|
/** |
|
1349
|
|
|
* Get the via. |
|
1350
|
|
|
* |
|
1351
|
|
|
* @return string Returns the via. |
|
1352
|
|
|
*/ |
|
1353
|
|
|
public function getVia() { |
|
1354
|
|
|
return $this->via; |
|
1355
|
|
|
} |
|
1356
|
|
|
|
|
1357
|
|
|
/** |
|
1358
|
|
|
* Get the reference1 devis. |
|
1359
|
|
|
* |
|
1360
|
|
|
* @return string Returns the reference1 devis. |
|
1361
|
|
|
*/ |
|
1362
|
|
|
public function getreference1Devis() { |
|
1363
|
|
|
return $this->reference1Devis; |
|
1364
|
|
|
} |
|
1365
|
|
|
|
|
1366
|
|
|
/** |
|
1367
|
|
|
* Get the reference2 devis. |
|
1368
|
|
|
* |
|
1369
|
|
|
* @return string Returns the reference2 devis. |
|
1370
|
|
|
*/ |
|
1371
|
|
|
public function getreference2Devis() { |
|
1372
|
|
|
return $this->reference2Devis; |
|
1373
|
|
|
} |
|
1374
|
|
|
|
|
1375
|
|
|
/** |
|
1376
|
|
|
* Set the ad b t b t q. |
|
1377
|
|
|
* |
|
1378
|
|
|
* @param string $adBTBTQ The ad b t b t q. |
|
1379
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1380
|
|
|
*/ |
|
1381
|
|
|
public function setAdBTBTQ($adBTBTQ) { |
|
1382
|
|
|
$this->adBTBTQ = $adBTBTQ; |
|
1383
|
|
|
return $this; |
|
1384
|
|
|
} |
|
1385
|
|
|
|
|
1386
|
|
|
/** |
|
1387
|
|
|
* Set the ad b t bureau distributeur. |
|
1388
|
|
|
* |
|
1389
|
|
|
* @param string $adBTBureauDistributeur The ad b t bureau distributeur. |
|
1390
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1391
|
|
|
*/ |
|
1392
|
|
|
public function setAdBTBureauDistributeur($adBTBureauDistributeur) { |
|
1393
|
|
|
$this->adBTBureauDistributeur = $adBTBureauDistributeur; |
|
1394
|
|
|
return $this; |
|
1395
|
|
|
} |
|
1396
|
|
|
|
|
1397
|
|
|
/** |
|
1398
|
|
|
* Set the ad b t civilite. |
|
1399
|
|
|
* |
|
1400
|
|
|
* @param string $adBTCivilite The ad b t civilite. |
|
1401
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1402
|
|
|
*/ |
|
1403
|
|
|
public function setAdBTCivilite($adBTCivilite) { |
|
1404
|
|
|
$this->adBTCivilite = $adBTCivilite; |
|
1405
|
|
|
return $this; |
|
1406
|
|
|
} |
|
1407
|
|
|
|
|
1408
|
|
|
/** |
|
1409
|
|
|
* Set the ad b t code pays. |
|
1410
|
|
|
* |
|
1411
|
|
|
* @param string $adBTCodePays The ad b t code pays. |
|
1412
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1413
|
|
|
*/ |
|
1414
|
|
|
public function setAdBTCodePays($adBTCodePays) { |
|
1415
|
|
|
$this->adBTCodePays = $adBTCodePays; |
|
1416
|
|
|
return $this; |
|
1417
|
|
|
} |
|
1418
|
|
|
|
|
1419
|
|
|
/** |
|
1420
|
|
|
* Set the ad b t code postal. |
|
1421
|
|
|
* |
|
1422
|
|
|
* @param string $adBTCodePostal The ad b t code postal. |
|
1423
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1424
|
|
|
*/ |
|
1425
|
|
|
public function setAdBTCodePostal($adBTCodePostal) { |
|
1426
|
|
|
$this->adBTCodePostal = $adBTCodePostal; |
|
1427
|
|
|
return $this; |
|
1428
|
|
|
} |
|
1429
|
|
|
|
|
1430
|
|
|
/** |
|
1431
|
|
|
* Set the ad b t complement. |
|
1432
|
|
|
* |
|
1433
|
|
|
* @param string $adBTComplement The ad b t complement. |
|
1434
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1435
|
|
|
*/ |
|
1436
|
|
|
public function setAdBTComplement($adBTComplement) { |
|
1437
|
|
|
$this->adBTComplement = $adBTComplement; |
|
1438
|
|
|
return $this; |
|
1439
|
|
|
} |
|
1440
|
|
|
|
|
1441
|
|
|
/** |
|
1442
|
|
|
* Set the ad b t nom. |
|
1443
|
|
|
* |
|
1444
|
|
|
* @param string $adBTNom The ad b t nom. |
|
1445
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1446
|
|
|
*/ |
|
1447
|
|
|
public function setAdBTNom($adBTNom) { |
|
1448
|
|
|
$this->adBTNom = $adBTNom; |
|
1449
|
|
|
return $this; |
|
1450
|
|
|
} |
|
1451
|
|
|
|
|
1452
|
|
|
/** |
|
1453
|
|
|
* Set the ad b t nom suite. |
|
1454
|
|
|
* |
|
1455
|
|
|
* @param string $adBTNomSuite The ad b t nom suite. |
|
1456
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1457
|
|
|
*/ |
|
1458
|
|
|
public function setAdBTNomSuite($adBTNomSuite) { |
|
1459
|
|
|
$this->adBTNomSuite = $adBTNomSuite; |
|
1460
|
|
|
return $this; |
|
1461
|
|
|
} |
|
1462
|
|
|
|
|
1463
|
|
|
/** |
|
1464
|
|
|
* Set the ad b t nom voie. |
|
1465
|
|
|
* |
|
1466
|
|
|
* @param string $adBTNomVoie The ad b t nom voie. |
|
1467
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1468
|
|
|
*/ |
|
1469
|
|
|
public function setAdBTNomVoie($adBTNomVoie) { |
|
1470
|
|
|
$this->adBTNomVoie = $adBTNomVoie; |
|
1471
|
|
|
return $this; |
|
1472
|
|
|
} |
|
1473
|
|
|
|
|
1474
|
|
|
/** |
|
1475
|
|
|
* Set the ad b t num voie. |
|
1476
|
|
|
* |
|
1477
|
|
|
* @param string $adBTNumVoie The ad b t num voie. |
|
1478
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1479
|
|
|
*/ |
|
1480
|
|
|
public function setAdBTNumVoie($adBTNumVoie) { |
|
1481
|
|
|
$this->adBTNumVoie = $adBTNumVoie; |
|
1482
|
|
|
return $this; |
|
1483
|
|
|
} |
|
1484
|
|
|
|
|
1485
|
|
|
/** |
|
1486
|
|
|
* Set the ad f b t q. |
|
1487
|
|
|
* |
|
1488
|
|
|
* @param string $adFBTQ The ad f b t q. |
|
1489
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1490
|
|
|
*/ |
|
1491
|
|
|
public function setAdFBTQ($adFBTQ) { |
|
1492
|
|
|
$this->adFBTQ = $adFBTQ; |
|
1493
|
|
|
return $this; |
|
1494
|
|
|
} |
|
1495
|
|
|
|
|
1496
|
|
|
/** |
|
1497
|
|
|
* Set the ad f bureau distributeur. |
|
1498
|
|
|
* |
|
1499
|
|
|
* @param string $adFBureauDistributeur The ad f bureau distributeur. |
|
1500
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1501
|
|
|
*/ |
|
1502
|
|
|
public function setAdFBureauDistributeur($adFBureauDistributeur) { |
|
1503
|
|
|
$this->adFBureauDistributeur = $adFBureauDistributeur; |
|
1504
|
|
|
return $this; |
|
1505
|
|
|
} |
|
1506
|
|
|
|
|
1507
|
|
|
/** |
|
1508
|
|
|
* Set the ad f civilite. |
|
1509
|
|
|
* |
|
1510
|
|
|
* @param string $adFCivilite The ad f civilite. |
|
1511
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1512
|
|
|
*/ |
|
1513
|
|
|
public function setAdFCivilite($adFCivilite) { |
|
1514
|
|
|
$this->adFCivilite = $adFCivilite; |
|
1515
|
|
|
return $this; |
|
1516
|
|
|
} |
|
1517
|
|
|
|
|
1518
|
|
|
/** |
|
1519
|
|
|
* Set the ad f code pays. |
|
1520
|
|
|
* |
|
1521
|
|
|
* @param string $adFCodePays The ad f code pays. |
|
1522
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1523
|
|
|
*/ |
|
1524
|
|
|
public function setAdFCodePays($adFCodePays) { |
|
1525
|
|
|
$this->adFCodePays = $adFCodePays; |
|
1526
|
|
|
return $this; |
|
1527
|
|
|
} |
|
1528
|
|
|
|
|
1529
|
|
|
/** |
|
1530
|
|
|
* Set the ad f code postal. |
|
1531
|
|
|
* |
|
1532
|
|
|
* @param string $adFCodePostal The ad f code postal. |
|
1533
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1534
|
|
|
*/ |
|
1535
|
|
|
public function setAdFCodePostal($adFCodePostal) { |
|
1536
|
|
|
$this->adFCodePostal = $adFCodePostal; |
|
1537
|
|
|
return $this; |
|
1538
|
|
|
} |
|
1539
|
|
|
|
|
1540
|
|
|
/** |
|
1541
|
|
|
* Set the ad f complement. |
|
1542
|
|
|
* |
|
1543
|
|
|
* @param string $adFComplement The ad f complement. |
|
1544
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1545
|
|
|
*/ |
|
1546
|
|
|
public function setAdFComplement($adFComplement) { |
|
1547
|
|
|
$this->adFComplement = $adFComplement; |
|
1548
|
|
|
return $this; |
|
1549
|
|
|
} |
|
1550
|
|
|
|
|
1551
|
|
|
/** |
|
1552
|
|
|
* Set the ad f nom. |
|
1553
|
|
|
* |
|
1554
|
|
|
* @param string $adFNom The ad f nom. |
|
1555
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1556
|
|
|
*/ |
|
1557
|
|
|
public function setAdFNom($adFNom) { |
|
1558
|
|
|
$this->adFNom = $adFNom; |
|
1559
|
|
|
return $this; |
|
1560
|
|
|
} |
|
1561
|
|
|
|
|
1562
|
|
|
/** |
|
1563
|
|
|
* Set the ad f nom suite. |
|
1564
|
|
|
* |
|
1565
|
|
|
* @param string $adFNomSuite The ad f nom suite. |
|
1566
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1567
|
|
|
*/ |
|
1568
|
|
|
public function setAdFNomSuite($adFNomSuite) { |
|
1569
|
|
|
$this->adFNomSuite = $adFNomSuite; |
|
1570
|
|
|
return $this; |
|
1571
|
|
|
} |
|
1572
|
|
|
|
|
1573
|
|
|
/** |
|
1574
|
|
|
* Set the ad f nom suite2. |
|
1575
|
|
|
* |
|
1576
|
|
|
* @param string $adFNomSuite2 The ad f nom suite2. |
|
1577
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1578
|
|
|
*/ |
|
1579
|
|
|
public function setAdFNomSuite2($adFNomSuite2) { |
|
1580
|
|
|
$this->adFNomSuite2 = $adFNomSuite2; |
|
1581
|
|
|
return $this; |
|
1582
|
|
|
} |
|
1583
|
|
|
|
|
1584
|
|
|
/** |
|
1585
|
|
|
* Set the ad f nom suite3. |
|
1586
|
|
|
* |
|
1587
|
|
|
* @param string $adFNomSuite3 The ad f nom suite3. |
|
1588
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1589
|
|
|
*/ |
|
1590
|
|
|
public function setAdFNomSuite3($adFNomSuite3) { |
|
1591
|
|
|
$this->adFNomSuite3 = $adFNomSuite3; |
|
1592
|
|
|
return $this; |
|
1593
|
|
|
} |
|
1594
|
|
|
|
|
1595
|
|
|
/** |
|
1596
|
|
|
* Set the ad f nom voie. |
|
1597
|
|
|
* |
|
1598
|
|
|
* @param string $adFNomVoie The ad f nom voie. |
|
1599
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1600
|
|
|
*/ |
|
1601
|
|
|
public function setAdFNomVoie($adFNomVoie) { |
|
1602
|
|
|
$this->adFNomVoie = $adFNomVoie; |
|
1603
|
|
|
return $this; |
|
1604
|
|
|
} |
|
1605
|
|
|
|
|
1606
|
|
|
/** |
|
1607
|
|
|
* Set the ad f num voie. |
|
1608
|
|
|
* |
|
1609
|
|
|
* @param string $adFNumVoie The ad f num voie. |
|
1610
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1611
|
|
|
*/ |
|
1612
|
|
|
public function setAdFNumVoie($adFNumVoie) { |
|
1613
|
|
|
$this->adFNumVoie = $adFNumVoie; |
|
1614
|
|
|
return $this; |
|
1615
|
|
|
} |
|
1616
|
|
|
|
|
1617
|
|
|
/** |
|
1618
|
|
|
* Set the adresse b t saisie. |
|
1619
|
|
|
* |
|
1620
|
|
|
* @param boolean $adresseBTSaisie The adresse b t saisie. |
|
1621
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1622
|
|
|
*/ |
|
1623
|
|
|
public function setAdresseBTSaisie($adresseBTSaisie) { |
|
1624
|
|
|
$this->adresseBTSaisie = $adresseBTSaisie; |
|
1625
|
|
|
return $this; |
|
1626
|
|
|
} |
|
1627
|
|
|
|
|
1628
|
|
|
/** |
|
1629
|
|
|
* Set the adresse facturation saisie. |
|
1630
|
|
|
* |
|
1631
|
|
|
* @param boolean $adresseFacturationSaisie The adresse facturation saisie. |
|
1632
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1633
|
|
|
*/ |
|
1634
|
|
|
public function setAdresseFacturationSaisie($adresseFacturationSaisie) { |
|
1635
|
|
|
$this->adresseFacturationSaisie = $adresseFacturationSaisie; |
|
1636
|
|
|
return $this; |
|
1637
|
|
|
} |
|
1638
|
|
|
|
|
1639
|
|
|
/** |
|
1640
|
|
|
* Set the b t copie. |
|
1641
|
|
|
* |
|
1642
|
|
|
* @param boolean $bTCopie The b t copie. |
|
1643
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1644
|
|
|
*/ |
|
1645
|
|
|
public function setBTCopie($bTCopie) { |
|
1646
|
|
|
$this->bTCopie = $bTCopie; |
|
1647
|
|
|
return $this; |
|
1648
|
|
|
} |
|
1649
|
|
|
|
|
1650
|
|
|
/** |
|
1651
|
|
|
* Set the b t devis deja facture. |
|
1652
|
|
|
* |
|
1653
|
|
|
* @param boolean $bTDevisDejaFacture The b t devis deja facture. |
|
1654
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1655
|
|
|
*/ |
|
1656
|
|
|
public function setBTDevisDejaFacture($bTDevisDejaFacture) { |
|
1657
|
|
|
$this->bTDevisDejaFacture = $bTDevisDejaFacture; |
|
1658
|
|
|
return $this; |
|
1659
|
|
|
} |
|
1660
|
|
|
|
|
1661
|
|
|
/** |
|
1662
|
|
|
* Set the b t valide. |
|
1663
|
|
|
* |
|
1664
|
|
|
* @param boolean $bTValide The b t valide. |
|
1665
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1666
|
|
|
*/ |
|
1667
|
|
|
public function setBTValide($bTValide) { |
|
1668
|
|
|
$this->bTValide = $bTValide; |
|
1669
|
|
|
return $this; |
|
1670
|
|
|
} |
|
1671
|
|
|
|
|
1672
|
|
|
/** |
|
1673
|
|
|
* Set the code affaire. |
|
1674
|
|
|
* |
|
1675
|
|
|
* @param string $codeAffaire The code affaire. |
|
1676
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1677
|
|
|
*/ |
|
1678
|
|
|
public function setCodeAffaire($codeAffaire) { |
|
1679
|
|
|
$this->codeAffaire = $codeAffaire; |
|
1680
|
|
|
return $this; |
|
1681
|
|
|
} |
|
1682
|
|
|
|
|
1683
|
|
|
/** |
|
1684
|
|
|
* Set the code chantier. |
|
1685
|
|
|
* |
|
1686
|
|
|
* @param string $codeChantier The code chantier. |
|
1687
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1688
|
|
|
*/ |
|
1689
|
|
|
public function setCodeChantier($codeChantier) { |
|
1690
|
|
|
$this->codeChantier = $codeChantier; |
|
1691
|
|
|
return $this; |
|
1692
|
|
|
} |
|
1693
|
|
|
|
|
1694
|
|
|
/** |
|
1695
|
|
|
* Set the code client. |
|
1696
|
|
|
* |
|
1697
|
|
|
* @param string $codeClient The code client. |
|
1698
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1699
|
|
|
*/ |
|
1700
|
|
|
public function setCodeClient($codeClient) { |
|
1701
|
|
|
$this->codeClient = $codeClient; |
|
1702
|
|
|
return $this; |
|
1703
|
|
|
} |
|
1704
|
|
|
|
|
1705
|
|
|
/** |
|
1706
|
|
|
* Set the code collaborateur. |
|
1707
|
|
|
* |
|
1708
|
|
|
* @param string $codeCollaborateur The code collaborateur. |
|
1709
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1710
|
|
|
*/ |
|
1711
|
|
|
public function setCodeCollaborateur($codeCollaborateur) { |
|
1712
|
|
|
$this->codeCollaborateur = $codeCollaborateur; |
|
1713
|
|
|
return $this; |
|
1714
|
|
|
} |
|
1715
|
|
|
|
|
1716
|
|
|
/** |
|
1717
|
|
|
* Set the code equipe. |
|
1718
|
|
|
* |
|
1719
|
|
|
* @param string $codeEquipe The code equipe. |
|
1720
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1721
|
|
|
*/ |
|
1722
|
|
|
public function setCodeEquipe($codeEquipe) { |
|
1723
|
|
|
$this->codeEquipe = $codeEquipe; |
|
1724
|
|
|
return $this; |
|
1725
|
|
|
} |
|
1726
|
|
|
|
|
1727
|
|
|
/** |
|
1728
|
|
|
* Set the code regroupement devis. |
|
1729
|
|
|
* |
|
1730
|
|
|
* @param string $codeRegroupementDevis The code regroupement devis. |
|
1731
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1732
|
|
|
*/ |
|
1733
|
|
|
public function setCodeRegroupementDevis($codeRegroupementDevis) { |
|
1734
|
|
|
$this->codeRegroupementDevis = $codeRegroupementDevis; |
|
1735
|
|
|
return $this; |
|
1736
|
|
|
} |
|
1737
|
|
|
|
|
1738
|
|
|
/** |
|
1739
|
|
|
* Set the code tache type. |
|
1740
|
|
|
* |
|
1741
|
|
|
* @param string $codeTacheType The code tache type. |
|
1742
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1743
|
|
|
*/ |
|
1744
|
|
|
public function setCodeTacheType($codeTacheType) { |
|
1745
|
|
|
$this->codeTacheType = $codeTacheType; |
|
1746
|
|
|
return $this; |
|
1747
|
|
|
} |
|
1748
|
|
|
|
|
1749
|
|
|
/** |
|
1750
|
|
|
* Set the code tournee. |
|
1751
|
|
|
* |
|
1752
|
|
|
* @param string $codeTournee The code tournee. |
|
1753
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1754
|
|
|
*/ |
|
1755
|
|
|
public function setCodeTournee($codeTournee) { |
|
1756
|
|
|
$this->codeTournee = $codeTournee; |
|
1757
|
|
|
return $this; |
|
1758
|
|
|
} |
|
1759
|
|
|
|
|
1760
|
|
|
/** |
|
1761
|
|
|
* Set the critere bool1. |
|
1762
|
|
|
* |
|
1763
|
|
|
* @param boolean $critereBool1 The critere bool1. |
|
1764
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1765
|
|
|
*/ |
|
1766
|
|
|
public function setCritereBool1($critereBool1) { |
|
1767
|
|
|
$this->critereBool1 = $critereBool1; |
|
1768
|
|
|
return $this; |
|
1769
|
|
|
} |
|
1770
|
|
|
|
|
1771
|
|
|
/** |
|
1772
|
|
|
* Set the critere bool2. |
|
1773
|
|
|
* |
|
1774
|
|
|
* @param boolean $critereBool2 The critere bool2. |
|
1775
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1776
|
|
|
*/ |
|
1777
|
|
|
public function setCritereBool2($critereBool2) { |
|
1778
|
|
|
$this->critereBool2 = $critereBool2; |
|
1779
|
|
|
return $this; |
|
1780
|
|
|
} |
|
1781
|
|
|
|
|
1782
|
|
|
/** |
|
1783
|
|
|
* Set the critere byte1. |
|
1784
|
|
|
* |
|
1785
|
|
|
* @param string $critereByte1 The critere byte1. |
|
1786
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1787
|
|
|
*/ |
|
1788
|
|
|
public function setCritereByte1($critereByte1) { |
|
1789
|
|
|
$this->critereByte1 = $critereByte1; |
|
1790
|
|
|
return $this; |
|
1791
|
|
|
} |
|
1792
|
|
|
|
|
1793
|
|
|
/** |
|
1794
|
|
|
* Set the critere liste1. |
|
1795
|
|
|
* |
|
1796
|
|
|
* @param string $critereListe1 The critere liste1. |
|
1797
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1798
|
|
|
*/ |
|
1799
|
|
|
public function setCritereListe1($critereListe1) { |
|
1800
|
|
|
$this->critereListe1 = $critereListe1; |
|
1801
|
|
|
return $this; |
|
1802
|
|
|
} |
|
1803
|
|
|
|
|
1804
|
|
|
/** |
|
1805
|
|
|
* Set the critere liste2. |
|
1806
|
|
|
* |
|
1807
|
|
|
* @param string $critereListe2 The critere liste2. |
|
1808
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1809
|
|
|
*/ |
|
1810
|
|
|
public function setCritereListe2($critereListe2) { |
|
1811
|
|
|
$this->critereListe2 = $critereListe2; |
|
1812
|
|
|
return $this; |
|
1813
|
|
|
} |
|
1814
|
|
|
|
|
1815
|
|
|
/** |
|
1816
|
|
|
* Set the critere numerique1. |
|
1817
|
|
|
* |
|
1818
|
|
|
* @param float $critereNumerique1 The critere numerique1. |
|
1819
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1820
|
|
|
*/ |
|
1821
|
|
|
public function setCritereNumerique1($critereNumerique1) { |
|
1822
|
|
|
$this->critereNumerique1 = $critereNumerique1; |
|
1823
|
|
|
return $this; |
|
1824
|
|
|
} |
|
1825
|
|
|
|
|
1826
|
|
|
/** |
|
1827
|
|
|
* Set the critere numerique2. |
|
1828
|
|
|
* |
|
1829
|
|
|
* @param float $critereNumerique2 The critere numerique2. |
|
1830
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1831
|
|
|
*/ |
|
1832
|
|
|
public function setCritereNumerique2($critereNumerique2) { |
|
1833
|
|
|
$this->critereNumerique2 = $critereNumerique2; |
|
1834
|
|
|
return $this; |
|
1835
|
|
|
} |
|
1836
|
|
|
|
|
1837
|
|
|
/** |
|
1838
|
|
|
* Set the critere texte1. |
|
1839
|
|
|
* |
|
1840
|
|
|
* @param string $critereTexte1 The critere texte1. |
|
1841
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1842
|
|
|
*/ |
|
1843
|
|
|
public function setCritereTexte1($critereTexte1) { |
|
1844
|
|
|
$this->critereTexte1 = $critereTexte1; |
|
1845
|
|
|
return $this; |
|
1846
|
|
|
} |
|
1847
|
|
|
|
|
1848
|
|
|
/** |
|
1849
|
|
|
* Set the critere texte2. |
|
1850
|
|
|
* |
|
1851
|
|
|
* @param string $critereTexte2 The critere texte2. |
|
1852
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1853
|
|
|
*/ |
|
1854
|
|
|
public function setCritereTexte2($critereTexte2) { |
|
1855
|
|
|
$this->critereTexte2 = $critereTexte2; |
|
1856
|
|
|
return $this; |
|
1857
|
|
|
} |
|
1858
|
|
|
|
|
1859
|
|
|
/** |
|
1860
|
|
|
* Set the date passage. |
|
1861
|
|
|
* |
|
1862
|
|
|
* @param DateTime $datePassage The date passage. |
|
1863
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1864
|
|
|
*/ |
|
1865
|
|
|
public function setDatePassage(DateTime $datePassage = null) { |
|
1866
|
|
|
$this->datePassage = $datePassage; |
|
1867
|
|
|
return $this; |
|
1868
|
|
|
} |
|
1869
|
|
|
|
|
1870
|
|
|
/** |
|
1871
|
|
|
* Set the date premier passage. |
|
1872
|
|
|
* |
|
1873
|
|
|
* @param DateTime $datePremierPassage The date premier passage. |
|
1874
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1875
|
|
|
*/ |
|
1876
|
|
|
public function setDatePremierPassage(DateTime $datePremierPassage = null) { |
|
1877
|
|
|
$this->datePremierPassage = $datePremierPassage; |
|
1878
|
|
|
return $this; |
|
1879
|
|
|
} |
|
1880
|
|
|
|
|
1881
|
|
|
/** |
|
1882
|
|
|
* Set the date transfert. |
|
1883
|
|
|
* |
|
1884
|
|
|
* @param DateTime $dateTransfert The date transfert. |
|
1885
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1886
|
|
|
*/ |
|
1887
|
|
|
public function setDateTransfert(DateTime $dateTransfert = null) { |
|
1888
|
|
|
$this->dateTransfert = $dateTransfert; |
|
1889
|
|
|
return $this; |
|
1890
|
|
|
} |
|
1891
|
|
|
|
|
1892
|
|
|
/** |
|
1893
|
|
|
* Set the description. |
|
1894
|
|
|
* |
|
1895
|
|
|
* @param string $description The description. |
|
1896
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1897
|
|
|
*/ |
|
1898
|
|
|
public function setDescription($description) { |
|
1899
|
|
|
$this->description = $description; |
|
1900
|
|
|
return $this; |
|
1901
|
|
|
} |
|
1902
|
|
|
|
|
1903
|
|
|
/** |
|
1904
|
|
|
* Set the duree pointee. |
|
1905
|
|
|
* |
|
1906
|
|
|
* @param float $dureePointee The duree pointee. |
|
1907
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1908
|
|
|
*/ |
|
1909
|
|
|
public function setDureePointee($dureePointee) { |
|
1910
|
|
|
$this->dureePointee = $dureePointee; |
|
1911
|
|
|
return $this; |
|
1912
|
|
|
} |
|
1913
|
|
|
|
|
1914
|
|
|
/** |
|
1915
|
|
|
* Set the duree prevue. |
|
1916
|
|
|
* |
|
1917
|
|
|
* @param float $dureePrevue The duree prevue. |
|
1918
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1919
|
|
|
*/ |
|
1920
|
|
|
public function setDureePrevue($dureePrevue) { |
|
1921
|
|
|
$this->dureePrevue = $dureePrevue; |
|
1922
|
|
|
return $this; |
|
1923
|
|
|
} |
|
1924
|
|
|
|
|
1925
|
|
|
/** |
|
1926
|
|
|
* Set the duree validee. |
|
1927
|
|
|
* |
|
1928
|
|
|
* @param float $dureeValidee The duree validee. |
|
1929
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1930
|
|
|
*/ |
|
1931
|
|
|
public function setDureeValidee($dureeValidee) { |
|
1932
|
|
|
$this->dureeValidee = $dureeValidee; |
|
1933
|
|
|
return $this; |
|
1934
|
|
|
} |
|
1935
|
|
|
|
|
1936
|
|
|
/** |
|
1937
|
|
|
* Set the employe signe mob. |
|
1938
|
|
|
* |
|
1939
|
|
|
* @param string $employeSigneMob The employe signe mob. |
|
1940
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1941
|
|
|
*/ |
|
1942
|
|
|
public function setEmployeSigneMob($employeSigneMob) { |
|
1943
|
|
|
$this->employeSigneMob = $employeSigneMob; |
|
1944
|
|
|
return $this; |
|
1945
|
|
|
} |
|
1946
|
|
|
|
|
1947
|
|
|
/** |
|
1948
|
|
|
* Set the gestion planning. |
|
1949
|
|
|
* |
|
1950
|
|
|
* @param boolean $gestionPlanning The gestion planning. |
|
1951
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1952
|
|
|
*/ |
|
1953
|
|
|
public function setGestionPlanning($gestionPlanning) { |
|
1954
|
|
|
$this->gestionPlanning = $gestionPlanning; |
|
1955
|
|
|
return $this; |
|
1956
|
|
|
} |
|
1957
|
|
|
|
|
1958
|
|
|
/** |
|
1959
|
|
|
* Set the guid mob. |
|
1960
|
|
|
* |
|
1961
|
|
|
* @param string $guidMob The guid mob. |
|
1962
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1963
|
|
|
*/ |
|
1964
|
|
|
public function setGuidMob($guidMob) { |
|
1965
|
|
|
$this->guidMob = $guidMob; |
|
1966
|
|
|
return $this; |
|
1967
|
|
|
} |
|
1968
|
|
|
|
|
1969
|
|
|
/** |
|
1970
|
|
|
* Set the heure deb. |
|
1971
|
|
|
* |
|
1972
|
|
|
* @param DateTime $heureDeb The heure deb. |
|
1973
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1974
|
|
|
*/ |
|
1975
|
|
|
public function setHeureDeb(DateTime $heureDeb = null) { |
|
1976
|
|
|
$this->heureDeb = $heureDeb; |
|
1977
|
|
|
return $this; |
|
1978
|
|
|
} |
|
1979
|
|
|
|
|
1980
|
|
|
/** |
|
1981
|
|
|
* Set the latitude. |
|
1982
|
|
|
* |
|
1983
|
|
|
* @param float $latitude The latitude. |
|
1984
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1985
|
|
|
*/ |
|
1986
|
|
|
public function setLatitude($latitude) { |
|
1987
|
|
|
$this->latitude = $latitude; |
|
1988
|
|
|
return $this; |
|
1989
|
|
|
} |
|
1990
|
|
|
|
|
1991
|
|
|
/** |
|
1992
|
|
|
* Set the libelle. |
|
1993
|
|
|
* |
|
1994
|
|
|
* @param string $libelle The libelle. |
|
1995
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
1996
|
|
|
*/ |
|
1997
|
|
|
public function setLibelle($libelle) { |
|
1998
|
|
|
$this->libelle = $libelle; |
|
1999
|
|
|
return $this; |
|
2000
|
|
|
} |
|
2001
|
|
|
|
|
2002
|
|
|
/** |
|
2003
|
|
|
* Set the lien document. |
|
2004
|
|
|
* |
|
2005
|
|
|
* @param string $lienDocument The lien document. |
|
2006
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2007
|
|
|
*/ |
|
2008
|
|
|
public function setLienDocument($lienDocument) { |
|
2009
|
|
|
$this->lienDocument = $lienDocument; |
|
2010
|
|
|
return $this; |
|
2011
|
|
|
} |
|
2012
|
|
|
|
|
2013
|
|
|
/** |
|
2014
|
|
|
* Set the longitude. |
|
2015
|
|
|
* |
|
2016
|
|
|
* @param float $longitude The longitude. |
|
2017
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2018
|
|
|
*/ |
|
2019
|
|
|
public function setLongitude($longitude) { |
|
2020
|
|
|
$this->longitude = $longitude; |
|
2021
|
|
|
return $this; |
|
2022
|
|
|
} |
|
2023
|
|
|
|
|
2024
|
|
|
/** |
|
2025
|
|
|
* Set the montant h t devis. |
|
2026
|
|
|
* |
|
2027
|
|
|
* @param float $montantHTDevis The montant h t devis. |
|
2028
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2029
|
|
|
*/ |
|
2030
|
|
|
public function setMontantHTDevis($montantHTDevis) { |
|
2031
|
|
|
$this->montantHTDevis = $montantHTDevis; |
|
2032
|
|
|
return $this; |
|
2033
|
|
|
} |
|
2034
|
|
|
|
|
2035
|
|
|
/** |
|
2036
|
|
|
* Set the nb jours pointes. |
|
2037
|
|
|
* |
|
2038
|
|
|
* @param float $nbJoursPointes The nb jours pointes. |
|
2039
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2040
|
|
|
*/ |
|
2041
|
|
|
public function setNbJoursPointes($nbJoursPointes) { |
|
2042
|
|
|
$this->nbJoursPointes = $nbJoursPointes; |
|
2043
|
|
|
return $this; |
|
2044
|
|
|
} |
|
2045
|
|
|
|
|
2046
|
|
|
/** |
|
2047
|
|
|
* Set the nb jours prevus. |
|
2048
|
|
|
* |
|
2049
|
|
|
* @param float $nbJoursPrevus The nb jours prevus. |
|
2050
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2051
|
|
|
*/ |
|
2052
|
|
|
public function setNbJoursPrevus($nbJoursPrevus) { |
|
2053
|
|
|
$this->nbJoursPrevus = $nbJoursPrevus; |
|
2054
|
|
|
return $this; |
|
2055
|
|
|
} |
|
2056
|
|
|
|
|
2057
|
|
|
/** |
|
2058
|
|
|
* Set the nombre employes. |
|
2059
|
|
|
* |
|
2060
|
|
|
* @param int $nombreEmployes The nombre employes. |
|
2061
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2062
|
|
|
*/ |
|
2063
|
|
|
public function setNombreEmployes($nombreEmployes) { |
|
2064
|
|
|
$this->nombreEmployes = $nombreEmployes; |
|
2065
|
|
|
return $this; |
|
2066
|
|
|
} |
|
2067
|
|
|
|
|
2068
|
|
|
/** |
|
2069
|
|
|
* Set the non traite. |
|
2070
|
|
|
* |
|
2071
|
|
|
* @param boolean $nonTraite The non traite. |
|
2072
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2073
|
|
|
*/ |
|
2074
|
|
|
public function setNonTraite($nonTraite) { |
|
2075
|
|
|
$this->nonTraite = $nonTraite; |
|
2076
|
|
|
return $this; |
|
2077
|
|
|
} |
|
2078
|
|
|
|
|
2079
|
|
|
/** |
|
2080
|
|
|
* Set the num b t. |
|
2081
|
|
|
* |
|
2082
|
|
|
* @param int $numBT The num b t. |
|
2083
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2084
|
|
|
*/ |
|
2085
|
|
|
public function setNumBT($numBT) { |
|
2086
|
|
|
$this->numBT = $numBT; |
|
2087
|
|
|
return $this; |
|
2088
|
|
|
} |
|
2089
|
|
|
|
|
2090
|
|
|
/** |
|
2091
|
|
|
* Set the numero devis. |
|
2092
|
|
|
* |
|
2093
|
|
|
* @param string $numeroDevis The numero devis. |
|
2094
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2095
|
|
|
*/ |
|
2096
|
|
|
public function setNumeroDevis($numeroDevis) { |
|
2097
|
|
|
$this->numeroDevis = $numeroDevis; |
|
2098
|
|
|
return $this; |
|
2099
|
|
|
} |
|
2100
|
|
|
|
|
2101
|
|
|
/** |
|
2102
|
|
|
* Set the numero facture. |
|
2103
|
|
|
* |
|
2104
|
|
|
* @param string $numeroFacture The numero facture. |
|
2105
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2106
|
|
|
*/ |
|
2107
|
|
|
public function setNumeroFacture($numeroFacture) { |
|
2108
|
|
|
$this->numeroFacture = $numeroFacture; |
|
2109
|
|
|
return $this; |
|
2110
|
|
|
} |
|
2111
|
|
|
|
|
2112
|
|
|
/** |
|
2113
|
|
|
* Set the numero p j. |
|
2114
|
|
|
* |
|
2115
|
|
|
* @param int $numeroPJ The numero p j. |
|
2116
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2117
|
|
|
*/ |
|
2118
|
|
|
public function setNumeroPJ($numeroPJ) { |
|
2119
|
|
|
$this->numeroPJ = $numeroPJ; |
|
2120
|
|
|
return $this; |
|
2121
|
|
|
} |
|
2122
|
|
|
|
|
2123
|
|
|
/** |
|
2124
|
|
|
* Set the observation client. |
|
2125
|
|
|
* |
|
2126
|
|
|
* @param string $observationClient The observation client. |
|
2127
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2128
|
|
|
*/ |
|
2129
|
|
|
public function setObservationClient($observationClient) { |
|
2130
|
|
|
$this->observationClient = $observationClient; |
|
2131
|
|
|
return $this; |
|
2132
|
|
|
} |
|
2133
|
|
|
|
|
2134
|
|
|
/** |
|
2135
|
|
|
* Set the observation interne. |
|
2136
|
|
|
* |
|
2137
|
|
|
* @param string $observationInterne The observation interne. |
|
2138
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2139
|
|
|
*/ |
|
2140
|
|
|
public function setObservationInterne($observationInterne) { |
|
2141
|
|
|
$this->observationInterne = $observationInterne; |
|
2142
|
|
|
return $this; |
|
2143
|
|
|
} |
|
2144
|
|
|
|
|
2145
|
|
|
/** |
|
2146
|
|
|
* Set the occasionnel. |
|
2147
|
|
|
* |
|
2148
|
|
|
* @param boolean $occasionnel The occasionnel. |
|
2149
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2150
|
|
|
*/ |
|
2151
|
|
|
public function setOccasionnel($occasionnel) { |
|
2152
|
|
|
$this->occasionnel = $occasionnel; |
|
2153
|
|
|
return $this; |
|
2154
|
|
|
} |
|
2155
|
|
|
|
|
2156
|
|
|
/** |
|
2157
|
|
|
* Set the plusieurs jours. |
|
2158
|
|
|
* |
|
2159
|
|
|
* @param boolean $plusieursJours The plusieurs jours. |
|
2160
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2161
|
|
|
*/ |
|
2162
|
|
|
public function setPlusieursJours($plusieursJours) { |
|
2163
|
|
|
$this->plusieursJours = $plusieursJours; |
|
2164
|
|
|
return $this; |
|
2165
|
|
|
} |
|
2166
|
|
|
|
|
2167
|
|
|
/** |
|
2168
|
|
|
* Set the plusieurs mois. |
|
2169
|
|
|
* |
|
2170
|
|
|
* @param boolean $plusieursMois The plusieurs mois. |
|
2171
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2172
|
|
|
*/ |
|
2173
|
|
|
public function setPlusieursMois($plusieursMois) { |
|
2174
|
|
|
$this->plusieursMois = $plusieursMois; |
|
2175
|
|
|
return $this; |
|
2176
|
|
|
} |
|
2177
|
|
|
|
|
2178
|
|
|
/** |
|
2179
|
|
|
* Set the poste rent. |
|
2180
|
|
|
* |
|
2181
|
|
|
* @param string $posteRent The poste rent. |
|
2182
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2183
|
|
|
*/ |
|
2184
|
|
|
public function setPosteRent($posteRent) { |
|
2185
|
|
|
$this->posteRent = $posteRent; |
|
2186
|
|
|
return $this; |
|
2187
|
|
|
} |
|
2188
|
|
|
|
|
2189
|
|
|
/** |
|
2190
|
|
|
* Set the proratise. |
|
2191
|
|
|
* |
|
2192
|
|
|
* @param boolean $proratise The proratise. |
|
2193
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2194
|
|
|
*/ |
|
2195
|
|
|
public function setProratise($proratise) { |
|
2196
|
|
|
$this->proratise = $proratise; |
|
2197
|
|
|
return $this; |
|
2198
|
|
|
} |
|
2199
|
|
|
|
|
2200
|
|
|
/** |
|
2201
|
|
|
* Set the signataire. |
|
2202
|
|
|
* |
|
2203
|
|
|
* @param string $signataire The signataire. |
|
2204
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2205
|
|
|
*/ |
|
2206
|
|
|
public function setSignataire($signataire) { |
|
2207
|
|
|
$this->signataire = $signataire; |
|
2208
|
|
|
return $this; |
|
2209
|
|
|
} |
|
2210
|
|
|
|
|
2211
|
|
|
/** |
|
2212
|
|
|
* Set the signe. |
|
2213
|
|
|
* |
|
2214
|
|
|
* @param boolean $signe The signe. |
|
2215
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2216
|
|
|
*/ |
|
2217
|
|
|
public function setSigne($signe) { |
|
2218
|
|
|
$this->signe = $signe; |
|
2219
|
|
|
return $this; |
|
2220
|
|
|
} |
|
2221
|
|
|
|
|
2222
|
|
|
/** |
|
2223
|
|
|
* Set the start mob. |
|
2224
|
|
|
* |
|
2225
|
|
|
* @param string $startMob The start mob. |
|
2226
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2227
|
|
|
*/ |
|
2228
|
|
|
public function setStartMob($startMob) { |
|
2229
|
|
|
$this->startMob = $startMob; |
|
2230
|
|
|
return $this; |
|
2231
|
|
|
} |
|
2232
|
|
|
|
|
2233
|
|
|
/** |
|
2234
|
|
|
* Set the type b t. |
|
2235
|
|
|
* |
|
2236
|
|
|
* @param string $typeBT The type b t. |
|
2237
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2238
|
|
|
*/ |
|
2239
|
|
|
public function setTypeBT($typeBT) { |
|
2240
|
|
|
$this->typeBT = $typeBT; |
|
2241
|
|
|
return $this; |
|
2242
|
|
|
} |
|
2243
|
|
|
|
|
2244
|
|
|
/** |
|
2245
|
|
|
* Set the type b t saisi. |
|
2246
|
|
|
* |
|
2247
|
|
|
* @param string $typeBTSaisi The type b t saisi. |
|
2248
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2249
|
|
|
*/ |
|
2250
|
|
|
public function setTypeBTSaisi($typeBTSaisi) { |
|
2251
|
|
|
$this->typeBTSaisi = $typeBTSaisi; |
|
2252
|
|
|
return $this; |
|
2253
|
|
|
} |
|
2254
|
|
|
|
|
2255
|
|
|
/** |
|
2256
|
|
|
* Set the uniq i d blocage. |
|
2257
|
|
|
* |
|
2258
|
|
|
* @param string $uniqIDBlocage The uniq i d blocage. |
|
2259
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2260
|
|
|
*/ |
|
2261
|
|
|
public function setUniqIDBlocage($uniqIDBlocage) { |
|
2262
|
|
|
$this->uniqIDBlocage = $uniqIDBlocage; |
|
2263
|
|
|
return $this; |
|
2264
|
|
|
} |
|
2265
|
|
|
|
|
2266
|
|
|
/** |
|
2267
|
|
|
* Set the via. |
|
2268
|
|
|
* |
|
2269
|
|
|
* @param string $via The via. |
|
2270
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2271
|
|
|
*/ |
|
2272
|
|
|
public function setVia($via) { |
|
2273
|
|
|
$this->via = $via; |
|
2274
|
|
|
return $this; |
|
2275
|
|
|
} |
|
2276
|
|
|
|
|
2277
|
|
|
/** |
|
2278
|
|
|
* Set the reference1 devis. |
|
2279
|
|
|
* |
|
2280
|
|
|
* @param string $reference1Devis The reference1 devis. |
|
2281
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2282
|
|
|
*/ |
|
2283
|
|
|
public function setreference1Devis($reference1Devis) { |
|
2284
|
|
|
$this->reference1Devis = $reference1Devis; |
|
2285
|
|
|
return $this; |
|
2286
|
|
|
} |
|
2287
|
|
|
|
|
2288
|
|
|
/** |
|
2289
|
|
|
* Set the reference2 devis. |
|
2290
|
|
|
* |
|
2291
|
|
|
* @param string $reference2Devis The reference2 devis. |
|
2292
|
|
|
* @return BonTravPrev Returns this bon trav prev. |
|
2293
|
|
|
*/ |
|
2294
|
|
|
public function setreference2Devis($reference2Devis) { |
|
2295
|
|
|
$this->reference2Devis = $reference2Devis; |
|
2296
|
|
|
return $this; |
|
2297
|
|
|
} |
|
2298
|
|
|
|
|
2299
|
|
|
} |
|
2300
|
|
|
|