1
0
Fork 0
mirror of synced 2025-04-03 13:53:32 +03:00

method writeOptionalPurchasePrice

This commit is contained in:
ellynoize 2025-01-29 11:58:54 +03:00
parent b8120c86ea
commit 0d775d736c

View file

@ -163,7 +163,7 @@ class IcmlWriter
$this->writeOptionalSimpleElement('vatRate', $offer->vatRate);
$this->writeOptionalSimpleElement('weight', $offer->weight);
$this->writeOptionalSimpleElement('dimensions', $offer->dimensions);
$this->writeOptionalSimpleElement('purchasePrice', $offer->purchasePrice, true);
$this->writeOptionalPurchasePrice($offer->purchasePrice);
$this->writer->endElement();
}
@ -173,15 +173,23 @@ class IcmlWriter
* @param string $name
* @param $value
*/
private function writeOptionalSimpleElement(string $name, $value, bool $isEmptyAllowed = false): void
private function writeOptionalSimpleElement(string $name, $value): void
{
if (!empty($value)) {
$this->writeSimpleElement($name, $value);
} elseif ($isEmptyAllowed && $name === 'purchasePrice') {
$this->writeSimpleElement($name, 0);
}
}
/**
* Запись закупочной стоимости
*
* @param $value
*/
private function writeOptionalPurchasePrice($value): void
{
$this->writeSimpleElement('purchasePrice', !empty($value) ? $value : 0);
}
/**
* @param string $name
* @param $value