From 835b954140ca1e54a7545385d68c8cbf812a7867 Mon Sep 17 00:00:00 2001 From: Henning Kleen Date: Mon, 15 Apr 2024 21:32:04 +0200 Subject: [PATCH] fix import of parts containing shopping information (#594) --- src/Entity/PriceInformations/Pricedetail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/PriceInformations/Pricedetail.php b/src/Entity/PriceInformations/Pricedetail.php index 87e5221a..98d4a491 100644 --- a/src/Entity/PriceInformations/Pricedetail.php +++ b/src/Entity/PriceInformations/Pricedetail.php @@ -75,7 +75,7 @@ class Pricedetail extends AbstractDBElement implements TimeStampableInterface /** * @var BigDecimal The price related to the detail. (Given in the selected currency) */ - #[Groups(['extended', 'full', 'pricedetail:read', 'pricedetail:write'])] + #[Groups(['extended', 'full', 'import', 'pricedetail:read', 'pricedetail:write'])] #[ORM\Column(type: 'big_decimal', precision: 11, scale: 5)] #[BigDecimalPositive] protected BigDecimal $price;