| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <?php
- namespace AppBundle\Entity\Billing;
- use AppBundle\Entity\AccessAndFunction\Access;
- use AppBundle\Entity\Booking\EducationalProject;
- use AppBundle\Entity\Core\File;
- use AppBundle\Entity\Product\EquipmentLoan;
- use Doctrine\ORM\Mapping as ORM;
- use Dunglas\ApiBundle\Annotation\Iri;
- use Symfony\Component\Serializer\Annotation\Groups;
- use Symfony\Component\Validator\Constraints as Assert;
- use AppBundle\Entity\Traits\TimestampableEntity;
- use AppBundle\Entity\Traits\CreatorUpdaterEntity;
- use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
- use Doctrine\Common\Collections\ArrayCollection;
- /**
- * Paramètres généraux d'un export PES
- * NB: PES est un format de données demandé par le Trésor Public pour l'export des données comptables
- *
- * @Iri("http://schema.org/Pes")
- */
- #[ORM\Entity]
- class Pes
- {
- use TimestampableEntity;
- use CreatorUpdaterEntity;
- /**
- * @var int
- */
- #[ORM\Column(type: 'integer')]
- #[ORM\Id]
- #[ORM\GeneratedValue(strategy: 'AUTO')]
- #[Groups(['pes', 'pes_list', 'billaccounting_list'])]
- private $id;
- /**
- * @var ArrayCollection<Bill>
- */
- #[ORM\OneToMany(targetEntity: 'Bill', mappedBy: 'pes', cascade: ['persist'], orphanRemoval: true)]
- #[Groups(['pes_bills'])]
- private $bills;
- /**
- * @var string
- */
- #[ORM\Column(type: 'string', nullable: true)]
- #[Assert\Type(type: 'string')]
- #[Groups(['pes', 'pes_list', 'billaccounting_list_pes'])]
- private $roleNumber;
- /**
- * @var \DateTime
- */
- #[ORM\Column(type: 'date', nullable: true)]
- #[Assert\Date]
- #[Groups(['pes', 'pes_list'])]
- private $date;
- /**
- * @var File
- */
- #[Assert\Valid]
- #[ORM\OneToOne(targetEntity: 'AppBundle\Entity\Core\File', cascade: ['persist'], fetch: 'EAGER')]
- #[ORM\JoinColumn(nullable: true)]
- #[Groups(['pes', 'pes_list'])]
- private $file;
- /**
- * @var \DateTime
- */
- #[ORM\Column(type: 'date', nullable: true)]
- #[Assert\Date]
- #[Groups(['pes', 'pes_list'])]
- private $samplingDate;
- /**
- * @var bool
- */
- #[ORM\Column(type: 'boolean', options: ['default' => false])]
- #[Assert\Type(type: 'boolean')]
- #[Groups(['pes', 'pes_list'])]
- #[Assert\NotNull]
- private $withSampling = false;
- /**
- * The constructor
- */
- public function __construct() {
- $this->bills = new ArrayCollection();
- }
- /**
- * Sets id.
- *
- * @param int $id
- *
- * @return $this
- */
- public function setId($id)
- {
- $this->id = $id;
- return $this;
- }
- /**
- * Gets id.
- *
- * @return int
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set roleNumber
- *
- * @param string $roleNumber
- *
- * @return Pes
- */
- public function setRoleNumber($roleNumber)
- {
- $this->roleNumber = $roleNumber;
- return $this;
- }
- /**
- * Get roleNumber
- *
- * @return string
- */
- public function getRoleNumber()
- {
- return $this->roleNumber;
- }
- /**
- * Set date
- *
- * @param \DateTime $date
- *
- * @return Pes
- */
- public function setDate($date)
- {
- $this->date = $date;
- return $this;
- }
- /**
- * Get date
- *
- * @return \DateTime
- */
- public function getDate()
- {
- return $this->date;
- }
- /**
- * Set file
- *
- * @param \AppBundle\Entity\Core\File $file
- *
- * @return Pes
- */
- public function setFile(\AppBundle\Entity\Core\File $file = null)
- {
- $this->file = $file;
- return $this;
- }
- /**
- * Get file
- *
- * @return \AppBundle\Entity\Core\File
- */
- public function getFile()
- {
- return $this->file;
- }
- /**
- * Add bill
- *
- * @param \AppBundle\Entity\Billing\Bill $bill
- *
- * @return Pes
- */
- public function addBill(\AppBundle\Entity\Billing\Bill $bill)
- {
- $this->bills[] = $bill;
- return $this;
- }
- /**
- * Remove bill
- *
- * @param \AppBundle\Entity\Billing\Bill $bill
- */
- public function removeBill(\AppBundle\Entity\Billing\Bill $bill)
- {
- $this->bills->removeElement($bill);
- }
- /**
- * Get bills
- *
- * @return \Doctrine\Common\Collections\Collection
- */
- public function getBills()
- {
- return $this->bills;
- }
- /**
- * Set samplingDate
- *
- * @param \DateTime $samplingDate
- *
- * @return Pes
- */
- public function setSamplingDate($samplingDate)
- {
- $this->samplingDate = $samplingDate;
- return $this;
- }
- /**
- * Get samplingDate
- *
- * @return \DateTime
- */
- public function getSamplingDate()
- {
- return $this->samplingDate;
- }
- /**
- * Set withSampling
- *
- * @param boolean $withSampling
- *
- * @return Pes
- */
- public function setWithSampling($withSampling)
- {
- $this->withSampling = $withSampling;
- return $this;
- }
- /**
- * Get withSampling
- *
- * @return boolean
- */
- public function getWithSampling()
- {
- return $this->withSampling;
- }
- }
|