1
0
Fork 0
mirror of synced 2025-04-03 13:53:32 +03:00
This commit is contained in:
ellynoize 2025-01-29 09:28:35 +03:00
parent 81bfe0cbbc
commit b8120c86ea

View file

@ -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);
}
}