From b8120c86eac99f9fd5748d9378ba9125af9f94ae Mon Sep 17 00:00:00 2001 From: ellynoize Date: Wed, 29 Jan 2025 09:28:35 +0300 Subject: [PATCH] write 0 --- intaro.retailcrm/lib/icml/icmlwriter.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/intaro.retailcrm/lib/icml/icmlwriter.php b/intaro.retailcrm/lib/icml/icmlwriter.php index e9f00353..876db677 100644 --- a/intaro.retailcrm/lib/icml/icmlwriter.php +++ b/intaro.retailcrm/lib/icml/icmlwriter.php @@ -175,8 +175,10 @@ class IcmlWriter */ private function writeOptionalSimpleElement(string $name, $value, bool $isEmptyAllowed = false): void { - if (!empty($value) || $isEmptyAllowed) { + if (!empty($value)) { $this->writeSimpleElement($name, $value); + } elseif ($isEmptyAllowed && $name === 'purchasePrice') { + $this->writeSimpleElement($name, 0); } }