src/Entity/Carburant.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\TimestampableTrait;
  4. use App\Repository\CarburantRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. use Symfony\Component\HttpFoundation\File\UploadedFile;
  8. /**
  9.  * @ORM\Entity(repositoryClass=CarburantRepository::class)
  10.  */
  11. class Carburant
  12. {
  13.     use TimestampableTrait;
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\ManyToOne(targetEntity=Transporteur::class, inversedBy="carburants")
  22.      */
  23.     private $transporteur;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $number;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $code;
  32.     /**
  33.      * @ORM\Column(type="date", nullable=true)
  34.      */
  35.     private $date;
  36.     /**
  37.      * @ORM\Column(type="date", nullable=true)
  38.      */
  39.     private $datePayment;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $situation;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $serviceStation;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $type;
  52.     /**
  53.      * @ORM\Column(type="string", length=255, nullable=true)
  54.      */
  55.     private $km;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private $indexHoraire;
  60.     /**
  61.      * @ORM\Column(type="string", length=255, nullable=true)
  62.      */
  63.     private $quantity;
  64.     /**
  65.      * @ORM\Column(type="string", length=255, nullable=true)
  66.      */
  67.     private $price;
  68.     /**
  69.      * @ORM\Column(type="string", length=255, nullable=true)
  70.      */
  71.     private $montantTht;
  72.     /**
  73.      * @ORM\Column(type="string", length=255, nullable=true)
  74.      */
  75.     private $montantTtc;
  76.     /**
  77.      * @ORM\Column(type="string", length=255, nullable=true)
  78.      */
  79.     private $tva;
  80.     /**
  81.      * @ORM\ManyToOne(targetEntity=Vehicle::class, inversedBy="carburants")
  82.      */
  83.     private $vehicle;
  84.     /**
  85.      * @ORM\Column(type="string", length=255, nullable=true)
  86.      */
  87.     private $ticket;
  88.     /**
  89.      * @Assert\Image(maxSize="2M")
  90.      */
  91.     private $file;
  92.     /**
  93.      * @ORM\Column(type="string", length=255, nullable=true)
  94.      */
  95.     private $ticketOriginalName;
  96.     /**
  97.      * @ORM\Column(type="string", length=255, nullable=true)
  98.      */
  99.     private $ticketSize;
  100.     public function getId(): ?int
  101.     {
  102.         return $this->id;
  103.     }
  104.     public function getTransporteur(): ?Transporteur
  105.     {
  106.         return $this->transporteur;
  107.     }
  108.     public function setTransporteur(?Transporteur $transporteur): self
  109.     {
  110.         $this->transporteur $transporteur;
  111.         return $this;
  112.     }
  113.     public function getNumber(): ?string
  114.     {
  115.         return $this->number;
  116.     }
  117.     public function setNumber(?string $number): self
  118.     {
  119.         $this->number $number;
  120.         return $this;
  121.     }
  122.     public function getCode(): ?string
  123.     {
  124.         return $this->code;
  125.     }
  126.     public function setCode(?string $code): self
  127.     {
  128.         $this->code $code;
  129.         return $this;
  130.     }
  131.     public function getDate(): ?\DateTimeInterface
  132.     {
  133.         return $this->date;
  134.     }
  135.     public function setDate(?\DateTimeInterface $date): self
  136.     {
  137.         $this->date $date;
  138.         return $this;
  139.     }
  140.     public function getDatePayment(): ?\DateTimeInterface
  141.     {
  142.         return $this->datePayment;
  143.     }
  144.     public function setDatePayment(?\DateTimeInterface $datePayment): self
  145.     {
  146.         $this->datePayment $datePayment;
  147.         return $this;
  148.     }
  149.     public function getSituation(): ?string
  150.     {
  151.         return $this->situation;
  152.     }
  153.     public function setSituation(?string $situation): self
  154.     {
  155.         $this->situation $situation;
  156.         return $this;
  157.     }
  158.     public function getServiceStation(): ?string
  159.     {
  160.         return $this->serviceStation;
  161.     }
  162.     public function setServiceStation(?string $serviceStation): self
  163.     {
  164.         $this->serviceStation $serviceStation;
  165.         return $this;
  166.     }
  167.     public function getType(): ?string
  168.     {
  169.         return $this->type;
  170.     }
  171.     public function setType(?string $type): self
  172.     {
  173.         $this->type $type;
  174.         return $this;
  175.     }
  176.     public function getKm(): ?string
  177.     {
  178.         return $this->km;
  179.     }
  180.     public function setKm(?string $km): self
  181.     {
  182.         $this->km $km;
  183.         return $this;
  184.     }
  185.     public function getIndexHoraire(): ?string
  186.     {
  187.         return $this->indexHoraire;
  188.     }
  189.     public function setIndexHoraire(?string $indexHoraire): self
  190.     {
  191.         $this->indexHoraire $indexHoraire;
  192.         return $this;
  193.     }
  194.     public function getQuantity(): ?string
  195.     {
  196.         return $this->quantity;
  197.     }
  198.     public function setQuantity(?string $quantity): self
  199.     {
  200.         $this->quantity $quantity;
  201.         return $this;
  202.     }
  203.     public function getPrice(): ?string
  204.     {
  205.         return $this->price;
  206.     }
  207.     public function setPrice(?string $price): self
  208.     {
  209.         $this->price $price;
  210.         return $this;
  211.     }
  212.     public function getMontantTht(): ?string
  213.     {
  214.         return $this->montantTht;
  215.     }
  216.     public function setMontantTht(?string $montantTht): self
  217.     {
  218.         $this->montantTht $montantTht;
  219.         return $this;
  220.     }
  221.     public function getMontantTtc(): ?string
  222.     {
  223.         return $this->montantTtc;
  224.     }
  225.     public function setMontantTtc(?string $montantTtc): self
  226.     {
  227.         $this->montantTtc $montantTtc;
  228.         return $this;
  229.     }
  230.     public function getTva(): ?string
  231.     {
  232.         return $this->tva;
  233.     }
  234.     public function setTva(?string $tva): self
  235.     {
  236.         $this->tva $tva;
  237.         return $this;
  238.     }
  239.     public function getVehicle(): ?Vehicle
  240.     {
  241.         return $this->vehicle;
  242.     }
  243.     public function setVehicle(?Vehicle $vehicle): self
  244.     {
  245.         $this->vehicle $vehicle;
  246.         return $this;
  247.     }
  248.     public function getTicket(): ?string
  249.     {
  250.         return $this->ticket;
  251.     }
  252.     public function setTicket(?string $ticket): self
  253.     {
  254.         $this->ticket $ticket;
  255.         return $this;
  256.     }
  257.     public function getFile()
  258.     {
  259.         return $this->file;
  260.     }
  261.     public function setFile(UploadedFile $file)
  262.     {
  263.         $this->file $file;
  264.         return $this;
  265.     }
  266.     public function getTicketOriginalName(): ?string
  267.     {
  268.         return $this->ticketOriginalName;
  269.     }
  270.     public function setTicketOriginalName(?string $ticketOriginalName): self
  271.     {
  272.         $this->ticketOriginalName $ticketOriginalName;
  273.         return $this;
  274.     }
  275.     public function getTicketSize(): ?string
  276.     {
  277.         return $this->ticketSize;
  278.     }
  279.     public function setTicketSize(?string $ticketSize): self
  280.     {
  281.         $this->ticketSize $ticketSize;
  282.         return $this;
  283.     }
  284. }