From 7b865d9bc9cea731cc1dcfa07aabdb095cfa7c85 Mon Sep 17 00:00:00 2001 From: Henning Kleen Date: Mon, 15 Apr 2024 10:11:34 +0200 Subject: [PATCH] fix import of parts containing shopping information --- 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;