From 3a2e9a8840fa92f0a02e9d360ed9ecb01184e290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bar=C3=A1=C5=A1ek?= Date: Sun, 13 Nov 2022 14:18:04 +0100 Subject: [PATCH] Add getPickupCode and isRealProduct method. --- src/DTO/OrderInterface.php | 2 ++ src/DTO/OrderItemInterface.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/DTO/OrderInterface.php b/src/DTO/OrderInterface.php index 2f4ea51..c73ac87 100644 --- a/src/DTO/OrderInterface.php +++ b/src/DTO/OrderInterface.php @@ -117,6 +117,8 @@ public function getPackageNumber(): ?string; public function getNotice(): ?string; + public function getPickupCode(): ?string; + /** * The date and time the order was created or entered into the system. * Order dates must be in the same order as the order numbers. diff --git a/src/DTO/OrderItemInterface.php b/src/DTO/OrderItemInterface.php index c9f27e6..143c247 100644 --- a/src/DTO/OrderItemInterface.php +++ b/src/DTO/OrderItemInterface.php @@ -37,6 +37,8 @@ public function getProduct(): ProductInterface; public function getVariant(): ?ProductVariantInterface; + public function isRealProduct(): bool; + public function getManufacturer(): ?ManufacturerInterface; public function getEan(): ?string;