1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
deletestorebarcodeaction.php
См. документацию.
1<?php
2
3namespace Bitrix\Catalog\Document\Action\Barcode;
4
5use Bitrix\Catalog\Document\Action;
6use Bitrix\Main\Result;
7use CCatalogStoreBarCode;
8
13{
15
19 public function canExecute(): Result
20 {
21 return new Result();
22 }
23
29 public function execute(): Result
30 {
31 $result = new Result();
32
33 $row = $this->getBarcodeRow();
34 if ($row)
35 {
36 CCatalogStoreBarCode::delete($row['ID']);
37 }
38
39 return $result;
40 }
41}
$result
Определения get_property_values.php:14