src/Entity/Fonction.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\TimestampableTrait;
  4. use App\Repository\FonctionRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=FonctionRepository::class)
  10.  */
  11. class Fonction
  12. {
  13.     use TimestampableTrait;
  14.     
  15.     /**
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\ManyToOne(targetEntity=Transporteur::class)
  23.      * @ORM\JoinColumn(nullable=true, onDelete="CASCADE")
  24.      */
  25.     private $transporteur;
  26.     /**
  27.      * @ORM\Column(type="string", length=255)
  28.      */
  29.     private $name;
  30.     /**
  31.      * @ORM\Column(type="text", nullable=true)
  32.      */
  33.     private $description;
  34.     /**
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      */
  37.     private $icon;
  38.     /**
  39.      * @ORM\Column(type="json", nullable=true)
  40.      */
  41.     private $roleVehicle = [];
  42.     /**
  43.      * @ORM\Column(type="json", nullable=true)
  44.      */
  45.     private $roleVehicleGroup = [];
  46.     /**
  47.      * @ORM\Column(type="json", nullable=true)
  48.      */
  49.     private $roleVehicleType = [];
  50.     /**
  51.      * @ORM\Column(type="json", nullable=true)
  52.      */
  53.     private $roleAtelierAquisition = [];
  54.     /**
  55.      * @ORM\Column(type="json", nullable=true)
  56.      */
  57.     private $roleAtelierAttachment = [];
  58.     /**
  59.      * @ORM\Column(type="json", nullable=true)
  60.      */
  61.     private $roleAtelierCarburant = [];
  62.     /**
  63.      * @ORM\Column(type="boolean")
  64.      */
  65.     private $status false;
  66.     /**
  67.      * @ORM\Column(type="json", nullable=true)
  68.      */
  69.     private $roleAtelierAssurance = [];
  70.     /**
  71.      * @ORM\Column(type="json", nullable=true)
  72.      */
  73.     private $roleAtelierVignette = [];
  74.     /**
  75.      * @ORM\Column(type="json", nullable=true)
  76.      */
  77.     private $roleAtelierTaxe = [];
  78.     /**
  79.      * @ORM\Column(type="json", nullable=true)
  80.      */
  81.     private $roleAtelierAutorisation = [];
  82.     /**
  83.      * @ORM\Column(type="json", nullable=true)
  84.      */
  85.     private $roleAtelierCarnet = [];
  86.     /**
  87.      * @ORM\Column(type="json", nullable=true)
  88.      */
  89.     private $roleAtelierAccident = [];
  90.     /**
  91.      * @ORM\Column(type="json")
  92.      */
  93.     private $roleAtelierService = [];
  94.     /**
  95.      * @ORM\Column(type="json", nullable=true)
  96.      */
  97.     private $roleAtelierPneumatique = [];
  98.     /**
  99.      * @ORM\Column(type="json", nullable=true)
  100.      */
  101.     private $roleAtelierExtincteur = [];
  102.     /**
  103.      * @ORM\Column(type="json", nullable=true)
  104.      */
  105.     private $roleAtelierMarque = [];
  106.     /**
  107.      * @ORM\Column(type="json", nullable=true)
  108.      */
  109.     private $roleAchat = [];
  110.     /**
  111.      * @ORM\Column(type="json", nullable=true)
  112.      */
  113.     private $roleCollaborateur = [];
  114.     /**
  115.      * @ORM\Column(type="json", nullable=true)
  116.      */
  117.     private $roleGestionCollaborateurs = [];
  118.     /**
  119.      * @ORM\OneToMany(targetEntity=Collaborateur::class, mappedBy="fonction")
  120.      */
  121.     private $collaborateurs;
  122.     /**
  123.      * @ORM\Column(type="json", nullable=true)
  124.      */
  125.     private $roleClient = [];
  126.     /**
  127.      * @ORM\Column(type="json", nullable=true)
  128.      */
  129.     private $roleVoyage = [];
  130.     /**
  131.      * @ORM\Column(type="json", nullable=true)
  132.      */
  133.     private $roleGeofence = [];
  134.     /**
  135.      * @ORM\Column(type="json", nullable=true)
  136.      */
  137.     private $roleSuivi = [];
  138.     /**
  139.      * @ORM\Column(type="json", nullable=true)
  140.      */
  141.     private $roleModule = [];
  142.     /**
  143.      * @ORM\Column(type="json", nullable=true)
  144.      */
  145.     private $roleAgenda = [];
  146.     /**
  147.      * @ORM\Column(type="json", nullable=true)
  148.      */
  149.     private $rolePage = [];
  150.     /**
  151.      * @ORM\Column(type="string", length=255, nullable=true)
  152.      */
  153.     private $iconColor;
  154.     public function __construct()
  155.     {
  156.         $this->collaborateurs = new ArrayCollection();
  157.     }
  158.     public function getId(): ?int
  159.     {
  160.         return $this->id;
  161.     }
  162.     public function getTransporteur(): ?Transporteur
  163.     {
  164.         return $this->transporteur;
  165.     }
  166.     public function setTransporteur(?Transporteur $transporteur): self
  167.     {
  168.         $this->transporteur $transporteur;
  169.         return $this;
  170.     }
  171.     public function getName(): ?string
  172.     {
  173.         return $this->name;
  174.     }
  175.     public function setName(string $name): self
  176.     {
  177.         $this->name $name;
  178.         return $this;
  179.     }
  180.     public function getDescription(): ?string
  181.     {
  182.         return $this->description;
  183.     }
  184.     public function setDescription(?string $description): self
  185.     {
  186.         $this->description $description;
  187.         return $this;
  188.     }
  189.     public function getIcon(): ?string
  190.     {
  191.         return $this->icon;
  192.     }
  193.     public function setIcon(?string $icon): self
  194.     {
  195.         $this->icon $icon;
  196.         return $this;
  197.     }
  198.     public function getRoleVehicle(): ?array
  199.     {
  200.         return $this->roleVehicle;
  201.     }
  202.     public function setRoleVehicle(?array $roleVehicle): self
  203.     {
  204.         $this->roleVehicle $roleVehicle;
  205.         return $this;
  206.     }
  207.     public function getRoleVehicleGroup(): ?array
  208.     {
  209.         return $this->roleVehicleGroup;
  210.     }
  211.     public function setRoleVehicleGroup(?array $roleVehicleGroup): self
  212.     {
  213.         $this->roleVehicleGroup $roleVehicleGroup;
  214.         return $this;
  215.     }
  216.     public function getRoleVehicleType(): ?array
  217.     {
  218.         return $this->roleVehicleType;
  219.     }
  220.     public function setRoleVehicleType(?array $roleVehicleType): self
  221.     {
  222.         $this->roleVehicleType $roleVehicleType;
  223.         return $this;
  224.     }
  225.     public function getRoleAtelierAquisition(): ?array
  226.     {
  227.         return $this->roleAtelierAquisition;
  228.     }
  229.     public function setRoleAtelierAquisition(?array $roleAtelierAquisition): self
  230.     {
  231.         $this->roleAtelierAquisition $roleAtelierAquisition;
  232.         return $this;
  233.     }
  234.     public function getRoleAtelierAttachment(): ?array
  235.     {
  236.         return $this->roleAtelierAttachment;
  237.     }
  238.     public function setRoleAtelierAttachment(?array $roleAtelierAttachment): self
  239.     {
  240.         $this->roleAtelierAttachment $roleAtelierAttachment;
  241.         return $this;
  242.     }
  243.     public function getRoleAtelierCarburant(): ?array
  244.     {
  245.         return $this->roleAtelierCarburant;
  246.     }
  247.     public function setRoleAtelierCarburant(?array $roleAtelierCarburant): self
  248.     {
  249.         $this->roleAtelierCarburant $roleAtelierCarburant;
  250.         return $this;
  251.     }
  252.     public function isStatus(): ?bool
  253.     {
  254.         return $this->status;
  255.     }
  256.     public function setStatus(bool $status): self
  257.     {
  258.         $this->status $status;
  259.         return $this;
  260.     }
  261.     public function getRoleAtelierAssurance(): ?array
  262.     {
  263.         return $this->roleAtelierAssurance;
  264.     }
  265.     public function setRoleAtelierAssurance(?array $roleAtelierAssurance): self
  266.     {
  267.         $this->roleAtelierAssurance $roleAtelierAssurance;
  268.         return $this;
  269.     }
  270.     public function getRoleAtelierVignette(): ?array
  271.     {
  272.         return $this->roleAtelierVignette;
  273.     }
  274.     public function setRoleAtelierVignette(?array $roleAtelierVignette): self
  275.     {
  276.         $this->roleAtelierVignette $roleAtelierVignette;
  277.         return $this;
  278.     }
  279.     public function getRoleAtelierTaxe(): ?array
  280.     {
  281.         return $this->roleAtelierTaxe;
  282.     }
  283.     public function setRoleAtelierTaxe(?array $roleAtelierTaxe): self
  284.     {
  285.         $this->roleAtelierTaxe $roleAtelierTaxe;
  286.         return $this;
  287.     }
  288.     public function getRoleAtelierAutorisation(): ?array
  289.     {
  290.         return $this->roleAtelierAutorisation;
  291.     }
  292.     public function setRoleAtelierAutorisation(?array $roleAtelierAutorisation): self
  293.     {
  294.         $this->roleAtelierAutorisation $roleAtelierAutorisation;
  295.         return $this;
  296.     }
  297.     public function getRoleAtelierCarnet(): ?array
  298.     {
  299.         return $this->roleAtelierCarnet;
  300.     }
  301.     public function setRoleAtelierCarnet(?array $roleAtelierCarnet): self
  302.     {
  303.         $this->roleAtelierCarnet $roleAtelierCarnet;
  304.         return $this;
  305.     }
  306.     public function getRoleAtelierAccident(): ?array
  307.     {
  308.         return $this->roleAtelierAccident;
  309.     }
  310.     public function setRoleAtelierAccident(?array $roleAtelierAccident): self
  311.     {
  312.         $this->roleAtelierAccident $roleAtelierAccident;
  313.         return $this;
  314.     }
  315.     public function getRoleAtelierService(): ?array
  316.     {
  317.         return $this->roleAtelierService;
  318.     }
  319.     public function setRoleAtelierService(array $roleAtelierService): self
  320.     {
  321.         $this->roleAtelierService $roleAtelierService;
  322.         return $this;
  323.     }
  324.     public function getRoleAtelierPneumatique(): ?array
  325.     {
  326.         return $this->roleAtelierPneumatique;
  327.     }
  328.     public function setRoleAtelierPneumatique(?array $roleAtelierPneumatique): self
  329.     {
  330.         $this->roleAtelierPneumatique $roleAtelierPneumatique;
  331.         return $this;
  332.     }
  333.     public function getRoleAtelierExtincteur(): ?array
  334.     {
  335.         return $this->roleAtelierExtincteur;
  336.     }
  337.     public function setRoleAtelierExtincteur(?array $roleAtelierExtincteur): self
  338.     {
  339.         $this->roleAtelierExtincteur $roleAtelierExtincteur;
  340.         return $this;
  341.     }
  342.     public function getRoleAtelierMarque(): ?array
  343.     {
  344.         return $this->roleAtelierMarque;
  345.     }
  346.     public function setRoleAtelierMarque(?array $roleAtelierMarque): self
  347.     {
  348.         $this->roleAtelierMarque $roleAtelierMarque;
  349.         return $this;
  350.     }
  351.     public function getRoleAchat(): ?array
  352.     {
  353.         return $this->roleAchat;
  354.     }
  355.     public function setRoleAchat(?array $roleAchat): self
  356.     {
  357.         $this->roleAchat $roleAchat;
  358.         return $this;
  359.     }
  360.     public function getRoleCollaborateur(): ?array
  361.     {
  362.         return $this->roleCollaborateur;
  363.     }
  364.     public function setRoleCollaborateur(?array $roleCollaborateur): self
  365.     {
  366.         $this->roleCollaborateur $roleCollaborateur;
  367.         return $this;
  368.     }
  369.     public function getRoleGestionCollaborateurs(): ?array
  370.     {
  371.         return $this->roleGestionCollaborateurs;
  372.     }
  373.     public function setRoleGestionCollaborateurs(?array $roleGestionCollaborateurs): self
  374.     {
  375.         $this->roleGestionCollaborateurs $roleGestionCollaborateurs;
  376.         return $this;
  377.     }
  378.     /**
  379.      * @return Collection<int, Collaborateur>
  380.      */
  381.     public function getCollaborateurs(): Collection
  382.     {
  383.         return $this->collaborateurs;
  384.     }
  385.     public function addCollaborateur(Collaborateur $collaborateur): self
  386.     {
  387.         if (!$this->collaborateurs->contains($collaborateur)) {
  388.             $this->collaborateurs[] = $collaborateur;
  389.             $collaborateur->setFonction($this);
  390.         }
  391.         return $this;
  392.     }
  393.     public function removeCollaborateur(Collaborateur $collaborateur): self
  394.     {
  395.         if ($this->collaborateurs->removeElement($collaborateur)) {
  396.             // set the owning side to null (unless already changed)
  397.             if ($collaborateur->getFonction() === $this) {
  398.                 $collaborateur->setFonction(null);
  399.             }
  400.         }
  401.         return $this;
  402.     }
  403.     public function getRoleClient(): ?array
  404.     {
  405.         return $this->roleClient;
  406.     }
  407.     public function setRoleClient(?array $roleClient): self
  408.     {
  409.         $this->roleClient $roleClient;
  410.         return $this;
  411.     }
  412.     public function getRoleVoyage(): ?array
  413.     {
  414.         return $this->roleVoyage;
  415.     }
  416.     public function setRoleVoyage(?array $roleVoyage): self
  417.     {
  418.         $this->roleVoyage $roleVoyage;
  419.         return $this;
  420.     }
  421.     public function getRoleGeofence(): ?array
  422.     {
  423.         return $this->roleGeofence;
  424.     }
  425.     public function setRoleGeofence(?array $roleGeofence): self
  426.     {
  427.         $this->roleGeofence $roleGeofence;
  428.         return $this;
  429.     }
  430.     public function getRoleSuivi(): ?array
  431.     {
  432.         return $this->roleSuivi;
  433.     }
  434.     public function setRoleSuivi(?array $roleSuivi): self
  435.     {
  436.         $this->roleSuivi $roleSuivi;
  437.         return $this;
  438.     }
  439.     public function getRoleModule(): ?array
  440.     {
  441.         return $this->roleModule;
  442.     }
  443.     public function setRoleModule(?array $roleModule): self
  444.     {
  445.         $this->roleModule $roleModule;
  446.         return $this;
  447.     }
  448.     public function getRoleAgenda(): ?array
  449.     {
  450.         return $this->roleAgenda;
  451.     }
  452.     public function setRoleAgenda(?array $roleAgenda): self
  453.     {
  454.         $this->roleAgenda $roleAgenda;
  455.         return $this;
  456.     }
  457.     public function getRolePage(): ?array
  458.     {
  459.         return $this->rolePage;
  460.     }
  461.     public function setRolePage(?array $rolePage): self
  462.     {
  463.         $this->rolePage $rolePage;
  464.         return $this;
  465.     }
  466.     public function getIconColor(): ?string
  467.     {
  468.         return $this->iconColor;
  469.     }
  470.     public function setIconColor(?string $iconColor): self
  471.     {
  472.         $this->iconColor $iconColor;
  473.         return $this;
  474.     }
  475. }