Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #278 | Plan du site | ## Description de la PR [#278] Plan du site ## Modification du .env ## Check list - [ ] Pas de régression - [x] TU/TI/TF rédigée - [x] TU/TI/TF OK - [ ] CHANGELOG modifié Co-authored-by: Matteo <matteo@yuno.malio.fr> Reviewed-on: #33 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
122 lines
3.1 KiB
PHP
122 lines
3.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
use ApiPlatform\Metadata\ApiResource;
|
|
use ApiPlatform\Metadata\Get;
|
|
use ApiPlatform\Metadata\GetCollection;
|
|
use ApiPlatform\Metadata\Patch;
|
|
use ApiPlatform\Metadata\Post;
|
|
use DateTimeImmutable;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Serializer\Attribute\Context;
|
|
use Symfony\Component\Serializer\Attribute\Groups;
|
|
use Symfony\Component\Serializer\Normalizer\DateTimeNormalizer;
|
|
|
|
#[ORM\Entity]
|
|
#[ORM\Table(name: 'bovine')]
|
|
#[ORM\UniqueConstraint(name: 'uniq_bovine_national_number', columns: ['national_number'])]
|
|
#[ApiResource(
|
|
operations: [
|
|
new Get(
|
|
requirements: ['id' => '\d+'],
|
|
normalizationContext: ['groups' => ['bovine:read']],
|
|
),
|
|
new GetCollection(
|
|
normalizationContext: ['groups' => ['bovine:read']],
|
|
),
|
|
new Post(
|
|
normalizationContext: ['groups' => ['bovine:read']],
|
|
denormalizationContext: ['groups' => ['bovine:write']],
|
|
security: "is_granted('ROLE_ADMIN')",
|
|
),
|
|
new Patch(
|
|
requirements: ['id' => '\d+'],
|
|
normalizationContext: ['groups' => ['bovine:read']],
|
|
denormalizationContext: ['groups' => ['bovine:write']],
|
|
security: "is_granted('ROLE_ADMIN')",
|
|
),
|
|
],
|
|
security: "is_granted('ROLE_USER')",
|
|
)]
|
|
class Bovine
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
#[Groups(['bovine:read'])]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\Column(length: 50)]
|
|
#[Groups(['bovine:read', 'bovine:write'])]
|
|
private string $nationalNumber = '';
|
|
|
|
#[ORM\Column(nullable: true)]
|
|
#[Groups(['bovine:read', 'bovine:write'])]
|
|
private ?int $receivedWeight = null;
|
|
|
|
#[ORM\Column(type: 'date_immutable', nullable: true)]
|
|
#[Groups(['bovine:read', 'bovine:write'])]
|
|
#[Context([DateTimeNormalizer::FORMAT_KEY => 'Y-m-d'])]
|
|
private ?DateTimeImmutable $arrivalDate = null;
|
|
|
|
#[ORM\ManyToOne(inversedBy: 'bovines')]
|
|
#[Groups(['bovine:read', 'bovine:write'])]
|
|
private ?BuildingCase $buildingCase = null;
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getNationalNumber(): string
|
|
{
|
|
return $this->nationalNumber;
|
|
}
|
|
|
|
public function setNationalNumber(string $nationalNumber): static
|
|
{
|
|
$this->nationalNumber = $nationalNumber;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getReceivedWeight(): ?int
|
|
{
|
|
return $this->receivedWeight;
|
|
}
|
|
|
|
public function setReceivedWeight(?int $receivedWeight): static
|
|
{
|
|
$this->receivedWeight = $receivedWeight;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getArrivalDate(): ?DateTimeImmutable
|
|
{
|
|
return $this->arrivalDate;
|
|
}
|
|
|
|
public function setArrivalDate(?DateTimeImmutable $arrivalDate): static
|
|
{
|
|
$this->arrivalDate = $arrivalDate;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getBuildingCase(): ?BuildingCase
|
|
{
|
|
return $this->buildingCase;
|
|
}
|
|
|
|
public function setBuildingCase(?BuildingCase $buildingCase): static
|
|
{
|
|
$this->buildingCase = $buildingCase;
|
|
|
|
return $this;
|
|
}
|
|
}
|