feat(produit): Améliore l'affichage des prix et ajoute des options de prix supplémentaires.

This commit is contained in:
Serreau Jovann
2026-01-27 10:01:13 +01:00
parent b85968013f
commit c7b4efcf1a
9 changed files with 92 additions and 13 deletions

View File

@@ -33,7 +33,7 @@ class Product
#[ORM\Column]
private ?float $priceDay = null;
#[ORM\Column]
#[ORM\Column(nullable: true)]
private ?float $priceSup = null;
#[ORM\Column]
@@ -78,7 +78,7 @@ class Product
#[ORM\OneToMany(targetEntity: ProductDoc::class, mappedBy: 'product')]
private Collection $productDocs;
#[ORM\Column]
#[ORM\Column(nullable: true)]
private ?float $dimW = null;
#[ORM\Column(nullable: true)]