1
0
mirror of synced 2024-11-23 13:56:08 +03:00
bitrix-module/intaro.retailcrm/lib/model/bitrix/xml/unit.php

50 lines
1.0 KiB
PHP
Raw Normal View History

2021-05-31 16:33:02 +03:00
<?php
/**
* @category Integration
* @package Intaro\RetailCrm\Model\Bitrix\Xml
2021-05-31 16:33:02 +03:00
* @author RetailCRM <integration@retailcrm.ru>
* @license MIT
* @link http://retailcrm.ru
* @see http://retailcrm.ru/docs
*/
namespace Intaro\RetailCrm\Model\Bitrix\Xml;
/**
* единица измерения для товара, элемент не является обязательным в icml
*
* Class Unit
* @package Intaro\RetailCrm\Model\Bitrix\Xml
*/
class Unit
{
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $code;
/**
* единица измерения товара
*
* @var string
*/
public $sym;
/**
* @param \Intaro\RetailCrm\Model\Bitrix\Xml\Unit|null $unitCode
* @return \Intaro\RetailCrm\Model\Bitrix\Xml\Unit
*/
public function merge(?Unit $unitCode): Unit
{
if ($this->code === null && $unitCode !== null) {
return $unitCode;
}
return $this;
}
}