orderStatusHistories = new ArrayCollection(); $this->orderProducts = new ArrayCollection(); $this->creditHistories = new ArrayCollection(); } public function getDateCreated() { $orderStatusHistory = $this->getOrderStatusHistory('new') ; if($orderStatusHistory) { return $orderStatusHistory->getCreatedAt() ; } return null ; } public function getOrderStatusHistory($status) { $orderStatusHistories = $this->getOrderStatusHistories() ; if(count($orderStatusHistories) > 0) { foreach($orderStatusHistories as $orderStatusHistory) { if($orderStatusHistory->getOrderStatus() == $status) { return $orderStatusHistory ; } } } return null ; } public function getMerchant(): ?Merchant { return $this->merchant; } public function setMerchant(?Merchant $merchant): self { $this->merchant = $merchant; return $this; } public function getUser(): ?User { return $this->user; } public function setUser(?User $user): self { $this->user = $user; return $this; } public function getInvoiceAddress(): ?Address { return $this->invoiceAddress; } public function setInvoiceAddress(?Address $invoiceAddress): self { $this->invoiceAddress = $invoiceAddress; return $this; } public function getComment(): ?string { return $this->comment; } public function setComment(?string $comment): self { $this->comment = $comment; return $this; } public function getAutoPayment(): ?bool { return $this->autoPayment; } public function setAutoPayment(bool $autoPayment): self { $this->autoPayment = $autoPayment; return $this; } public function getMeanPayment(): ?string { return $this->meanPayment; } public function setMeanPayment(string $meanPayment): self { $this->meanPayment = $meanPayment; return $this; } /** * @return Collection|OrderStatusHistory[] */ public function getOrderStatusHistories(): Collection { return $this->orderStatusHistories; } public function addOrderStatusHistory(OrderStatusHistory $orderStatusHistory): self { if (!$this->orderStatusHistories->contains($orderStatusHistory)) { $this->orderStatusHistories[] = $orderStatusHistory; $orderStatusHistory->setOrderShop($this); } return $this; } public function removeOrderStatusHistory(OrderStatusHistory $orderStatusHistory): self { if ($this->orderStatusHistories->contains($orderStatusHistory)) { $this->orderStatusHistories->removeElement($orderStatusHistory); // set the owning side to null (unless already changed) if ($orderStatusHistory->getOrderShop() === $this) { $orderStatusHistory->setOrderShop(null); } } return $this; } /** * @return Collection|OrderProduct[] */ public function getOrderProducts(): Collection { return $this->orderProducts; } public function addOrderProduct(OrderProduct $orderProduct): self { if (!$this->orderProducts->contains($orderProduct)) { $this->orderProducts[] = $orderProduct; $orderProduct->setOrderShop($this); } return $this; } public function removeOrderProduct(OrderProduct $orderProduct): self { if ($this->orderProducts->contains($orderProduct)) { $this->orderProducts->removeElement($orderProduct); // set the owning side to null (unless already changed) if ($orderProduct->getOrderShop() === $this) { $orderProduct->setOrderShop(null); } } return $this; } /** * @return Collection|CreditHistory[] */ public function getCreditHistories(): Collection { return $this->creditHistories; } public function addCreditHistory(CreditHistory $creditHistory): self { if (!$this->creditHistories->contains($creditHistory)) { $this->creditHistories[] = $creditHistory; $creditHistory->setOrderShop($this); } return $this; } public function removeCreditHistory(CreditHistory $creditHistory): self { if ($this->creditHistories->contains($creditHistory)) { $this->creditHistories->removeElement($creditHistory); // set the owning side to null (unless already changed) if ($creditHistory->getOrderShop() === $this) { $creditHistory->setOrderShop(null); } } return $this; } public function getDocumentInvoice(): ?DocumentInvoice { return $this->documentInvoice; } public function setDocumentInvoice(?DocumentInvoice $documentInvoice): self { $this->documentInvoice = $documentInvoice; return $this; } public function getDocumentQuotation(): ?DocumentQuotation { return $this->documentQuotation; } public function setDocumentQuotation(?DocumentQuotation $documentQuotation): self { $this->documentQuotation = $documentQuotation; return $this; } public function getDocumentDeliveryNote(): ?DocumentDeliveryNote { return $this->documentDeliveryNote; } public function setDocumentDeliveryNote(?DocumentDeliveryNote $documentDeliveryNote): self { $this->documentDeliveryNote = $documentDeliveryNote; return $this; } public function getVisitor(): ?Visitor { return $this->visitor; } public function setVisitor(?Visitor $visitor): self { $this->visitor = $visitor; return $this; } public function getInfosDelivery(): ?string { return $this->infosDelivery; } public function setInfosDelivery(?string $infosDelivery): self { $this->infosDelivery = $infosDelivery; return $this; } }