src/Entity/Invoice.php line 61

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\InvoiceRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use ApiPlatform\Metadata\ApiResource;
  9. use ApiPlatform\Metadata\Get;
  10. use ApiPlatform\Metadata\GetCollection;
  11. use ApiPlatform\Metadata\Delete;
  12. use ApiPlatform\Metadata\Post;
  13. use ApiPlatform\Metadata\Patch;
  14. use ApiPlatform\Metadata\Put;
  15. use Symfony\Component\Serializer\Annotation\Groups;
  16. use App\Controller\Api\InvoiceController;
  17. use App\Controller\Api\UserController;
  18. #[ORM\Entity(repositoryClassInvoiceRepository::class)]
  19. #[ApiResource(
  20.     normalizationContext: ['groups' => ['invoice:read']],
  21.     denormalizationContext: ['groups' => ['invoice:write']],
  22.     operations: [
  23.         new Get(security'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
  24.         new GetCollection(security'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
  25.         new Get(
  26.             name'user_invoices',
  27.             routeName'api_user_invoices',
  28.             controllerUserController::class
  29.         ),
  30.         new Get(
  31.             name'user_invoice',
  32.             routeName'api_user_invoice',
  33.             controllerUserController::class
  34.         ),
  35.         new Put(),
  36.         new Patch(security'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
  37.         new Delete(security'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
  38.         new Post(),
  39.         new Delete(
  40.             name'multi_delete',
  41.             routeName'api_invoices_delete',
  42.             controllerInvoiceController::class,
  43.             security'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'
  44.         ),
  45.         new Delete(
  46.             name'user_delete',
  47.             routeName'api_user_invoice_delete',
  48.             controllerInvoiceController::class
  49.         ),
  50.         new Delete(
  51.             name'user_multi_delete',
  52.             routeName'api_user_invoices_delete',
  53.             controllerInvoiceController::class
  54.         )
  55.     ],
  56.     paginationEnabledfalse
  57. )]
  58. class Invoice
  59. {
  60.     #[ORM\Id]
  61.     #[ORM\GeneratedValue]
  62.     #[ORM\Column]
  63.     #[Groups(['invoice:read''company:read''employee:read''invoiceDetail:read'])]
  64.     private ?int $id null;
  65.     #[ORM\Column]
  66.     #[Groups(['invoice:read''invoice:write''company:read''employee:read''invoiceDetail:read'])]
  67.     private ?string $number null;
  68.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  69.     #[Groups(['invoice:read''invoice:write''company:read''employee:read''invoiceDetail:read'])]
  70.     private ?\DateTimeInterface $date null;
  71.     #[ORM\OneToMany(mappedBy'invoice'targetEntityInvoiceDetail::class)]
  72.     #[Groups(['invoice:read''company:read'])]
  73.     private Collection $invoiceDetails;
  74.     #[ORM\ManyToOne(inversedBy'invoices')]
  75.     #[ORM\JoinColumn(nullablefalse)]
  76.     #[Groups(['invoice:read''invoice:write''company:read''invoiceDetail:read'])]
  77.     private ?Employee $employee null;
  78.     #[ORM\ManyToOne(inversedBy'invoices')]
  79.     #[ORM\JoinColumn(nullablefalse)]
  80.     #[Groups(['invoice:read''invoice:write''company:read''employee:read''invoiceDetail:read'])]
  81.     private ?Company $company null;
  82.     #[ORM\Column(length10nullabletrue)]
  83.     #[Groups(['invoice:read''invoice:write''company:read''employee:read''invoiceDetail:read'])]
  84.     private ?string $currency null;
  85.     #[ORM\Column(nullabletrue)]
  86.     #[Groups(['invoice:read''invoice:write''company:read''employee:read''invoiceDetail:read'])]
  87.     private ?float $total null;
  88.     #[ORM\Column]
  89.     #[Groups(['invoice:read''invoice:write''company:read''employee:read''invoiceDetail:read'])]
  90.     private ?int $softDelete 0;
  91.     public function __construct()
  92.     {
  93.         $this->invoiceDetails = new ArrayCollection();
  94.     }
  95.     public function getId(): ?int
  96.     {
  97.     return $this->id;
  98.     }
  99.     public function getNumber(): ?string
  100.     {
  101.         return $this->number;
  102.     }
  103.     public function setNumber(string $number): self
  104.     {
  105.         $this->number $number;
  106.         return $this;
  107.     }
  108.     public function getDate(): ?\DateTimeInterface
  109.     {
  110.         return $this->date;
  111.     }
  112.     public function setDate(\DateTimeInterface $date): self
  113.     {
  114.         $this->date $date;
  115.         return $this;
  116.     }
  117.     /**
  118.      * @return Collection<int, InvoiceDetail>
  119.      */
  120.     public function getInvoiceDetails(): Collection
  121.     {
  122.         return $this->invoiceDetails;
  123.     }
  124.     public function addInvoiceDetail(InvoiceDetail $invoiceDetail): self
  125.     {
  126.         if (!$this->invoiceDetails->contains($invoiceDetail)) {
  127.             $this->invoiceDetails->add($invoiceDetail);
  128.             $invoiceDetail->setInvoice($this);
  129.         }
  130.         return $this;
  131.     }
  132.     public function removeInvoiceDetail(InvoiceDetail $invoiceDetail): self
  133.     {
  134.         if ($this->invoiceDetails->removeElement($invoiceDetail)) {
  135.             // set the owning side to null (unless already changed)
  136.             if ($invoiceDetail->getInvoice() === $this) {
  137.                 $invoiceDetail->setInvoice(null);
  138.             }
  139.         }
  140.         return $this;
  141.     }
  142.     public function getEmployee(): ?Employee
  143.     {
  144.         return $this->employee;
  145.     }
  146.     public function setEmployee(?Employee $employee): self
  147.     {
  148.         $this->employee $employee;
  149.         return $this;
  150.     }
  151.     public function getCompany(): ?Company
  152.     {
  153.         return $this->company;
  154.     }
  155.     public function setCompany(?Company $company): self
  156.     {
  157.         $this->company $company;
  158.         return $this;
  159.     }
  160.     public function getCurrency(): ?string
  161.     {
  162.         return $this->currency;
  163.     }
  164.     public function setCurrency(?string $currency): self
  165.     {
  166.         $this->currency $currency;
  167.         return $this;
  168.     }
  169.     public function __toString(){
  170.         return $this->company' - ' .$this->employee.' : '.$this->number//or anything else
  171.       }
  172.     public function getTotal(): ?float
  173.     {
  174.         return $this->total;
  175.     }
  176.     public function setTotal(?float $total): self
  177.     {
  178.         $this->total $total;
  179.         return $this;
  180.     }
  181.     public function getSoftDelete(): ?int
  182.     {
  183.         return $this->softDelete;
  184.     }
  185.     public function setSoftDelete(?int $softDelete): self
  186.     {
  187.         $this->softDelete $softDelete;
  188.         return $this;
  189.     }
  190. }