feat : ajout d'une colonne montant dans les Frais employé

This commit is contained in:
2026-03-18 15:40:31 +01:00
parent f9cd5a0143
commit f047e3ed4b
9 changed files with 104 additions and 12 deletions

View File

@@ -87,6 +87,10 @@ class MileageAllowance
#[Groups(['mileage_allowance:read', 'mileage_allowance:write'])]
private float $kilometers = 0;
#[ORM\Column(type: 'float', options: ['default' => 0])]
#[Groups(['mileage_allowance:read', 'mileage_allowance:write'])]
private float $amount = 0;
#[ORM\Column(type: 'text', nullable: true)]
#[Groups(['mileage_allowance:read', 'mileage_allowance:write'])]
private ?string $comment = null;
@@ -149,6 +153,18 @@ class MileageAllowance
return $this;
}
public function getAmount(): float
{
return $this->amount;
}
public function setAmount(float $amount): self
{
$this->amount = $amount;
return $this;
}
public function getComment(): ?string
{
return $this->comment;