1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
inventorytree.php
См. документацию.
1<?php
2namespace Bitrix\Catalog\Product\Store\BatchBalancer;
3
4use Bitrix\Catalog\Product\Store\BatchBalancer\Entity\StoreItem;
5use Bitrix\Main\Result;
6use Bitrix\Catalog\Product\Store\BatchBalancer\Entity\ElementBatchItem;
7
13abstract class InventoryTree extends \ArrayObject
14{
15 public function save(): Result
16 {
17 $result = new Result();
18 foreach ($this->getIterator() as $item)
19 {
20 $item->save();
21 }
22
23 return $result;
24 }
25}
$result
Определения get_property_values.php:14