```
✨ feat(Product): Supprime le champ 'installation' et ajuste les tarifs.
```
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user