src/Entity/Invoice.php line 61
<?php
namespace App\Entity;
use App\Repository\InvoiceRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use ApiPlatform\Metadata\ApiResource;
use ApiPlatform\Metadata\Get;
use ApiPlatform\Metadata\GetCollection;
use ApiPlatform\Metadata\Delete;
use ApiPlatform\Metadata\Post;
use ApiPlatform\Metadata\Patch;
use ApiPlatform\Metadata\Put;
use Symfony\Component\Serializer\Annotation\Groups;
use App\Controller\Api\InvoiceController;
use App\Controller\Api\UserController;
#[ORM\Entity(repositoryClass: InvoiceRepository::class)]
#[ApiResource(
normalizationContext: ['groups' => ['invoice:read']],
denormalizationContext: ['groups' => ['invoice:write']],
operations: [
new Get(security: 'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
new GetCollection(security: 'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
new Get(
name: 'user_invoices',
routeName: 'api_user_invoices',
controller: UserController::class
),
new Get(
name: 'user_invoice',
routeName: 'api_user_invoice',
controller: UserController::class
),
new Put(),
new Patch(security: 'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
new Delete(security: 'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
new Post(),
new Delete(
name: 'multi_delete',
routeName: 'api_invoices_delete',
controller: InvoiceController::class,
security: 'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'
),
new Delete(
name: 'user_delete',
routeName: 'api_user_invoice_delete',
controller: InvoiceController::class
),
new Delete(
name: 'user_multi_delete',
routeName: 'api_user_invoices_delete',
controller: InvoiceController::class
)
],
paginationEnabled: false
)]
class Invoice
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
#[Groups(['invoice:read', 'company:read', 'employee:read', 'invoiceDetail:read'])]
private ?int $id = null;
#[ORM\Column]
#[Groups(['invoice:read', 'invoice:write', 'company:read', 'employee:read', 'invoiceDetail:read'])]
private ?string $number = null;
#[ORM\Column(type: Types::DATE_MUTABLE)]
#[Groups(['invoice:read', 'invoice:write', 'company:read', 'employee:read', 'invoiceDetail:read'])]
private ?\DateTimeInterface $date = null;
#[ORM\OneToMany(mappedBy: 'invoice', targetEntity: InvoiceDetail::class)]
#[Groups(['invoice:read', 'company:read'])]
private Collection $invoiceDetails;
#[ORM\ManyToOne(inversedBy: 'invoices')]
#[ORM\JoinColumn(nullable: false)]
#[Groups(['invoice:read', 'invoice:write', 'company:read', 'invoiceDetail:read'])]
private ?Employee $employee = null;
#[ORM\ManyToOne(inversedBy: 'invoices')]
#[ORM\JoinColumn(nullable: false)]
#[Groups(['invoice:read', 'invoice:write', 'company:read', 'employee:read', 'invoiceDetail:read'])]
private ?Company $company = null;
#[ORM\Column(length: 10, nullable: true)]
#[Groups(['invoice:read', 'invoice:write', 'company:read', 'employee:read', 'invoiceDetail:read'])]
private ?string $currency = null;
#[ORM\Column(nullable: true)]
#[Groups(['invoice:read', 'invoice:write', 'company:read', 'employee:read', 'invoiceDetail:read'])]
private ?float $total = null;
#[ORM\Column]
#[Groups(['invoice:read', 'invoice:write', 'company:read', 'employee:read', 'invoiceDetail:read'])]
private ?int $softDelete = 0;
public function __construct()
{
$this->invoiceDetails = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getNumber(): ?string
{
return $this->number;
}
public function setNumber(string $number): self
{
$this->number = $number;
return $this;
}
public function getDate(): ?\DateTimeInterface
{
return $this->date;
}
public function setDate(\DateTimeInterface $date): self
{
$this->date = $date;
return $this;
}
/**
* @return Collection<int, InvoiceDetail>
*/
public function getInvoiceDetails(): Collection
{
return $this->invoiceDetails;
}
public function addInvoiceDetail(InvoiceDetail $invoiceDetail): self
{
if (!$this->invoiceDetails->contains($invoiceDetail)) {
$this->invoiceDetails->add($invoiceDetail);
$invoiceDetail->setInvoice($this);
}
return $this;
}
public function removeInvoiceDetail(InvoiceDetail $invoiceDetail): self
{
if ($this->invoiceDetails->removeElement($invoiceDetail)) {
// set the owning side to null (unless already changed)
if ($invoiceDetail->getInvoice() === $this) {
$invoiceDetail->setInvoice(null);
}
}
return $this;
}
public function getEmployee(): ?Employee
{
return $this->employee;
}
public function setEmployee(?Employee $employee): self
{
$this->employee = $employee;
return $this;
}
public function getCompany(): ?Company
{
return $this->company;
}
public function setCompany(?Company $company): self
{
$this->company = $company;
return $this;
}
public function getCurrency(): ?string
{
return $this->currency;
}
public function setCurrency(?string $currency): self
{
$this->currency = $currency;
return $this;
}
public function __toString(){
return $this->company. ' - ' .$this->employee.' : '.$this->number; //or anything else
}
public function getTotal(): ?float
{
return $this->total;
}
public function setTotal(?float $total): self
{
$this->total = $total;
return $this;
}
public function getSoftDelete(): ?int
{
return $this->softDelete;
}
public function setSoftDelete(?int $softDelete): self
{
$this->softDelete = $softDelete;
return $this;
}
}