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\ThirdParty\Quadratus\Model\Proprete; |
13
|
|
|
|
14
|
|
|
use DateTime; |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* Clients. |
18
|
|
|
* |
19
|
|
|
* @author webeweb <https://github.com/webeweb/> |
20
|
|
|
* @package WBW\Library\Core\ThirdParty\Quadratus\Model\Proprete |
21
|
|
|
*/ |
22
|
|
|
class Clients { |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* Actif. |
26
|
|
|
* |
27
|
|
|
* @var bool|null |
28
|
|
|
*/ |
29
|
|
|
private $actif; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* Bloque. |
33
|
|
|
* |
34
|
|
|
* @var bool|null |
35
|
|
|
*/ |
36
|
|
|
private $bloque; |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* Cle alpha. |
40
|
|
|
* |
41
|
|
|
* @var string|null |
42
|
|
|
*/ |
43
|
|
|
private $cleAlpha; |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* Code analytique. |
47
|
|
|
* |
48
|
|
|
* @var string|null |
49
|
|
|
*/ |
50
|
|
|
private $codeAnalytique; |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* Code categorie client. |
54
|
|
|
* |
55
|
|
|
* @var string|null |
56
|
|
|
*/ |
57
|
|
|
private $codeCategorieClient; |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* Code client fact. |
61
|
|
|
* |
62
|
|
|
* @var string|null |
63
|
|
|
*/ |
64
|
|
|
private $codeClientFact; |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* Code depot. |
68
|
|
|
* |
69
|
|
|
* @var string|null |
70
|
|
|
*/ |
71
|
|
|
private $codeDepot; |
72
|
|
|
|
73
|
|
|
/** |
74
|
|
|
* Code devise. |
75
|
|
|
* |
76
|
|
|
* @var string|null |
77
|
|
|
*/ |
78
|
|
|
private $codeDevise; |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* Code famille. |
82
|
|
|
* |
83
|
|
|
* @var string|null |
84
|
|
|
*/ |
85
|
|
|
private $codeFamille; |
86
|
|
|
|
87
|
|
|
/** |
88
|
|
|
* Code geo. |
89
|
|
|
* |
90
|
|
|
* @var string|null |
91
|
|
|
*/ |
92
|
|
|
private $codeGeo; |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* Code langue designation article. |
96
|
|
|
* |
97
|
|
|
* @var string|null |
98
|
|
|
*/ |
99
|
|
|
private $codeLangueDesignationArticle; |
100
|
|
|
|
101
|
|
|
/** |
102
|
|
|
* Code mode reglement. |
103
|
|
|
* |
104
|
|
|
* @var string|null |
105
|
|
|
*/ |
106
|
|
|
private $codeModeReglement; |
107
|
|
|
|
108
|
|
|
/** |
109
|
|
|
* Code origine. |
110
|
|
|
* |
111
|
|
|
* @var string|null |
112
|
|
|
*/ |
113
|
|
|
private $codeOrigine; |
114
|
|
|
|
115
|
|
|
/** |
116
|
|
|
* Code regroupement. |
117
|
|
|
* |
118
|
|
|
* @var string|null |
119
|
|
|
*/ |
120
|
|
|
private $codeRegroupement; |
121
|
|
|
|
122
|
|
|
/** |
123
|
|
|
* Code representant. |
124
|
|
|
* |
125
|
|
|
* @var string|null |
126
|
|
|
*/ |
127
|
|
|
private $codeRepresentant; |
128
|
|
|
|
129
|
|
|
/** |
130
|
|
|
* Code revision. |
131
|
|
|
* |
132
|
|
|
* @var string|null |
133
|
|
|
*/ |
134
|
|
|
private $codeRevision; |
135
|
|
|
|
136
|
|
|
/** |
137
|
|
|
* Code sous famille. |
138
|
|
|
* |
139
|
|
|
* @var string|null |
140
|
|
|
*/ |
141
|
|
|
private $codeSousFamille; |
142
|
|
|
|
143
|
|
|
/** |
144
|
|
|
* Code sous tournee. |
145
|
|
|
* |
146
|
|
|
* @var string|null |
147
|
|
|
*/ |
148
|
|
|
private $codeSousTournee; |
149
|
|
|
|
150
|
|
|
/** |
151
|
|
|
* Code tva. |
152
|
|
|
* |
153
|
|
|
* @var string|null |
154
|
|
|
*/ |
155
|
|
|
private $codeTva; |
156
|
|
|
|
157
|
|
|
/** |
158
|
|
|
* Code tournee. |
159
|
|
|
* |
160
|
|
|
* @var string|null |
161
|
|
|
*/ |
162
|
|
|
private $codeTournee; |
163
|
|
|
|
164
|
|
|
/** |
165
|
|
|
* Code ventil compta. |
166
|
|
|
* |
167
|
|
|
* @var string|null |
168
|
|
|
*/ |
169
|
|
|
private $codeVentilCompta; |
170
|
|
|
|
171
|
|
|
/** |
172
|
|
|
* Collectif comptable. |
173
|
|
|
* |
174
|
|
|
* @var int|null |
175
|
|
|
*/ |
176
|
|
|
private $collectifComptable; |
177
|
|
|
|
178
|
|
|
/** |
179
|
|
|
* Commentaire. |
180
|
|
|
* |
181
|
|
|
* @var string|null |
182
|
|
|
*/ |
183
|
|
|
private $commentaire; |
184
|
|
|
|
185
|
|
|
/** |
186
|
|
|
* Date creat. |
187
|
|
|
* |
188
|
|
|
* @var DateTime|null |
189
|
|
|
*/ |
190
|
|
|
private $dateCreat; |
191
|
|
|
|
192
|
|
|
/** |
193
|
|
|
* Date entree. |
194
|
|
|
* |
195
|
|
|
* @var DateTime|null |
196
|
|
|
*/ |
197
|
|
|
private $dateEntree; |
198
|
|
|
|
199
|
|
|
/** |
200
|
|
|
* Date modif. |
201
|
|
|
* |
202
|
|
|
* @var DateTime|null |
203
|
|
|
*/ |
204
|
|
|
private $dateModif; |
205
|
|
|
|
206
|
|
|
/** |
207
|
|
|
* Date sortie. |
208
|
|
|
* |
209
|
|
|
* @var DateTime|null |
210
|
|
|
*/ |
211
|
|
|
private $dateSortie; |
212
|
|
|
|
213
|
|
|
/** |
214
|
|
|
* Derniere annee facturee. |
215
|
|
|
* |
216
|
|
|
* @var int|null |
217
|
|
|
*/ |
218
|
|
|
private $derniereAnneeFacturee; |
219
|
|
|
|
220
|
|
|
/** |
221
|
|
|
* Domiciliation bancaire1. |
222
|
|
|
* |
223
|
|
|
* @var string|null |
224
|
|
|
*/ |
225
|
|
|
private $domiciliationBancaire1; |
226
|
|
|
|
227
|
|
|
/** |
228
|
|
|
* Domiciliation bancaire2. |
229
|
|
|
* |
230
|
|
|
* @var string|null |
231
|
|
|
*/ |
232
|
|
|
private $domiciliationBancaire2; |
233
|
|
|
|
234
|
|
|
/** |
235
|
|
|
* Echeance depart. |
236
|
|
|
* |
237
|
|
|
* @var int|null |
238
|
|
|
*/ |
239
|
|
|
private $echeanceDepart; |
240
|
|
|
|
241
|
|
|
/** |
242
|
|
|
* Echeance le. |
243
|
|
|
* |
244
|
|
|
* @var int|null |
245
|
|
|
*/ |
246
|
|
|
private $echeanceLe; |
247
|
|
|
|
248
|
|
|
/** |
249
|
|
|
* Echeance nb jours. |
250
|
|
|
* |
251
|
|
|
* @var int|null |
252
|
|
|
*/ |
253
|
|
|
private $echeanceNbJours; |
254
|
|
|
|
255
|
|
|
/** |
256
|
|
|
* Facture euros. |
257
|
|
|
* |
258
|
|
|
* @var bool|null |
259
|
|
|
*/ |
260
|
|
|
private $factureEuros; |
261
|
|
|
|
262
|
|
|
/** |
263
|
|
|
* Id. |
264
|
|
|
* |
265
|
|
|
* @var string|null |
266
|
|
|
*/ |
267
|
|
|
private $id; |
268
|
|
|
|
269
|
|
|
/** |
270
|
|
|
* Nb bl. |
271
|
|
|
* |
272
|
|
|
* @var int|null |
273
|
|
|
*/ |
274
|
|
|
private $nbBl; |
275
|
|
|
|
276
|
|
|
/** |
277
|
|
|
* Nb facture. |
278
|
|
|
* |
279
|
|
|
* @var int|null |
280
|
|
|
*/ |
281
|
|
|
private $nbFacture; |
282
|
|
|
|
283
|
|
|
/** |
284
|
|
|
* Nombre echeances. |
285
|
|
|
* |
286
|
|
|
* @var int|null |
287
|
|
|
*/ |
288
|
|
|
private $nombreEcheances; |
289
|
|
|
|
290
|
|
|
/** |
291
|
|
|
* Num cpt collectif. |
292
|
|
|
* |
293
|
|
|
* @var string|null |
294
|
|
|
*/ |
295
|
|
|
private $numCptCollectif; |
296
|
|
|
|
297
|
|
|
/** |
298
|
|
|
* Num cpt comptable. |
299
|
|
|
* |
300
|
|
|
* @var string|null |
301
|
|
|
*/ |
302
|
|
|
private $numCptComptable; |
303
|
|
|
|
304
|
|
|
/** |
305
|
|
|
* Premiere annee facturee. |
306
|
|
|
* |
307
|
|
|
* @var int|null |
308
|
|
|
*/ |
309
|
|
|
private $premiereAnneeFacturee; |
310
|
|
|
|
311
|
|
|
/** |
312
|
|
|
* Prospect. |
313
|
|
|
* |
314
|
|
|
* @var bool|null |
315
|
|
|
*/ |
316
|
|
|
private $prospect; |
317
|
|
|
|
318
|
|
|
/** |
319
|
|
|
* Rib. |
320
|
|
|
* |
321
|
|
|
* @var string|null |
322
|
|
|
*/ |
323
|
|
|
private $rib; |
324
|
|
|
|
325
|
|
|
/** |
326
|
|
|
* Remise ligne1. |
327
|
|
|
* |
328
|
|
|
* @var float|null |
329
|
|
|
*/ |
330
|
|
|
private $remiseLigne1; |
331
|
|
|
|
332
|
|
|
/** |
333
|
|
|
* Remise ligne2. |
334
|
|
|
* |
335
|
|
|
* @var float|null |
336
|
|
|
*/ |
337
|
|
|
private $remiseLigne2; |
338
|
|
|
|
339
|
|
|
/** |
340
|
|
|
* Remise ligne3. |
341
|
|
|
* |
342
|
|
|
* @var float|null |
343
|
|
|
*/ |
344
|
|
|
private $remiseLigne3; |
345
|
|
|
|
346
|
|
|
/** |
347
|
|
|
* Remise pied1. |
348
|
|
|
* |
349
|
|
|
* @var float|null |
350
|
|
|
*/ |
351
|
|
|
private $remisePied1; |
352
|
|
|
|
353
|
|
|
/** |
354
|
|
|
* Remise pied2. |
355
|
|
|
* |
356
|
|
|
* @var float|null |
357
|
|
|
*/ |
358
|
|
|
private $remisePied2; |
359
|
|
|
|
360
|
|
|
/** |
361
|
|
|
* Remise pied3. |
362
|
|
|
* |
363
|
|
|
* @var float|null |
364
|
|
|
*/ |
365
|
|
|
private $remisePied3; |
366
|
|
|
|
367
|
|
|
/** |
368
|
|
|
* Soumis escompte. |
369
|
|
|
* |
370
|
|
|
* @var bool|null |
371
|
|
|
*/ |
372
|
|
|
private $soumisEscompte; |
373
|
|
|
|
374
|
|
|
/** |
375
|
|
|
* Taux escompte. |
376
|
|
|
* |
377
|
|
|
* @var float|null |
378
|
|
|
*/ |
379
|
|
|
private $tauxEscompte; |
380
|
|
|
|
381
|
|
|
/** |
382
|
|
|
* Transporteur. |
383
|
|
|
* |
384
|
|
|
* @var string|null |
385
|
|
|
*/ |
386
|
|
|
private $transporteur; |
387
|
|
|
|
388
|
|
|
/** |
389
|
|
|
* Type facture. |
390
|
|
|
* |
391
|
|
|
* @var int|null |
392
|
|
|
*/ |
393
|
|
|
private $typeFacture; |
394
|
|
|
|
395
|
|
|
|
396
|
|
|
/** |
397
|
|
|
* Constructor. |
398
|
|
|
*/ |
399
|
|
|
public function __construct() { |
400
|
|
|
// NOTHING TO DO |
401
|
|
|
} |
402
|
|
|
|
403
|
|
|
/** |
404
|
|
|
* Get the actif. |
405
|
|
|
* |
406
|
|
|
* @return bool|null Returns the actif. |
407
|
|
|
*/ |
408
|
|
|
public function getActif(): ?bool{ |
409
|
|
|
return $this->actif; |
410
|
|
|
} |
411
|
|
|
|
412
|
|
|
/** |
413
|
|
|
* Get the bloque. |
414
|
|
|
* |
415
|
|
|
* @return bool|null Returns the bloque. |
416
|
|
|
*/ |
417
|
|
|
public function getBloque(): ?bool{ |
418
|
|
|
return $this->bloque; |
419
|
|
|
} |
420
|
|
|
|
421
|
|
|
/** |
422
|
|
|
* Get the cle alpha. |
423
|
|
|
* |
424
|
|
|
* @return string|null Returns the cle alpha. |
425
|
|
|
*/ |
426
|
|
|
public function getCleAlpha(): ?string{ |
427
|
|
|
return $this->cleAlpha; |
428
|
|
|
} |
429
|
|
|
|
430
|
|
|
/** |
431
|
|
|
* Get the code analytique. |
432
|
|
|
* |
433
|
|
|
* @return string|null Returns the code analytique. |
434
|
|
|
*/ |
435
|
|
|
public function getCodeAnalytique(): ?string{ |
436
|
|
|
return $this->codeAnalytique; |
437
|
|
|
} |
438
|
|
|
|
439
|
|
|
/** |
440
|
|
|
* Get the code categorie client. |
441
|
|
|
* |
442
|
|
|
* @return string|null Returns the code categorie client. |
443
|
|
|
*/ |
444
|
|
|
public function getCodeCategorieClient(): ?string{ |
445
|
|
|
return $this->codeCategorieClient; |
446
|
|
|
} |
447
|
|
|
|
448
|
|
|
/** |
449
|
|
|
* Get the code client fact. |
450
|
|
|
* |
451
|
|
|
* @return string|null Returns the code client fact. |
452
|
|
|
*/ |
453
|
|
|
public function getCodeClientFact(): ?string{ |
454
|
|
|
return $this->codeClientFact; |
455
|
|
|
} |
456
|
|
|
|
457
|
|
|
/** |
458
|
|
|
* Get the code depot. |
459
|
|
|
* |
460
|
|
|
* @return string|null Returns the code depot. |
461
|
|
|
*/ |
462
|
|
|
public function getCodeDepot(): ?string{ |
463
|
|
|
return $this->codeDepot; |
464
|
|
|
} |
465
|
|
|
|
466
|
|
|
/** |
467
|
|
|
* Get the code devise. |
468
|
|
|
* |
469
|
|
|
* @return string|null Returns the code devise. |
470
|
|
|
*/ |
471
|
|
|
public function getCodeDevise(): ?string{ |
472
|
|
|
return $this->codeDevise; |
473
|
|
|
} |
474
|
|
|
|
475
|
|
|
/** |
476
|
|
|
* Get the code famille. |
477
|
|
|
* |
478
|
|
|
* @return string|null Returns the code famille. |
479
|
|
|
*/ |
480
|
|
|
public function getCodeFamille(): ?string{ |
481
|
|
|
return $this->codeFamille; |
482
|
|
|
} |
483
|
|
|
|
484
|
|
|
/** |
485
|
|
|
* Get the code geo. |
486
|
|
|
* |
487
|
|
|
* @return string|null Returns the code geo. |
488
|
|
|
*/ |
489
|
|
|
public function getCodeGeo(): ?string{ |
490
|
|
|
return $this->codeGeo; |
491
|
|
|
} |
492
|
|
|
|
493
|
|
|
/** |
494
|
|
|
* Get the code langue designation article. |
495
|
|
|
* |
496
|
|
|
* @return string|null Returns the code langue designation article. |
497
|
|
|
*/ |
498
|
|
|
public function getCodeLangueDesignationArticle(): ?string{ |
499
|
|
|
return $this->codeLangueDesignationArticle; |
500
|
|
|
} |
501
|
|
|
|
502
|
|
|
/** |
503
|
|
|
* Get the code mode reglement. |
504
|
|
|
* |
505
|
|
|
* @return string|null Returns the code mode reglement. |
506
|
|
|
*/ |
507
|
|
|
public function getCodeModeReglement(): ?string{ |
508
|
|
|
return $this->codeModeReglement; |
509
|
|
|
} |
510
|
|
|
|
511
|
|
|
/** |
512
|
|
|
* Get the code origine. |
513
|
|
|
* |
514
|
|
|
* @return string|null Returns the code origine. |
515
|
|
|
*/ |
516
|
|
|
public function getCodeOrigine(): ?string{ |
517
|
|
|
return $this->codeOrigine; |
518
|
|
|
} |
519
|
|
|
|
520
|
|
|
/** |
521
|
|
|
* Get the code regroupement. |
522
|
|
|
* |
523
|
|
|
* @return string|null Returns the code regroupement. |
524
|
|
|
*/ |
525
|
|
|
public function getCodeRegroupement(): ?string{ |
526
|
|
|
return $this->codeRegroupement; |
527
|
|
|
} |
528
|
|
|
|
529
|
|
|
/** |
530
|
|
|
* Get the code representant. |
531
|
|
|
* |
532
|
|
|
* @return string|null Returns the code representant. |
533
|
|
|
*/ |
534
|
|
|
public function getCodeRepresentant(): ?string{ |
535
|
|
|
return $this->codeRepresentant; |
536
|
|
|
} |
537
|
|
|
|
538
|
|
|
/** |
539
|
|
|
* Get the code revision. |
540
|
|
|
* |
541
|
|
|
* @return string|null Returns the code revision. |
542
|
|
|
*/ |
543
|
|
|
public function getCodeRevision(): ?string{ |
544
|
|
|
return $this->codeRevision; |
545
|
|
|
} |
546
|
|
|
|
547
|
|
|
/** |
548
|
|
|
* Get the code sous famille. |
549
|
|
|
* |
550
|
|
|
* @return string|null Returns the code sous famille. |
551
|
|
|
*/ |
552
|
|
|
public function getCodeSousFamille(): ?string{ |
553
|
|
|
return $this->codeSousFamille; |
554
|
|
|
} |
555
|
|
|
|
556
|
|
|
/** |
557
|
|
|
* Get the code sous tournee. |
558
|
|
|
* |
559
|
|
|
* @return string|null Returns the code sous tournee. |
560
|
|
|
*/ |
561
|
|
|
public function getCodeSousTournee(): ?string{ |
562
|
|
|
return $this->codeSousTournee; |
563
|
|
|
} |
564
|
|
|
|
565
|
|
|
/** |
566
|
|
|
* Get the code tva. |
567
|
|
|
* |
568
|
|
|
* @return string|null Returns the code tva. |
569
|
|
|
*/ |
570
|
|
|
public function getCodeTva(): ?string{ |
571
|
|
|
return $this->codeTva; |
572
|
|
|
} |
573
|
|
|
|
574
|
|
|
/** |
575
|
|
|
* Get the code tournee. |
576
|
|
|
* |
577
|
|
|
* @return string|null Returns the code tournee. |
578
|
|
|
*/ |
579
|
|
|
public function getCodeTournee(): ?string{ |
580
|
|
|
return $this->codeTournee; |
581
|
|
|
} |
582
|
|
|
|
583
|
|
|
/** |
584
|
|
|
* Get the code ventil compta. |
585
|
|
|
* |
586
|
|
|
* @return string|null Returns the code ventil compta. |
587
|
|
|
*/ |
588
|
|
|
public function getCodeVentilCompta(): ?string{ |
589
|
|
|
return $this->codeVentilCompta; |
590
|
|
|
} |
591
|
|
|
|
592
|
|
|
/** |
593
|
|
|
* Get the collectif comptable. |
594
|
|
|
* |
595
|
|
|
* @return int|null Returns the collectif comptable. |
596
|
|
|
*/ |
597
|
|
|
public function getCollectifComptable(): ?int{ |
598
|
|
|
return $this->collectifComptable; |
599
|
|
|
} |
600
|
|
|
|
601
|
|
|
/** |
602
|
|
|
* Get the commentaire. |
603
|
|
|
* |
604
|
|
|
* @return string|null Returns the commentaire. |
605
|
|
|
*/ |
606
|
|
|
public function getCommentaire(): ?string{ |
607
|
|
|
return $this->commentaire; |
608
|
|
|
} |
609
|
|
|
|
610
|
|
|
/** |
611
|
|
|
* Get the date creat. |
612
|
|
|
* |
613
|
|
|
* @return DateTime|null Returns the date creat. |
614
|
|
|
*/ |
615
|
|
|
public function getDateCreat(): ?DateTime{ |
616
|
|
|
return $this->dateCreat; |
617
|
|
|
} |
618
|
|
|
|
619
|
|
|
/** |
620
|
|
|
* Get the date entree. |
621
|
|
|
* |
622
|
|
|
* @return DateTime|null Returns the date entree. |
623
|
|
|
*/ |
624
|
|
|
public function getDateEntree(): ?DateTime{ |
625
|
|
|
return $this->dateEntree; |
626
|
|
|
} |
627
|
|
|
|
628
|
|
|
/** |
629
|
|
|
* Get the date modif. |
630
|
|
|
* |
631
|
|
|
* @return DateTime|null Returns the date modif. |
632
|
|
|
*/ |
633
|
|
|
public function getDateModif(): ?DateTime{ |
634
|
|
|
return $this->dateModif; |
635
|
|
|
} |
636
|
|
|
|
637
|
|
|
/** |
638
|
|
|
* Get the date sortie. |
639
|
|
|
* |
640
|
|
|
* @return DateTime|null Returns the date sortie. |
641
|
|
|
*/ |
642
|
|
|
public function getDateSortie(): ?DateTime{ |
643
|
|
|
return $this->dateSortie; |
644
|
|
|
} |
645
|
|
|
|
646
|
|
|
/** |
647
|
|
|
* Get the derniere annee facturee. |
648
|
|
|
* |
649
|
|
|
* @return int|null Returns the derniere annee facturee. |
650
|
|
|
*/ |
651
|
|
|
public function getDerniereAnneeFacturee(): ?int{ |
652
|
|
|
return $this->derniereAnneeFacturee; |
653
|
|
|
} |
654
|
|
|
|
655
|
|
|
/** |
656
|
|
|
* Get the domiciliation bancaire1. |
657
|
|
|
* |
658
|
|
|
* @return string|null Returns the domiciliation bancaire1. |
659
|
|
|
*/ |
660
|
|
|
public function getDomiciliationBancaire1(): ?string{ |
661
|
|
|
return $this->domiciliationBancaire1; |
662
|
|
|
} |
663
|
|
|
|
664
|
|
|
/** |
665
|
|
|
* Get the domiciliation bancaire2. |
666
|
|
|
* |
667
|
|
|
* @return string|null Returns the domiciliation bancaire2. |
668
|
|
|
*/ |
669
|
|
|
public function getDomiciliationBancaire2(): ?string{ |
670
|
|
|
return $this->domiciliationBancaire2; |
671
|
|
|
} |
672
|
|
|
|
673
|
|
|
/** |
674
|
|
|
* Get the echeance depart. |
675
|
|
|
* |
676
|
|
|
* @return int|null Returns the echeance depart. |
677
|
|
|
*/ |
678
|
|
|
public function getEcheanceDepart(): ?int{ |
679
|
|
|
return $this->echeanceDepart; |
680
|
|
|
} |
681
|
|
|
|
682
|
|
|
/** |
683
|
|
|
* Get the echeance le. |
684
|
|
|
* |
685
|
|
|
* @return int|null Returns the echeance le. |
686
|
|
|
*/ |
687
|
|
|
public function getEcheanceLe(): ?int{ |
688
|
|
|
return $this->echeanceLe; |
689
|
|
|
} |
690
|
|
|
|
691
|
|
|
/** |
692
|
|
|
* Get the echeance nb jours. |
693
|
|
|
* |
694
|
|
|
* @return int|null Returns the echeance nb jours. |
695
|
|
|
*/ |
696
|
|
|
public function getEcheanceNbJours(): ?int{ |
697
|
|
|
return $this->echeanceNbJours; |
698
|
|
|
} |
699
|
|
|
|
700
|
|
|
/** |
701
|
|
|
* Get the facture euros. |
702
|
|
|
* |
703
|
|
|
* @return bool|null Returns the facture euros. |
704
|
|
|
*/ |
705
|
|
|
public function getFactureEuros(): ?bool{ |
706
|
|
|
return $this->factureEuros; |
707
|
|
|
} |
708
|
|
|
|
709
|
|
|
/** |
710
|
|
|
* Get the id. |
711
|
|
|
* |
712
|
|
|
* @return string|null Returns the id. |
713
|
|
|
*/ |
714
|
|
|
public function getId(): ?string{ |
715
|
|
|
return $this->id; |
716
|
|
|
} |
717
|
|
|
|
718
|
|
|
/** |
719
|
|
|
* Get the nb bl. |
720
|
|
|
* |
721
|
|
|
* @return int|null Returns the nb bl. |
722
|
|
|
*/ |
723
|
|
|
public function getNbBl(): ?int{ |
724
|
|
|
return $this->nbBl; |
725
|
|
|
} |
726
|
|
|
|
727
|
|
|
/** |
728
|
|
|
* Get the nb facture. |
729
|
|
|
* |
730
|
|
|
* @return int|null Returns the nb facture. |
731
|
|
|
*/ |
732
|
|
|
public function getNbFacture(): ?int{ |
733
|
|
|
return $this->nbFacture; |
734
|
|
|
} |
735
|
|
|
|
736
|
|
|
/** |
737
|
|
|
* Get the nombre echeances. |
738
|
|
|
* |
739
|
|
|
* @return int|null Returns the nombre echeances. |
740
|
|
|
*/ |
741
|
|
|
public function getNombreEcheances(): ?int{ |
742
|
|
|
return $this->nombreEcheances; |
743
|
|
|
} |
744
|
|
|
|
745
|
|
|
/** |
746
|
|
|
* Get the num cpt collectif. |
747
|
|
|
* |
748
|
|
|
* @return string|null Returns the num cpt collectif. |
749
|
|
|
*/ |
750
|
|
|
public function getNumCptCollectif(): ?string{ |
751
|
|
|
return $this->numCptCollectif; |
752
|
|
|
} |
753
|
|
|
|
754
|
|
|
/** |
755
|
|
|
* Get the num cpt comptable. |
756
|
|
|
* |
757
|
|
|
* @return string|null Returns the num cpt comptable. |
758
|
|
|
*/ |
759
|
|
|
public function getNumCptComptable(): ?string{ |
760
|
|
|
return $this->numCptComptable; |
761
|
|
|
} |
762
|
|
|
|
763
|
|
|
/** |
764
|
|
|
* Get the premiere annee facturee. |
765
|
|
|
* |
766
|
|
|
* @return int|null Returns the premiere annee facturee. |
767
|
|
|
*/ |
768
|
|
|
public function getPremiereAnneeFacturee(): ?int{ |
769
|
|
|
return $this->premiereAnneeFacturee; |
770
|
|
|
} |
771
|
|
|
|
772
|
|
|
/** |
773
|
|
|
* Get the prospect. |
774
|
|
|
* |
775
|
|
|
* @return bool|null Returns the prospect. |
776
|
|
|
*/ |
777
|
|
|
public function getProspect(): ?bool{ |
778
|
|
|
return $this->prospect; |
779
|
|
|
} |
780
|
|
|
|
781
|
|
|
/** |
782
|
|
|
* Get the rib. |
783
|
|
|
* |
784
|
|
|
* @return string|null Returns the rib. |
785
|
|
|
*/ |
786
|
|
|
public function getRib(): ?string{ |
787
|
|
|
return $this->rib; |
788
|
|
|
} |
789
|
|
|
|
790
|
|
|
/** |
791
|
|
|
* Get the remise ligne1. |
792
|
|
|
* |
793
|
|
|
* @return float|null Returns the remise ligne1. |
794
|
|
|
*/ |
795
|
|
|
public function getRemiseLigne1(): ?float{ |
796
|
|
|
return $this->remiseLigne1; |
797
|
|
|
} |
798
|
|
|
|
799
|
|
|
/** |
800
|
|
|
* Get the remise ligne2. |
801
|
|
|
* |
802
|
|
|
* @return float|null Returns the remise ligne2. |
803
|
|
|
*/ |
804
|
|
|
public function getRemiseLigne2(): ?float{ |
805
|
|
|
return $this->remiseLigne2; |
806
|
|
|
} |
807
|
|
|
|
808
|
|
|
/** |
809
|
|
|
* Get the remise ligne3. |
810
|
|
|
* |
811
|
|
|
* @return float|null Returns the remise ligne3. |
812
|
|
|
*/ |
813
|
|
|
public function getRemiseLigne3(): ?float{ |
814
|
|
|
return $this->remiseLigne3; |
815
|
|
|
} |
816
|
|
|
|
817
|
|
|
/** |
818
|
|
|
* Get the remise pied1. |
819
|
|
|
* |
820
|
|
|
* @return float|null Returns the remise pied1. |
821
|
|
|
*/ |
822
|
|
|
public function getRemisePied1(): ?float{ |
823
|
|
|
return $this->remisePied1; |
824
|
|
|
} |
825
|
|
|
|
826
|
|
|
/** |
827
|
|
|
* Get the remise pied2. |
828
|
|
|
* |
829
|
|
|
* @return float|null Returns the remise pied2. |
830
|
|
|
*/ |
831
|
|
|
public function getRemisePied2(): ?float{ |
832
|
|
|
return $this->remisePied2; |
833
|
|
|
} |
834
|
|
|
|
835
|
|
|
/** |
836
|
|
|
* Get the remise pied3. |
837
|
|
|
* |
838
|
|
|
* @return float|null Returns the remise pied3. |
839
|
|
|
*/ |
840
|
|
|
public function getRemisePied3(): ?float{ |
841
|
|
|
return $this->remisePied3; |
842
|
|
|
} |
843
|
|
|
|
844
|
|
|
/** |
845
|
|
|
* Get the soumis escompte. |
846
|
|
|
* |
847
|
|
|
* @return bool|null Returns the soumis escompte. |
848
|
|
|
*/ |
849
|
|
|
public function getSoumisEscompte(): ?bool{ |
850
|
|
|
return $this->soumisEscompte; |
851
|
|
|
} |
852
|
|
|
|
853
|
|
|
/** |
854
|
|
|
* Get the taux escompte. |
855
|
|
|
* |
856
|
|
|
* @return float|null Returns the taux escompte. |
857
|
|
|
*/ |
858
|
|
|
public function getTauxEscompte(): ?float{ |
859
|
|
|
return $this->tauxEscompte; |
860
|
|
|
} |
861
|
|
|
|
862
|
|
|
/** |
863
|
|
|
* Get the transporteur. |
864
|
|
|
* |
865
|
|
|
* @return string|null Returns the transporteur. |
866
|
|
|
*/ |
867
|
|
|
public function getTransporteur(): ?string{ |
868
|
|
|
return $this->transporteur; |
869
|
|
|
} |
870
|
|
|
|
871
|
|
|
/** |
872
|
|
|
* Get the type facture. |
873
|
|
|
* |
874
|
|
|
* @return int|null Returns the type facture. |
875
|
|
|
*/ |
876
|
|
|
public function getTypeFacture(): ?int{ |
877
|
|
|
return $this->typeFacture; |
878
|
|
|
} |
879
|
|
|
|
880
|
|
|
/** |
881
|
|
|
* Set the actif. |
882
|
|
|
* |
883
|
|
|
* @param bool|null $actif The actif. |
884
|
|
|
* @return Clients Returns this Clients. |
885
|
|
|
*/ |
886
|
|
|
public function setActif(?bool $actif): Clients { |
887
|
|
|
$this->actif = $actif; |
888
|
|
|
return $this; |
889
|
|
|
} |
890
|
|
|
|
891
|
|
|
/** |
892
|
|
|
* Set the bloque. |
893
|
|
|
* |
894
|
|
|
* @param bool|null $bloque The bloque. |
895
|
|
|
* @return Clients Returns this Clients. |
896
|
|
|
*/ |
897
|
|
|
public function setBloque(?bool $bloque): Clients { |
898
|
|
|
$this->bloque = $bloque; |
899
|
|
|
return $this; |
900
|
|
|
} |
901
|
|
|
|
902
|
|
|
/** |
903
|
|
|
* Set the cle alpha. |
904
|
|
|
* |
905
|
|
|
* @param string|null $cleAlpha The cle alpha. |
906
|
|
|
* @return Clients Returns this Clients. |
907
|
|
|
*/ |
908
|
|
|
public function setCleAlpha(?string $cleAlpha): Clients { |
909
|
|
|
$this->cleAlpha = $cleAlpha; |
910
|
|
|
return $this; |
911
|
|
|
} |
912
|
|
|
|
913
|
|
|
/** |
914
|
|
|
* Set the code analytique. |
915
|
|
|
* |
916
|
|
|
* @param string|null $codeAnalytique The code analytique. |
917
|
|
|
* @return Clients Returns this Clients. |
918
|
|
|
*/ |
919
|
|
|
public function setCodeAnalytique(?string $codeAnalytique): Clients { |
920
|
|
|
$this->codeAnalytique = $codeAnalytique; |
921
|
|
|
return $this; |
922
|
|
|
} |
923
|
|
|
|
924
|
|
|
/** |
925
|
|
|
* Set the code categorie client. |
926
|
|
|
* |
927
|
|
|
* @param string|null $codeCategorieClient The code categorie client. |
928
|
|
|
* @return Clients Returns this Clients. |
929
|
|
|
*/ |
930
|
|
|
public function setCodeCategorieClient(?string $codeCategorieClient): Clients { |
931
|
|
|
$this->codeCategorieClient = $codeCategorieClient; |
932
|
|
|
return $this; |
933
|
|
|
} |
934
|
|
|
|
935
|
|
|
/** |
936
|
|
|
* Set the code client fact. |
937
|
|
|
* |
938
|
|
|
* @param string|null $codeClientFact The code client fact. |
939
|
|
|
* @return Clients Returns this Clients. |
940
|
|
|
*/ |
941
|
|
|
public function setCodeClientFact(?string $codeClientFact): Clients { |
942
|
|
|
$this->codeClientFact = $codeClientFact; |
943
|
|
|
return $this; |
944
|
|
|
} |
945
|
|
|
|
946
|
|
|
/** |
947
|
|
|
* Set the code depot. |
948
|
|
|
* |
949
|
|
|
* @param string|null $codeDepot The code depot. |
950
|
|
|
* @return Clients Returns this Clients. |
951
|
|
|
*/ |
952
|
|
|
public function setCodeDepot(?string $codeDepot): Clients { |
953
|
|
|
$this->codeDepot = $codeDepot; |
954
|
|
|
return $this; |
955
|
|
|
} |
956
|
|
|
|
957
|
|
|
/** |
958
|
|
|
* Set the code devise. |
959
|
|
|
* |
960
|
|
|
* @param string|null $codeDevise The code devise. |
961
|
|
|
* @return Clients Returns this Clients. |
962
|
|
|
*/ |
963
|
|
|
public function setCodeDevise(?string $codeDevise): Clients { |
964
|
|
|
$this->codeDevise = $codeDevise; |
965
|
|
|
return $this; |
966
|
|
|
} |
967
|
|
|
|
968
|
|
|
/** |
969
|
|
|
* Set the code famille. |
970
|
|
|
* |
971
|
|
|
* @param string|null $codeFamille The code famille. |
972
|
|
|
* @return Clients Returns this Clients. |
973
|
|
|
*/ |
974
|
|
|
public function setCodeFamille(?string $codeFamille): Clients { |
975
|
|
|
$this->codeFamille = $codeFamille; |
976
|
|
|
return $this; |
977
|
|
|
} |
978
|
|
|
|
979
|
|
|
/** |
980
|
|
|
* Set the code geo. |
981
|
|
|
* |
982
|
|
|
* @param string|null $codeGeo The code geo. |
983
|
|
|
* @return Clients Returns this Clients. |
984
|
|
|
*/ |
985
|
|
|
public function setCodeGeo(?string $codeGeo): Clients { |
986
|
|
|
$this->codeGeo = $codeGeo; |
987
|
|
|
return $this; |
988
|
|
|
} |
989
|
|
|
|
990
|
|
|
/** |
991
|
|
|
* Set the code langue designation article. |
992
|
|
|
* |
993
|
|
|
* @param string|null $codeLangueDesignationArticle The code langue designation article. |
994
|
|
|
* @return Clients Returns this Clients. |
995
|
|
|
*/ |
996
|
|
|
public function setCodeLangueDesignationArticle(?string $codeLangueDesignationArticle): Clients { |
997
|
|
|
$this->codeLangueDesignationArticle = $codeLangueDesignationArticle; |
998
|
|
|
return $this; |
999
|
|
|
} |
1000
|
|
|
|
1001
|
|
|
/** |
1002
|
|
|
* Set the code mode reglement. |
1003
|
|
|
* |
1004
|
|
|
* @param string|null $codeModeReglement The code mode reglement. |
1005
|
|
|
* @return Clients Returns this Clients. |
1006
|
|
|
*/ |
1007
|
|
|
public function setCodeModeReglement(?string $codeModeReglement): Clients { |
1008
|
|
|
$this->codeModeReglement = $codeModeReglement; |
1009
|
|
|
return $this; |
1010
|
|
|
} |
1011
|
|
|
|
1012
|
|
|
/** |
1013
|
|
|
* Set the code origine. |
1014
|
|
|
* |
1015
|
|
|
* @param string|null $codeOrigine The code origine. |
1016
|
|
|
* @return Clients Returns this Clients. |
1017
|
|
|
*/ |
1018
|
|
|
public function setCodeOrigine(?string $codeOrigine): Clients { |
1019
|
|
|
$this->codeOrigine = $codeOrigine; |
1020
|
|
|
return $this; |
1021
|
|
|
} |
1022
|
|
|
|
1023
|
|
|
/** |
1024
|
|
|
* Set the code regroupement. |
1025
|
|
|
* |
1026
|
|
|
* @param string|null $codeRegroupement The code regroupement. |
1027
|
|
|
* @return Clients Returns this Clients. |
1028
|
|
|
*/ |
1029
|
|
|
public function setCodeRegroupement(?string $codeRegroupement): Clients { |
1030
|
|
|
$this->codeRegroupement = $codeRegroupement; |
1031
|
|
|
return $this; |
1032
|
|
|
} |
1033
|
|
|
|
1034
|
|
|
/** |
1035
|
|
|
* Set the code representant. |
1036
|
|
|
* |
1037
|
|
|
* @param string|null $codeRepresentant The code representant. |
1038
|
|
|
* @return Clients Returns this Clients. |
1039
|
|
|
*/ |
1040
|
|
|
public function setCodeRepresentant(?string $codeRepresentant): Clients { |
1041
|
|
|
$this->codeRepresentant = $codeRepresentant; |
1042
|
|
|
return $this; |
1043
|
|
|
} |
1044
|
|
|
|
1045
|
|
|
/** |
1046
|
|
|
* Set the code revision. |
1047
|
|
|
* |
1048
|
|
|
* @param string|null $codeRevision The code revision. |
1049
|
|
|
* @return Clients Returns this Clients. |
1050
|
|
|
*/ |
1051
|
|
|
public function setCodeRevision(?string $codeRevision): Clients { |
1052
|
|
|
$this->codeRevision = $codeRevision; |
1053
|
|
|
return $this; |
1054
|
|
|
} |
1055
|
|
|
|
1056
|
|
|
/** |
1057
|
|
|
* Set the code sous famille. |
1058
|
|
|
* |
1059
|
|
|
* @param string|null $codeSousFamille The code sous famille. |
1060
|
|
|
* @return Clients Returns this Clients. |
1061
|
|
|
*/ |
1062
|
|
|
public function setCodeSousFamille(?string $codeSousFamille): Clients { |
1063
|
|
|
$this->codeSousFamille = $codeSousFamille; |
1064
|
|
|
return $this; |
1065
|
|
|
} |
1066
|
|
|
|
1067
|
|
|
/** |
1068
|
|
|
* Set the code sous tournee. |
1069
|
|
|
* |
1070
|
|
|
* @param string|null $codeSousTournee The code sous tournee. |
1071
|
|
|
* @return Clients Returns this Clients. |
1072
|
|
|
*/ |
1073
|
|
|
public function setCodeSousTournee(?string $codeSousTournee): Clients { |
1074
|
|
|
$this->codeSousTournee = $codeSousTournee; |
1075
|
|
|
return $this; |
1076
|
|
|
} |
1077
|
|
|
|
1078
|
|
|
/** |
1079
|
|
|
* Set the code tva. |
1080
|
|
|
* |
1081
|
|
|
* @param string|null $codeTva The code tva. |
1082
|
|
|
* @return Clients Returns this Clients. |
1083
|
|
|
*/ |
1084
|
|
|
public function setCodeTva(?string $codeTva): Clients { |
1085
|
|
|
$this->codeTva = $codeTva; |
1086
|
|
|
return $this; |
1087
|
|
|
} |
1088
|
|
|
|
1089
|
|
|
/** |
1090
|
|
|
* Set the code tournee. |
1091
|
|
|
* |
1092
|
|
|
* @param string|null $codeTournee The code tournee. |
1093
|
|
|
* @return Clients Returns this Clients. |
1094
|
|
|
*/ |
1095
|
|
|
public function setCodeTournee(?string $codeTournee): Clients { |
1096
|
|
|
$this->codeTournee = $codeTournee; |
1097
|
|
|
return $this; |
1098
|
|
|
} |
1099
|
|
|
|
1100
|
|
|
/** |
1101
|
|
|
* Set the code ventil compta. |
1102
|
|
|
* |
1103
|
|
|
* @param string|null $codeVentilCompta The code ventil compta. |
1104
|
|
|
* @return Clients Returns this Clients. |
1105
|
|
|
*/ |
1106
|
|
|
public function setCodeVentilCompta(?string $codeVentilCompta): Clients { |
1107
|
|
|
$this->codeVentilCompta = $codeVentilCompta; |
1108
|
|
|
return $this; |
1109
|
|
|
} |
1110
|
|
|
|
1111
|
|
|
/** |
1112
|
|
|
* Set the collectif comptable. |
1113
|
|
|
* |
1114
|
|
|
* @param int|null $collectifComptable The collectif comptable. |
1115
|
|
|
* @return Clients Returns this Clients. |
1116
|
|
|
*/ |
1117
|
|
|
public function setCollectifComptable(?int $collectifComptable): Clients { |
1118
|
|
|
$this->collectifComptable = $collectifComptable; |
1119
|
|
|
return $this; |
1120
|
|
|
} |
1121
|
|
|
|
1122
|
|
|
/** |
1123
|
|
|
* Set the commentaire. |
1124
|
|
|
* |
1125
|
|
|
* @param string|null $commentaire The commentaire. |
1126
|
|
|
* @return Clients Returns this Clients. |
1127
|
|
|
*/ |
1128
|
|
|
public function setCommentaire(?string $commentaire): Clients { |
1129
|
|
|
$this->commentaire = $commentaire; |
1130
|
|
|
return $this; |
1131
|
|
|
} |
1132
|
|
|
|
1133
|
|
|
/** |
1134
|
|
|
* Set the date creat. |
1135
|
|
|
* |
1136
|
|
|
* @param DateTime|null $dateCreat The date creat. |
1137
|
|
|
* @return Clients Returns this Clients. |
1138
|
|
|
*/ |
1139
|
|
|
public function setDateCreat(?DateTime $dateCreat): Clients { |
1140
|
|
|
$this->dateCreat = $dateCreat; |
1141
|
|
|
return $this; |
1142
|
|
|
} |
1143
|
|
|
|
1144
|
|
|
/** |
1145
|
|
|
* Set the date entree. |
1146
|
|
|
* |
1147
|
|
|
* @param DateTime|null $dateEntree The date entree. |
1148
|
|
|
* @return Clients Returns this Clients. |
1149
|
|
|
*/ |
1150
|
|
|
public function setDateEntree(?DateTime $dateEntree): Clients { |
1151
|
|
|
$this->dateEntree = $dateEntree; |
1152
|
|
|
return $this; |
1153
|
|
|
} |
1154
|
|
|
|
1155
|
|
|
/** |
1156
|
|
|
* Set the date modif. |
1157
|
|
|
* |
1158
|
|
|
* @param DateTime|null $dateModif The date modif. |
1159
|
|
|
* @return Clients Returns this Clients. |
1160
|
|
|
*/ |
1161
|
|
|
public function setDateModif(?DateTime $dateModif): Clients { |
1162
|
|
|
$this->dateModif = $dateModif; |
1163
|
|
|
return $this; |
1164
|
|
|
} |
1165
|
|
|
|
1166
|
|
|
/** |
1167
|
|
|
* Set the date sortie. |
1168
|
|
|
* |
1169
|
|
|
* @param DateTime|null $dateSortie The date sortie. |
1170
|
|
|
* @return Clients Returns this Clients. |
1171
|
|
|
*/ |
1172
|
|
|
public function setDateSortie(?DateTime $dateSortie): Clients { |
1173
|
|
|
$this->dateSortie = $dateSortie; |
1174
|
|
|
return $this; |
1175
|
|
|
} |
1176
|
|
|
|
1177
|
|
|
/** |
1178
|
|
|
* Set the derniere annee facturee. |
1179
|
|
|
* |
1180
|
|
|
* @param int|null $derniereAnneeFacturee The derniere annee facturee. |
1181
|
|
|
* @return Clients Returns this Clients. |
1182
|
|
|
*/ |
1183
|
|
|
public function setDerniereAnneeFacturee(?int $derniereAnneeFacturee): Clients { |
1184
|
|
|
$this->derniereAnneeFacturee = $derniereAnneeFacturee; |
1185
|
|
|
return $this; |
1186
|
|
|
} |
1187
|
|
|
|
1188
|
|
|
/** |
1189
|
|
|
* Set the domiciliation bancaire1. |
1190
|
|
|
* |
1191
|
|
|
* @param string|null $domiciliationBancaire1 The domiciliation bancaire1. |
1192
|
|
|
* @return Clients Returns this Clients. |
1193
|
|
|
*/ |
1194
|
|
|
public function setDomiciliationBancaire1(?string $domiciliationBancaire1): Clients { |
1195
|
|
|
$this->domiciliationBancaire1 = $domiciliationBancaire1; |
1196
|
|
|
return $this; |
1197
|
|
|
} |
1198
|
|
|
|
1199
|
|
|
/** |
1200
|
|
|
* Set the domiciliation bancaire2. |
1201
|
|
|
* |
1202
|
|
|
* @param string|null $domiciliationBancaire2 The domiciliation bancaire2. |
1203
|
|
|
* @return Clients Returns this Clients. |
1204
|
|
|
*/ |
1205
|
|
|
public function setDomiciliationBancaire2(?string $domiciliationBancaire2): Clients { |
1206
|
|
|
$this->domiciliationBancaire2 = $domiciliationBancaire2; |
1207
|
|
|
return $this; |
1208
|
|
|
} |
1209
|
|
|
|
1210
|
|
|
/** |
1211
|
|
|
* Set the echeance depart. |
1212
|
|
|
* |
1213
|
|
|
* @param int|null $echeanceDepart The echeance depart. |
1214
|
|
|
* @return Clients Returns this Clients. |
1215
|
|
|
*/ |
1216
|
|
|
public function setEcheanceDepart(?int $echeanceDepart): Clients { |
1217
|
|
|
$this->echeanceDepart = $echeanceDepart; |
1218
|
|
|
return $this; |
1219
|
|
|
} |
1220
|
|
|
|
1221
|
|
|
/** |
1222
|
|
|
* Set the echeance le. |
1223
|
|
|
* |
1224
|
|
|
* @param int|null $echeanceLe The echeance le. |
1225
|
|
|
* @return Clients Returns this Clients. |
1226
|
|
|
*/ |
1227
|
|
|
public function setEcheanceLe(?int $echeanceLe): Clients { |
1228
|
|
|
$this->echeanceLe = $echeanceLe; |
1229
|
|
|
return $this; |
1230
|
|
|
} |
1231
|
|
|
|
1232
|
|
|
/** |
1233
|
|
|
* Set the echeance nb jours. |
1234
|
|
|
* |
1235
|
|
|
* @param int|null $echeanceNbJours The echeance nb jours. |
1236
|
|
|
* @return Clients Returns this Clients. |
1237
|
|
|
*/ |
1238
|
|
|
public function setEcheanceNbJours(?int $echeanceNbJours): Clients { |
1239
|
|
|
$this->echeanceNbJours = $echeanceNbJours; |
1240
|
|
|
return $this; |
1241
|
|
|
} |
1242
|
|
|
|
1243
|
|
|
/** |
1244
|
|
|
* Set the facture euros. |
1245
|
|
|
* |
1246
|
|
|
* @param bool|null $factureEuros The facture euros. |
1247
|
|
|
* @return Clients Returns this Clients. |
1248
|
|
|
*/ |
1249
|
|
|
public function setFactureEuros(?bool $factureEuros): Clients { |
1250
|
|
|
$this->factureEuros = $factureEuros; |
1251
|
|
|
return $this; |
1252
|
|
|
} |
1253
|
|
|
|
1254
|
|
|
/** |
1255
|
|
|
* Set the id. |
1256
|
|
|
* |
1257
|
|
|
* @param string|null $id The id. |
1258
|
|
|
* @return Clients Returns this Clients. |
1259
|
|
|
*/ |
1260
|
|
|
public function setId(?string $id): Clients { |
1261
|
|
|
$this->id = $id; |
1262
|
|
|
return $this; |
1263
|
|
|
} |
1264
|
|
|
|
1265
|
|
|
/** |
1266
|
|
|
* Set the nb bl. |
1267
|
|
|
* |
1268
|
|
|
* @param int|null $nbBl The nb bl. |
1269
|
|
|
* @return Clients Returns this Clients. |
1270
|
|
|
*/ |
1271
|
|
|
public function setNbBl(?int $nbBl): Clients { |
1272
|
|
|
$this->nbBl = $nbBl; |
1273
|
|
|
return $this; |
1274
|
|
|
} |
1275
|
|
|
|
1276
|
|
|
/** |
1277
|
|
|
* Set the nb facture. |
1278
|
|
|
* |
1279
|
|
|
* @param int|null $nbFacture The nb facture. |
1280
|
|
|
* @return Clients Returns this Clients. |
1281
|
|
|
*/ |
1282
|
|
|
public function setNbFacture(?int $nbFacture): Clients { |
1283
|
|
|
$this->nbFacture = $nbFacture; |
1284
|
|
|
return $this; |
1285
|
|
|
} |
1286
|
|
|
|
1287
|
|
|
/** |
1288
|
|
|
* Set the nombre echeances. |
1289
|
|
|
* |
1290
|
|
|
* @param int|null $nombreEcheances The nombre echeances. |
1291
|
|
|
* @return Clients Returns this Clients. |
1292
|
|
|
*/ |
1293
|
|
|
public function setNombreEcheances(?int $nombreEcheances): Clients { |
1294
|
|
|
$this->nombreEcheances = $nombreEcheances; |
1295
|
|
|
return $this; |
1296
|
|
|
} |
1297
|
|
|
|
1298
|
|
|
/** |
1299
|
|
|
* Set the num cpt collectif. |
1300
|
|
|
* |
1301
|
|
|
* @param string|null $numCptCollectif The num cpt collectif. |
1302
|
|
|
* @return Clients Returns this Clients. |
1303
|
|
|
*/ |
1304
|
|
|
public function setNumCptCollectif(?string $numCptCollectif): Clients { |
1305
|
|
|
$this->numCptCollectif = $numCptCollectif; |
1306
|
|
|
return $this; |
1307
|
|
|
} |
1308
|
|
|
|
1309
|
|
|
/** |
1310
|
|
|
* Set the num cpt comptable. |
1311
|
|
|
* |
1312
|
|
|
* @param string|null $numCptComptable The num cpt comptable. |
1313
|
|
|
* @return Clients Returns this Clients. |
1314
|
|
|
*/ |
1315
|
|
|
public function setNumCptComptable(?string $numCptComptable): Clients { |
1316
|
|
|
$this->numCptComptable = $numCptComptable; |
1317
|
|
|
return $this; |
1318
|
|
|
} |
1319
|
|
|
|
1320
|
|
|
/** |
1321
|
|
|
* Set the premiere annee facturee. |
1322
|
|
|
* |
1323
|
|
|
* @param int|null $premiereAnneeFacturee The premiere annee facturee. |
1324
|
|
|
* @return Clients Returns this Clients. |
1325
|
|
|
*/ |
1326
|
|
|
public function setPremiereAnneeFacturee(?int $premiereAnneeFacturee): Clients { |
1327
|
|
|
$this->premiereAnneeFacturee = $premiereAnneeFacturee; |
1328
|
|
|
return $this; |
1329
|
|
|
} |
1330
|
|
|
|
1331
|
|
|
/** |
1332
|
|
|
* Set the prospect. |
1333
|
|
|
* |
1334
|
|
|
* @param bool|null $prospect The prospect. |
1335
|
|
|
* @return Clients Returns this Clients. |
1336
|
|
|
*/ |
1337
|
|
|
public function setProspect(?bool $prospect): Clients { |
1338
|
|
|
$this->prospect = $prospect; |
1339
|
|
|
return $this; |
1340
|
|
|
} |
1341
|
|
|
|
1342
|
|
|
/** |
1343
|
|
|
* Set the rib. |
1344
|
|
|
* |
1345
|
|
|
* @param string|null $rib The rib. |
1346
|
|
|
* @return Clients Returns this Clients. |
1347
|
|
|
*/ |
1348
|
|
|
public function setRib(?string $rib): Clients { |
1349
|
|
|
$this->rib = $rib; |
1350
|
|
|
return $this; |
1351
|
|
|
} |
1352
|
|
|
|
1353
|
|
|
/** |
1354
|
|
|
* Set the remise ligne1. |
1355
|
|
|
* |
1356
|
|
|
* @param float|null $remiseLigne1 The remise ligne1. |
1357
|
|
|
* @return Clients Returns this Clients. |
1358
|
|
|
*/ |
1359
|
|
|
public function setRemiseLigne1(?float $remiseLigne1): Clients { |
1360
|
|
|
$this->remiseLigne1 = $remiseLigne1; |
1361
|
|
|
return $this; |
1362
|
|
|
} |
1363
|
|
|
|
1364
|
|
|
/** |
1365
|
|
|
* Set the remise ligne2. |
1366
|
|
|
* |
1367
|
|
|
* @param float|null $remiseLigne2 The remise ligne2. |
1368
|
|
|
* @return Clients Returns this Clients. |
1369
|
|
|
*/ |
1370
|
|
|
public function setRemiseLigne2(?float $remiseLigne2): Clients { |
1371
|
|
|
$this->remiseLigne2 = $remiseLigne2; |
1372
|
|
|
return $this; |
1373
|
|
|
} |
1374
|
|
|
|
1375
|
|
|
/** |
1376
|
|
|
* Set the remise ligne3. |
1377
|
|
|
* |
1378
|
|
|
* @param float|null $remiseLigne3 The remise ligne3. |
1379
|
|
|
* @return Clients Returns this Clients. |
1380
|
|
|
*/ |
1381
|
|
|
public function setRemiseLigne3(?float $remiseLigne3): Clients { |
1382
|
|
|
$this->remiseLigne3 = $remiseLigne3; |
1383
|
|
|
return $this; |
1384
|
|
|
} |
1385
|
|
|
|
1386
|
|
|
/** |
1387
|
|
|
* Set the remise pied1. |
1388
|
|
|
* |
1389
|
|
|
* @param float|null $remisePied1 The remise pied1. |
1390
|
|
|
* @return Clients Returns this Clients. |
1391
|
|
|
*/ |
1392
|
|
|
public function setRemisePied1(?float $remisePied1): Clients { |
1393
|
|
|
$this->remisePied1 = $remisePied1; |
1394
|
|
|
return $this; |
1395
|
|
|
} |
1396
|
|
|
|
1397
|
|
|
/** |
1398
|
|
|
* Set the remise pied2. |
1399
|
|
|
* |
1400
|
|
|
* @param float|null $remisePied2 The remise pied2. |
1401
|
|
|
* @return Clients Returns this Clients. |
1402
|
|
|
*/ |
1403
|
|
|
public function setRemisePied2(?float $remisePied2): Clients { |
1404
|
|
|
$this->remisePied2 = $remisePied2; |
1405
|
|
|
return $this; |
1406
|
|
|
} |
1407
|
|
|
|
1408
|
|
|
/** |
1409
|
|
|
* Set the remise pied3. |
1410
|
|
|
* |
1411
|
|
|
* @param float|null $remisePied3 The remise pied3. |
1412
|
|
|
* @return Clients Returns this Clients. |
1413
|
|
|
*/ |
1414
|
|
|
public function setRemisePied3(?float $remisePied3): Clients { |
1415
|
|
|
$this->remisePied3 = $remisePied3; |
1416
|
|
|
return $this; |
1417
|
|
|
} |
1418
|
|
|
|
1419
|
|
|
/** |
1420
|
|
|
* Set the soumis escompte. |
1421
|
|
|
* |
1422
|
|
|
* @param bool|null $soumisEscompte The soumis escompte. |
1423
|
|
|
* @return Clients Returns this Clients. |
1424
|
|
|
*/ |
1425
|
|
|
public function setSoumisEscompte(?bool $soumisEscompte): Clients { |
1426
|
|
|
$this->soumisEscompte = $soumisEscompte; |
1427
|
|
|
return $this; |
1428
|
|
|
} |
1429
|
|
|
|
1430
|
|
|
/** |
1431
|
|
|
* Set the taux escompte. |
1432
|
|
|
* |
1433
|
|
|
* @param float|null $tauxEscompte The taux escompte. |
1434
|
|
|
* @return Clients Returns this Clients. |
1435
|
|
|
*/ |
1436
|
|
|
public function setTauxEscompte(?float $tauxEscompte): Clients { |
1437
|
|
|
$this->tauxEscompte = $tauxEscompte; |
1438
|
|
|
return $this; |
1439
|
|
|
} |
1440
|
|
|
|
1441
|
|
|
/** |
1442
|
|
|
* Set the transporteur. |
1443
|
|
|
* |
1444
|
|
|
* @param string|null $transporteur The transporteur. |
1445
|
|
|
* @return Clients Returns this Clients. |
1446
|
|
|
*/ |
1447
|
|
|
public function setTransporteur(?string $transporteur): Clients { |
1448
|
|
|
$this->transporteur = $transporteur; |
1449
|
|
|
return $this; |
1450
|
|
|
} |
1451
|
|
|
|
1452
|
|
|
/** |
1453
|
|
|
* Set the type facture. |
1454
|
|
|
* |
1455
|
|
|
* @param int|null $typeFacture The type facture. |
1456
|
|
|
* @return Clients Returns this Clients. |
1457
|
|
|
*/ |
1458
|
|
|
public function setTypeFacture(?int $typeFacture): Clients { |
1459
|
|
|
$this->typeFacture = $typeFacture; |
1460
|
|
|
return $this; |
1461
|
|
|
} |
1462
|
|
|
} |
1463
|
|
|
|