204 lines
5.8 KiB
PHP
204 lines
5.8 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace App\Entity;
|
||
|
||
use ApiPlatform\Metadata\ApiResource;
|
||
use ApiPlatform\Metadata\Delete;
|
||
use ApiPlatform\Metadata\Get;
|
||
use ApiPlatform\Metadata\GetCollection;
|
||
use ApiPlatform\Metadata\Patch;
|
||
use ApiPlatform\Metadata\Post;
|
||
use ApiPlatform\Metadata\Put;
|
||
use App\Entity\Trait\CuidEntityTrait;
|
||
use App\Repository\MachinePieceLinkRepository;
|
||
use DateTimeImmutable;
|
||
use Doctrine\Common\Collections\ArrayCollection;
|
||
use Doctrine\Common\Collections\Collection;
|
||
use Doctrine\DBAL\Types\Types;
|
||
use Doctrine\ORM\Mapping as ORM;
|
||
use Symfony\Component\Validator\Constraints as Assert;
|
||
|
||
#[ORM\Entity(repositoryClass: MachinePieceLinkRepository::class)]
|
||
#[ORM\Table(name: 'machine_piece_links')]
|
||
#[ORM\HasLifecycleCallbacks]
|
||
#[ApiResource(
|
||
description: 'Liaisons machine–pièce. Représente le rattachement d\'une pièce à une machine, avec quantité, position dans la hiérarchie et surcharges éventuelles (nom, référence, prix).',
|
||
operations: [
|
||
new Get(security: "is_granted('ROLE_VIEWER')"),
|
||
new GetCollection(security: "is_granted('ROLE_VIEWER')"),
|
||
new Post(security: "is_granted('ROLE_GESTIONNAIRE')"),
|
||
new Put(security: "is_granted('ROLE_GESTIONNAIRE')"),
|
||
new Patch(security: "is_granted('ROLE_GESTIONNAIRE')"),
|
||
new Delete(security: "is_granted('ROLE_GESTIONNAIRE')"),
|
||
]
|
||
)]
|
||
class MachinePieceLink
|
||
{
|
||
use CuidEntityTrait;
|
||
|
||
#[ORM\Id]
|
||
#[ORM\Column(type: Types::STRING, length: 36)]
|
||
private ?string $id = null;
|
||
|
||
#[ORM\ManyToOne(targetEntity: Machine::class, inversedBy: 'pieceLinks')]
|
||
#[ORM\JoinColumn(name: 'machineId', referencedColumnName: 'id', nullable: false, onDelete: 'CASCADE')]
|
||
private Machine $machine;
|
||
|
||
#[ORM\ManyToOne(targetEntity: Piece::class, inversedBy: 'machineLinks')]
|
||
#[ORM\JoinColumn(name: 'pieceId', referencedColumnName: 'id', nullable: true, onDelete: 'CASCADE')]
|
||
private ?Piece $piece = null;
|
||
|
||
#[ORM\ManyToOne(targetEntity: ModelType::class)]
|
||
#[ORM\JoinColumn(name: 'modelTypeId', referencedColumnName: 'id', nullable: true, onDelete: 'SET NULL')]
|
||
private ?ModelType $modelType = null;
|
||
|
||
#[ORM\ManyToOne(targetEntity: MachineComponentLink::class, inversedBy: 'pieceLinks')]
|
||
#[ORM\JoinColumn(name: 'parentLinkId', referencedColumnName: 'id', nullable: true, onDelete: 'CASCADE')]
|
||
private ?MachineComponentLink $parentLink = null;
|
||
|
||
/**
|
||
* @var Collection<int, MachineProductLink>
|
||
*/
|
||
#[ORM\OneToMany(mappedBy: 'parentPieceLink', targetEntity: MachineProductLink::class)]
|
||
private Collection $productLinks;
|
||
|
||
/**
|
||
* @var Collection<int, CustomFieldValue>
|
||
*/
|
||
#[ORM\OneToMany(mappedBy: 'machinePieceLink', targetEntity: CustomFieldValue::class, cascade: ['persist', 'remove'], orphanRemoval: true)]
|
||
private Collection $contextFieldValues;
|
||
|
||
#[ORM\Column(type: Types::STRING, length: 255, nullable: true, name: 'nameOverride')]
|
||
private ?string $nameOverride = null;
|
||
|
||
#[ORM\Column(type: Types::STRING, length: 255, nullable: true, name: 'referenceOverride')]
|
||
private ?string $referenceOverride = null;
|
||
|
||
#[ORM\Column(type: Types::DECIMAL, precision: 10, scale: 2, nullable: true, name: 'prixOverride')]
|
||
private ?string $prixOverride = null;
|
||
|
||
#[ORM\Column(type: Types::INTEGER, options: ['default' => 1])]
|
||
#[Assert\GreaterThanOrEqual(1)]
|
||
private int $quantity = 1;
|
||
|
||
#[ORM\Column(type: Types::DATETIME_IMMUTABLE, name: 'createdAt')]
|
||
private DateTimeImmutable $createdAt;
|
||
|
||
#[ORM\Column(type: Types::DATETIME_IMMUTABLE, name: 'updatedAt')]
|
||
private DateTimeImmutable $updatedAt;
|
||
|
||
public function __construct()
|
||
{
|
||
$this->createdAt = new DateTimeImmutable();
|
||
$this->updatedAt = new DateTimeImmutable();
|
||
$this->productLinks = new ArrayCollection();
|
||
$this->contextFieldValues = new ArrayCollection();
|
||
}
|
||
|
||
public function getMachine(): Machine
|
||
{
|
||
return $this->machine;
|
||
}
|
||
|
||
public function setMachine(Machine $machine): static
|
||
{
|
||
$this->machine = $machine;
|
||
|
||
return $this;
|
||
}
|
||
|
||
public function getPiece(): ?Piece
|
||
{
|
||
return $this->piece;
|
||
}
|
||
|
||
public function setPiece(?Piece $piece): static
|
||
{
|
||
$this->piece = $piece;
|
||
|
||
return $this;
|
||
}
|
||
|
||
public function getModelType(): ?ModelType
|
||
{
|
||
return $this->modelType;
|
||
}
|
||
|
||
public function setModelType(?ModelType $modelType): static
|
||
{
|
||
$this->modelType = $modelType;
|
||
|
||
return $this;
|
||
}
|
||
|
||
public function getParentLink(): ?MachineComponentLink
|
||
{
|
||
return $this->parentLink;
|
||
}
|
||
|
||
public function setParentLink(?MachineComponentLink $parentLink): static
|
||
{
|
||
$this->parentLink = $parentLink;
|
||
|
||
return $this;
|
||
}
|
||
|
||
public function getNameOverride(): ?string
|
||
{
|
||
return $this->nameOverride;
|
||
}
|
||
|
||
public function setNameOverride(?string $nameOverride): static
|
||
{
|
||
$this->nameOverride = $nameOverride;
|
||
|
||
return $this;
|
||
}
|
||
|
||
public function getReferenceOverride(): ?string
|
||
{
|
||
return $this->referenceOverride;
|
||
}
|
||
|
||
public function setReferenceOverride(?string $referenceOverride): static
|
||
{
|
||
$this->referenceOverride = $referenceOverride;
|
||
|
||
return $this;
|
||
}
|
||
|
||
public function getPrixOverride(): ?string
|
||
{
|
||
return $this->prixOverride;
|
||
}
|
||
|
||
public function setPrixOverride(?string $prixOverride): static
|
||
{
|
||
$this->prixOverride = $prixOverride;
|
||
|
||
return $this;
|
||
}
|
||
|
||
public function getQuantity(): int
|
||
{
|
||
return $this->quantity;
|
||
}
|
||
|
||
public function setQuantity(int $quantity): static
|
||
{
|
||
$this->quantity = $quantity;
|
||
|
||
return $this;
|
||
}
|
||
|
||
/**
|
||
* @return Collection<int, CustomFieldValue>
|
||
*/
|
||
public function getContextFieldValues(): Collection
|
||
{
|
||
return $this->contextFieldValues;
|
||
}
|
||
}
|