src/Flexy/ShopBundle/Entity/Accounting/Invoice.php line 20

  1. <?php
  2. namespace App\Flexy\ShopBundle\Entity\Accounting;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Flexy\ShopBundle\Entity\Customer\Customer;
  5. use App\Flexy\ShopBundle\Entity\Customer\CustomerWalletPoint;
  6. use App\Flexy\ShopBundle\Entity\Order\Order;
  7. use App\Flexy\ShopBundle\Entity\Payment\PaymentMethod;
  8. use App\Repository\Flexy\ShopBundle\Entity\Accounting\InvoiceRepository;
  9. use Doctrine\Common\Collections\ArrayCollection;
  10. use Doctrine\Common\Collections\Collection;
  11. use Doctrine\DBAL\Types\Types;
  12. use Doctrine\ORM\Mapping as ORM;
  13. use Gedmo\Mapping\Annotation as Gedmo;
  14. use Symfony\Component\Validator\Constraints as Assert;
  15. #[ORM\Entity(repositoryClassInvoiceRepository::class)]
  16. #[ApiResource]
  17. class Invoice
  18. {
  19.     #[ORM\Id]
  20.     #[ORM\GeneratedValue]
  21.     #[ORM\Column]
  22.     private ?int $id null;
  23.     #[ORM\OneToMany(mappedBy'invoice'targetEntityOrder::class)]
  24.     private Collection $orders;
  25.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  26.     private ?string $description null;
  27.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  28.     private ?\DateTimeInterface $createdAt null;
  29.     #[ORM\ManyToOne(inversedBy'invoices'cascade: ['persist'])]
  30.     #[Assert\Valid]
  31.     private ?Customer $customer null;
  32.     #[ORM\Column(type'string'length255nullabletrue)]
  33.     private ?string $firstName null;
  34.     #[ORM\Column(type'string'length255nullabletrue)]
  35.     private ?string $lastName null;
  36.     #[ORM\Column(type'string'length255nullabletrue)]
  37.     private ?string $companyName null;
  38.     #[ORM\Column(type'string'length255nullabletrue)]
  39.     private ?string $address null;
  40.     #[ORM\Column(type'string'length255nullabletrue)]
  41.     private ?string $city null;
  42.     #[ORM\Column(type'string'length255nullabletrue)]
  43.     private ?string $country null;
  44.     #[ORM\Column(type'string'length255nullabletrue)]
  45.     private ?string $postcode null;
  46.     #[ORM\Column(type'string'length255nullabletrue)]
  47.     private ?string $email null;
  48.     #[ORM\Column(type'string'length255nullabletrue)]
  49.     private ?string $tel null;
  50.     #[ORM\Column(nullabletrue)]
  51.     private ?float $payedAmount null;
  52.     #[ORM\Column(type'float'nullabletrue)]
  53.     private $walletPaymentAmount 0;
  54.     #[ORM\Column(type'string'length255nullabletrue)]
  55.     private $tokenStripe;
  56.     #[ORM\ManyToOne(inversedBy'invoices')]
  57.     private ?PaymentMethod $paymentMethod null;
  58.     #[ORM\Column(length255nullabletrue)]
  59.     private ?string $status "draft";
  60.     #[ORM\OneToMany(mappedBy'invoice'targetEntityCustomerWalletPoint::class)]
  61.     private Collection $customerWalletPoints;
  62.     #[ORM\Column(length255nullabletrue)]
  63.     private ?string $source null;
  64.     public function __construct()
  65.     {
  66.         $this->orders = new ArrayCollection();
  67.         $this->customerWalletPoints = new ArrayCollection();
  68.     }
  69.     public function getId(): ?int
  70.     {
  71.         return $this->id;
  72.     }
  73.     /**
  74.      * @return Collection<int, Order>
  75.      */
  76.     public function getOrders(): Collection
  77.     {
  78.         return $this->orders;
  79.     }
  80.     public function addOrder(Order $order): self
  81.     {
  82.         if (!$this->orders->contains($order)) {
  83.             $this->orders->add($order);
  84.             $order->setInvoice($this);
  85.         }
  86.         return $this;
  87.     }
  88.     public function removeOrder(Order $order): self
  89.     {
  90.         if ($this->orders->removeElement($order)) {
  91.             // set the owning side to null (unless already changed)
  92.             if ($order->getInvoice() === $this) {
  93.                 $order->setInvoice(null);
  94.             }
  95.         }
  96.         return $this;
  97.     }
  98.     public function getDescription(): ?string
  99.     {
  100.         return $this->description;
  101.     }
  102.     public function setDescription(?string $description): self
  103.     {
  104.         $this->description $description;
  105.         return $this;
  106.     }
  107.     public function getCreatedAt(): ?\DateTimeInterface
  108.     {
  109.         return $this->createdAt;
  110.     }
  111.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  112.     {
  113.         $this->createdAt $createdAt;
  114.         return $this;
  115.     }
  116.     public function getCustomer(): ?Customer
  117.     {
  118.         return $this->customer;
  119.     }
  120.     public function setCustomer(?Customer $customer): self
  121.     {
  122.         $this->customer $customer;
  123.         return $this;
  124.     }
  125.     /**
  126.      * Get the value of firstName
  127.      */ 
  128.     public function getFirstName()
  129.     {
  130.         return $this->firstName;
  131.     }
  132.     /**
  133.      * Set the value of firstName
  134.      *
  135.      * @return  self
  136.      */ 
  137.     public function setFirstName($firstName)
  138.     {
  139.         $this->firstName $firstName;
  140.         return $this;
  141.     }
  142.     /**
  143.      * Get the value of lastName
  144.      */ 
  145.     public function getLastName()
  146.     {
  147.         return $this->lastName;
  148.     }
  149.     /**
  150.      * Set the value of lastName
  151.      *
  152.      * @return  self
  153.      */ 
  154.     public function setLastName($lastName)
  155.     {
  156.         $this->lastName $lastName;
  157.         return $this;
  158.     }
  159.     /**
  160.      * Get the value of companyName
  161.      */ 
  162.     public function getCompanyName()
  163.     {
  164.         return $this->companyName;
  165.     }
  166.     /**
  167.      * Set the value of companyName
  168.      *
  169.      * @return  self
  170.      */ 
  171.     public function setCompanyName($companyName)
  172.     {
  173.         $this->companyName $companyName;
  174.         return $this;
  175.     }
  176.     /**
  177.      * Get the value of tel
  178.      */ 
  179.     public function getTel()
  180.     {
  181.         return $this->tel;
  182.     }
  183.     /**
  184.      * Set the value of tel
  185.      *
  186.      * @return  self
  187.      */ 
  188.     public function setTel($tel)
  189.     {
  190.         $this->tel $tel;
  191.         return $this;
  192.     }
  193.     /**
  194.      * Get the value of email
  195.      */ 
  196.     public function getEmail()
  197.     {
  198.         return $this->email;
  199.     }
  200.     /**
  201.      * Set the value of email
  202.      *
  203.      * @return  self
  204.      */ 
  205.     public function setEmail($email)
  206.     {
  207.         $this->email $email;
  208.         return $this;
  209.     }
  210.     /**
  211.      * Get the value of postcode
  212.      */ 
  213.     public function getPostcode()
  214.     {
  215.         return $this->postcode;
  216.     }
  217.     /**
  218.      * Set the value of postcode
  219.      *
  220.      * @return  self
  221.      */ 
  222.     public function setPostcode($postcode)
  223.     {
  224.         $this->postcode $postcode;
  225.         return $this;
  226.     }
  227.     /**
  228.      * Get the value of country
  229.      */ 
  230.     public function getCountry()
  231.     {
  232.         return $this->country;
  233.     }
  234.     /**
  235.      * Set the value of country
  236.      *
  237.      * @return  self
  238.      */ 
  239.     public function setCountry($country)
  240.     {
  241.         $this->country $country;
  242.         return $this;
  243.     }
  244.     /**
  245.      * Get the value of city
  246.      */ 
  247.     public function getCity()
  248.     {
  249.         return $this->city;
  250.     }
  251.     /**
  252.      * Set the value of city
  253.      *
  254.      * @return  self
  255.      */ 
  256.     public function setCity($city)
  257.     {
  258.         $this->city $city;
  259.         return $this;
  260.     }
  261.     /**
  262.      * Get the value of address
  263.      */ 
  264.     public function getAddress()
  265.     {
  266.         return $this->address;
  267.     }
  268.     /**
  269.      * Set the value of address
  270.      *
  271.      * @return  self
  272.      */ 
  273.     public function setAddress($address)
  274.     {
  275.         $this->address $address;
  276.         return $this;
  277.     }
  278.     public function getTotalAmount(){
  279.         $totalAmount 0;
  280.         foreach($this->getOrders() as $singleOrder){
  281.             $totalAmount $totalAmount $singleOrder->getTotalAmount();
  282.         }
  283.         return $totalAmount;
  284.     }
  285.     public function getPayedAmount(): ?float
  286.     {
  287.         return $this->payedAmount;
  288.     }
  289.     public function setPayedAmount(?float $payedAmount): self
  290.     {
  291.         $this->payedAmount $payedAmount;
  292.         return $this;
  293.     }
  294.  /**
  295.     * Get the value of walletPaymentAmount
  296.     */ 
  297.    public function getWalletPaymentAmount()
  298.    {
  299.        return $this->walletPaymentAmount;
  300.    }
  301.    /**
  302.     * Set the value of walletPaymentAmount
  303.     *
  304.     * @return  self
  305.     */ 
  306.    public function setWalletPaymentAmount($walletPaymentAmount)
  307.    {
  308.        $this->walletPaymentAmount $walletPaymentAmount;
  309.        return $this;
  310.    }
  311.        /**
  312.      * Get the value of tokenStripe
  313.      */ 
  314.     public function getTokenStripe()
  315.     {
  316.         return $this->tokenStripe;
  317.     }
  318.     /**
  319.      * Set the value of tokenStripe
  320.      *
  321.      * @return  self
  322.      */ 
  323.     public function setTokenStripe($tokenStripe)
  324.     {
  325.         $this->tokenStripe $tokenStripe;
  326.         return $this;
  327.     }
  328.     public function getPaymentMethod(): ?PaymentMethod
  329.     {
  330.         return $this->paymentMethod;
  331.     }
  332.     public function setPaymentMethod(?PaymentMethod $paymentMethod): self
  333.     {
  334.         $this->paymentMethod $paymentMethod;
  335.         return $this;
  336.     }
  337.     public function getStatus(): ?string
  338.     {
  339.         return $this->status;
  340.     }
  341.     public function setStatus(?string $status): self
  342.     {
  343.         $this->status $status;
  344.         return $this;
  345.     }
  346.     /**
  347.      * @return Collection<int, CustomerWalletPoint>
  348.      */
  349.     public function getCustomerWalletPoints(): Collection
  350.     {
  351.         return $this->customerWalletPoints;
  352.     }
  353.     public function addCustomerWalletPoint(CustomerWalletPoint $customerWalletPoint): self
  354.     {
  355.         if (!$this->customerWalletPoints->contains($customerWalletPoint)) {
  356.             $this->customerWalletPoints->add($customerWalletPoint);
  357.             $customerWalletPoint->setInvoice($this);
  358.         }
  359.         return $this;
  360.     }
  361.     public function removeCustomerWalletPoint(CustomerWalletPoint $customerWalletPoint): self
  362.     {
  363.         if ($this->customerWalletPoints->removeElement($customerWalletPoint)) {
  364.             // set the owning side to null (unless already changed)
  365.             if ($customerWalletPoint->getInvoice() === $this) {
  366.                 $customerWalletPoint->setInvoice(null);
  367.             }
  368.         }
  369.         return $this;
  370.     }
  371.     public function getSource(): ?string
  372.     {
  373.         return $this->source;
  374.     }
  375.     public function setSource(?string $source): self
  376.     {
  377.         $this->source $source;
  378.         return $this;
  379.     }
  380. }