fix import of parts containing shopping information (#594)

This commit is contained in:
Henning Kleen 2024-04-15 21:32:04 +02:00 committed by GitHub
parent 9770ffa46b
commit 835b954140
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -75,7 +75,7 @@ class Pricedetail extends AbstractDBElement implements TimeStampableInterface
/** /**
* @var BigDecimal The price related to the detail. (Given in the selected currency) * @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)] #[ORM\Column(type: 'big_decimal', precision: 11, scale: 5)]
#[BigDecimalPositive] #[BigDecimalPositive]
protected BigDecimal $price; protected BigDecimal $price;