write 0
This commit is contained in:
parent
81bfe0cbbc
commit
b8120c86ea
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue