feat(Product): Supprime le champ 'installation' et ajuste les tarifs.
```
This commit is contained in:
Serreau Jovann
2026-01-27 08:46:12 +01:00
parent acbdd66510
commit d0de3b479c
7 changed files with 549 additions and 524 deletions

View File

@@ -36,9 +36,6 @@ class Product
#[ORM\Column]
private ?float $priceSup = null;
#[ORM\Column]
private ?float $installation = null;
#[ORM\Column]
private ?float $caution = null;
@@ -168,18 +165,6 @@ class Product
return $this;
}
public function getInstallation(): ?float
{
return $this->installation;
}
public function setInstallation(float $installation): static
{
$this->installation = $installation;
return $this;
}
public function getCaution(): ?float
{
return $this->caution;