1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
increasestorequantityaction.php
См. документацию.
1<?php
2
3namespace Bitrix\Catalog\Document\Action\Store;
4
5use Bitrix\Catalog\Document\Action;
6use Bitrix\Main\Result;
7
12{
14
18 public function canExecute(): Result
19 {
20 return new Result();
21 }
22
26 protected function getProductAmountNew(): float
27 {
28 return $this->getStoreProductAmount() + $this->amount;
29 }
30}