1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
<?php
// src/entities/Location.php
use Doctrine\ORM\Mapping as ORM;
use Doctrine\ORM\EntityManager;
#[ORM\Entity]
#[ORM\Table(name: 'locations')]
class Location
{
#[ORM\Id]
#[ORM\Column(type: 'integer')]
#[ORM\GeneratedValue]
private int|null $id = null;
#[ORM\ManyToOne(targetEntity: Prestation::class, cascade: ['persist'])]
#[ORM\JoinColumn(name: 'id_presta', referencedColumnName: 'id')]
private Prestation|null $presta = null;
#[ORM\Column]
protected string $designation;
#[ORM\Column]
protected string $modele_description;
#[ORM\Column]
protected float $valeur;
#[ORM\Column]
protected string $etat_des_lieux_debut;
#[ORM\Column]
protected string $etat_des_lieux_fin = '';
#[ORM\Column]
protected string $duree_location;
#[ORM\Column]
protected float $loyer_hebdo;
#[ORM\Column]
protected int $loyers_payes;
#[ORM\Column]
protected int $caution;
public static EntityManager $entityManager;
public function __construct(Prestation $presta = null)
{
if($presta != null)
{
$this->setPresta($presta);
}
}
// getters
public function getPresta(): Prestation
{
return $this->presta;
}
public function getAll(): array
{
// n'utiliser get_object_vars() qu'avec une entité parce qu'on maîtrise le nombre de propriétés
return get_object_vars($this);
}
public function getAllWithWindowFields(): array
{
return [
"Désignation:" => $this->designation,
"Description du modèle:" => $this->modele_description,
"Valeur:" => $this->valeur,
"État des lieux de début:" => $this->etat_des_lieux_debut,
"État des lieux de fin:" => $this->etat_des_lieux_fin,
"Durée de la location:" => $this->duree_location,
"Loyer Hebdomadaire:" => $this->loyer_hebdo,
"Loyers Payés:" => $this->loyers_payes,
"Caution:" => $this->caution];
}
// setters
public function set(string $entry, string $input)
{
$input = $this->cleanSpecialChars($input); // possibilité que $input devienne une chaîne vide
switch($entry)
{
case "Désignation:":
$this->setDesignation($input);
break;
case "Description du modèle:":
$this->setModeleDescription($input);
break;
case "Valeur:":
$this->setValeur($input);
break;
case "État des lieux de début:":
$this->setEtatDesLieuxDebut($input);
break;
case "État des lieux de fin:":
$this->setEtatDesLieuxFin($input);
break;
case "Durée de la location:":
$this->setDureeLocation($input);
break;
case "Loyer Hebdomadaire:":
$this->setLoyerHebdo($input);
break;
case "Loyers Payés:":
$this->setLoyersPayes($input);
break;
case "Caution:":
$this->setCaution($input);
break;
}
}
private function setPresta(Prestation $input) // private?
{
$this->presta = $input;
}
public function setDesignation(string $value)
{
$this->designation = $value;
return($this);
}
public function setModeleDescription(string $value)
{
$this->modele_description = $value;
return($this);
}
public function setValeur($value)
{
$value = str_replace(',', '.', $value);
$this->valeur = (float) $value;
return($this);
}
public function setEtatDesLieuxDebut(string $value)
{
$this->etat_des_lieux_debut = $value;
return($this);
}
public function setEtatDesLieuxFin(string $value)
{
$this->etat_des_lieux_fin = $value;
return($this);
}
public function setDureeLocation(string $value)
{
$this->duree_location = $value;
return($this);
}
public function setLoyerMensuel($value)
{
$value = str_replace(',', '.', $value);
$this->loyer_mensuel = (float) $value;
return($this);
}
public function setLoyersPayes($value)
{
$value = str_replace(',', '.', $value);
$this->loyers_payes = (float) $value;
return($this);
}
public function setCaution($value)
{
$value = str_replace(',', '.', $value);
$this->caution = (float) $value;
return($this);
}
private function setAll(array $input) // private?
{
$this->designation = $input[0];
$this->modele_description = $input[1];
$this->valeur = (float)$input[2];
$this->etat_des_lieux_debut = $input[3];
$this->etat_des_lieux_fin = ''; // sécurité
$this->duree_location = $input[4];
$this->loyer_hebdo = (float)$input[5];
$this->loyers_payes = (int)$input[6];
$this->caution = (int)$input[7];
}
// à mettre plus tard dans une classe mère
protected function cleanSpecialChars(string $data): string
{
$search = ['"'];
return str_replace($search, '', $data);
}
// à mettre plus tard dans une classe mère
public function hydrate(string $answers)
{
$answers = $this->cleanSpecialChars($answers); // possibilité que $answers devienne une chaine vide
if($answers == '')
{
echo "erreur de Location::hydrate(), la chaine \$answers est vide.\n";
return false;
}
$data_array = explode('|', $answers); // array
$check = false;
if(count($data_array) === 8)
{
$this->getPresta()->setModePaiement(''); // sécurité, doctrine plante si "null"
$this->setAll($data_array);
}
else
{
echo "erreur de Location::hydrate(), le tableau \$data_array n'a pas la taille attendue.\n";
return false;
}
//self::$entityManager->persist('Prestation');
self::$entityManager->persist($this); // $Presta avec en cascade!
self::$entityManager->flush();
}
}
|