src/Entity/Piece.php line 17

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PieceRepository;
  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 Symfony\Component\Validator\Constraints as Assert;
  9. use Symfony\Component\Validator\Context\ExecutionContextInterface;
  10. /**
  11.  * @ORM\Entity(repositoryClass=PieceRepository::class)
  12.  * @ORM\HasLifecycleCallbacks()
  13.  */
  14. class Piece
  15. {
  16.     /**
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @ORM\Column(type="date", nullable=true)
  24.      * @Assert\NotBlank(message="La date est obligatoire")
  25.      */
  26.     private $date;
  27.     /**
  28.      * @ORM\Column(type="integer", nullable=true)
  29.      * @Assert\NotBlank(message="Le code est obligatoire")
  30.      */
  31.     private $numero;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $type;
  36.     /**
  37.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  38.      */
  39.     private $amountHT;
  40.     /**
  41.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  42.      */
  43.     private $amountTVA;
  44.     /**
  45.      * @ORM\Column(type="float", nullable=true)
  46.      */
  47.     private $discount;
  48.     /**
  49.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  50.      */
  51.     private $amountDiscount;
  52.     /**
  53.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  54.      */
  55.     private $amountTTC;
  56.     /**
  57.      * @ORM\Column(type="datetime", nullable=true)
  58.      */
  59.     private $createdAt;
  60.     /**
  61.      * @ORM\Column(type="datetime", nullable=true)
  62.      */
  63.     private $updatedAt;
  64.     /**
  65.      * @ORM\ManyToOne(targetEntity=Client::class, inversedBy="pieces")
  66.      * @Assert\NotBlank(message="Le client est obligatoire")
  67.      */
  68.     private $client;
  69.     /**
  70.      * @ORM\OneToMany(targetEntity=PieceLine::class, mappedBy="piece", orphanRemoval=true, cascade={"persist"})
  71.      */
  72.     private $pieceLines;
  73.     /**
  74.      * @ORM\Column(type="boolean", nullable=true)
  75.      */
  76.     private $payer;
  77.     /**
  78.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  79.      */
  80.     private $amountBuyHT;
  81.     /**
  82.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  83.      */
  84.     private $amountMarge;
  85.     /**
  86.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  87.      */
  88.     private $solde;
  89.     /**
  90.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="pieces")
  91.      * @ORM\JoinColumn(nullable=true)
  92.      */
  93.     private $user;
  94.     /**
  95.      * @ORM\Column(type="string", length=255, nullable=true)
  96.      */
  97.     private $modePaiement;
  98.     /**
  99.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  100.      */
  101.     private $amountDiscountTotal;
  102.     /**
  103.      * @ORM\OneToMany(targetEntity=Affectation::class, mappedBy="piece", orphanRemoval=true)
  104.      */
  105.     private $affectations;
  106.     public function liste_type_piece(){
  107.         return [
  108.             'devis'=>'Devis',
  109.             'facture'=>'Facture',
  110.             'avoir'=>'Avoir',
  111.         ];
  112.     }
  113.     public function liste_mode_paiement(){
  114.         return [
  115.             'comptant'=>'Comptant',
  116.             'carte'=>'Carte',
  117.             'virement'=>'Virement',
  118.         ];
  119.     }
  120.     public function __construct()
  121.     {
  122.         $this->pieceLines = new ArrayCollection();
  123.         $this->affectations = new ArrayCollection();
  124.     }
  125.     public function getId(): ?int
  126.     {
  127.         return $this->id;
  128.     }
  129.     public function getDate(): ?\DateTimeInterface
  130.     {
  131.         return $this->date;
  132.     }
  133.     public function setDate(?\DateTimeInterface $date): self
  134.     {
  135.         $this->date $date;
  136.         return $this;
  137.     }
  138.     public function getNumero(): ?int
  139.     {
  140.         return $this->numero;
  141.     }
  142.     public function setNumero(?int $numero): self
  143.     {
  144.         $this->numero $numero;
  145.         return $this;
  146.     }
  147.     public function getType(): ?string
  148.     {
  149.         return $this->type;
  150.     }
  151.     public function setType(?string $type): self
  152.     {
  153.         $this->type $type;
  154.         return $this;
  155.     }
  156.     public function getAmountHT(): ?string
  157.     {
  158.         return $this->amountHT;
  159.     }
  160.     public function setAmountHT(string $amountHT): self
  161.     {
  162.         $this->amountHT $amountHT;
  163.         return $this;
  164.     }
  165.     public function getAmountTVA(): ?string
  166.     {
  167.         return $this->amountTVA;
  168.     }
  169.     public function setAmountTVA(?string $amountTVA): self
  170.     {
  171.         $this->amountTVA $amountTVA;
  172.         return $this;
  173.     }
  174.     public function getDiscount(): ?float
  175.     {
  176.         return $this->discount;
  177.     }
  178.     public function setDiscount(?float $discount): self
  179.     {
  180.         $this->discount $discount;
  181.         return $this;
  182.     }
  183.     public function getAmountDiscount(): ?string
  184.     {
  185.         return $this->amountDiscount;
  186.     }
  187.     public function setAmountDiscount(?string $amountDiscount): self
  188.     {
  189.         $this->amountDiscount $amountDiscount;
  190.         return $this;
  191.     }
  192.     public function getAmountTTC(): ?string
  193.     {
  194.         return $this->amountTTC;
  195.     }
  196.     public function setAmountTTC(?string $amountTTC): self
  197.     {
  198.         $this->amountTTC $amountTTC;
  199.         return $this;
  200.     }
  201.     public function getCreatedAt(): ?\DateTimeInterface
  202.     {
  203.         return $this->createdAt;
  204.     }
  205.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  206.     {
  207.         $this->createdAt $createdAt;
  208.         return $this;
  209.     }
  210.     public function getUpdatedAt(): ?\DateTimeInterface
  211.     {
  212.         return $this->updatedAt;
  213.     }
  214.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  215.     {
  216.         $this->updatedAt $updatedAt;
  217.         return $this;
  218.     }
  219.     public function getClient(): ?Client
  220.     {
  221.         return $this->client;
  222.     }
  223.     public function setClient(?Client $client): self
  224.     {
  225.         $this->client $client;
  226.         return $this;
  227.     }
  228.     /**
  229.      * @return Collection|PieceLine[]
  230.      */
  231.     public function getPieceLines(): Collection
  232.     {
  233.         return $this->pieceLines;
  234.     }
  235.     public function addPieceLine(PieceLine $pieceLine): self
  236.     {
  237.         if (!$this->pieceLines->contains($pieceLine)) {
  238.             $this->pieceLines[] = $pieceLine;
  239.             $pieceLine->setPiece($this);
  240.         }
  241.         return $this;
  242.     }
  243.     public function removePieceLine(PieceLine $pieceLine): self
  244.     {
  245.         if ($this->pieceLines->contains($pieceLine)) {
  246.             $this->pieceLines->removeElement($pieceLine);
  247.             // set the owning side to null (unless already changed)
  248.             if ($pieceLine->getPiece() === $this) {
  249.                 $pieceLine->setPiece(null);
  250.             }
  251.         }
  252.         return $this;
  253.     }
  254.     public function getPayer(): ?bool
  255.     {
  256.         return $this->payer;
  257.     }
  258.     public function setPayer(?bool $payer): self
  259.     {
  260.         $this->payer $payer;
  261.         return $this;
  262.     }
  263.     public function getAmountBuyHT(): ?string
  264.     {
  265.         return $this->amountBuyHT;
  266.     }
  267.     public function setAmountBuyHT(?string $amountBuyHT): self
  268.     {
  269.         $this->amountBuyHT $amountBuyHT;
  270.         return $this;
  271.     }
  272.     public function getAmountMarge(): ?string
  273.     {
  274.         return $this->amountMarge;
  275.     }
  276.     public function setAmountMarge(?string $amountMarge): self
  277.     {
  278.         $this->amountMarge $amountMarge;
  279.         return $this;
  280.     }
  281.     public function getUser(): ?User
  282.     {
  283.         return $this->user;
  284.     }
  285.     public function setUser(?User $user): self
  286.     {
  287.         $this->user $user;
  288.         return $this;
  289.     }
  290.     public function getModePaiement(): ?string
  291.     {
  292.         return $this->modePaiement;
  293.     }
  294.     public function setModePaiement(?string $modePaiement): self
  295.     {
  296.         $this->modePaiement $modePaiement;
  297.         return $this;
  298.     }
  299.     /**
  300.      * @Assert\Callback
  301.      */
  302.     public function validate(ExecutionContextInterface $context$payload)
  303.     {
  304.         // check if the name is actually a fake name
  305.         if ($this->getPayer() && $this->getModePaiement()=='') {
  306.             $context->buildViolation('Il faut choisir au mode de paiement')
  307.                 ->atPath('modePaiement')
  308.                 ->addViolation();
  309.         }
  310.     }
  311.     public function getAmountDiscountTotal(): ?string
  312.     {
  313.         return $this->amountDiscountTotal;
  314.     }
  315.     public function setAmountDiscountTotal(?string $amountDiscountTotal): self
  316.     {
  317.         $this->amountDiscountTotal $amountDiscountTotal;
  318.         return $this;
  319.     }
  320.     public function isPayer(): ?bool
  321.     {
  322.         return $this->payer;
  323.     }
  324.     /**
  325.      * @return Collection<int, Affectaion>
  326.      */
  327.     public function getAffectations(): Collection
  328.     {
  329.         return $this->affectations;
  330.     }
  331.     public function addAffectation(Affectation $affectation): self
  332.     {
  333.         if (!$this->affectations->contains($affectation)) {
  334.             $this->affectations->add($affectation);
  335.             $affectation->setPiece($this);
  336.         }
  337.         return $this;
  338.     }
  339.     public function removeAffectation(Affectation $affectation): self
  340.     {
  341.         if ($this->affectations->removeElement($affectation)) {
  342.             // set the owning side to null (unless already changed)
  343.             if ($affectation->getPiece() === $this) {
  344.                 $affectation->setPiece(null);
  345.             }
  346.         }
  347.         return $this;
  348.     }
  349.     public function getPoints($percent null){
  350.         $points 0;
  351.         $gift $this->getClient()->getGiftConfigPerPiece($this);
  352.         if(is_null($gift)){
  353.             return 0;
  354.         }
  355.         if($this->type === 'devis'){
  356.             return 0;
  357.         }
  358.         if(is_null($percent)){
  359.             $percent $gift->getPercent();
  360.         }
  361.         foreach($this->getPieceLines() as $line){
  362.             if($line->getRabais() == or is_null($line->getRabais())){
  363.                 $points += round($line->getTotalHT() * $percent /100,2);
  364.             }
  365.         }
  366.         if($this->getType() == 'avoir'){
  367.             return -$points;
  368.         }
  369.         return $points;
  370.     }
  371.     public function getSolde(): ?string
  372.     {
  373.         return $this->solde;
  374.     }
  375.     public function setSolde(?string $solde): self
  376.     {
  377.         $this->solde $solde;
  378.         return $this;
  379.     }
  380.     /**
  381.      * @ORM\PrePersist
  382.      */
  383.     public function createDate()
  384.     {
  385.         $this->createdAt = new \DateTime();
  386.         $this->updatedAt = new \DateTime();
  387.         if($this->getModePaiement() == '' or is_null($this->getModePaiement())){
  388.             $this->solde $this->getAmountTTC();
  389.         }else{
  390.             $this->solde 0;
  391.         }
  392.     }
  393.     /**
  394.      * @ORM\PreUpdate
  395.      */
  396.     public function updateDate()
  397.     {
  398.         $this->updatedAt = new \DateTime();
  399.         $p 0;
  400.         foreach($this->getAffectations() as $affectation){
  401.             $p += $affectation->getAmount();
  402.         }
  403.         $this->solde $this->getAmountTTC() - $p;
  404.     }
  405. }