1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
basestorebarcodeaction.php
См. документацию.
1<?php
2
3namespace Bitrix\Catalog\Document\Action\Barcode;
4
5use Bitrix\Catalog\StoreBarcodeTable;
6
11{
15 protected $storeId;
16
20 protected $productId;
21
25 protected $barcode;
26
30 protected $userId;
31
38 public function __construct(
39 ?int $storeId,
40 int $productId,
41 string $barcode,
42 int $userId
43 )
44 {
45 $this->storeId = $storeId;
46 $this->productId = $productId;
47 $this->barcode = $barcode;
48 $this->userId = $userId;
49 }
50
56 protected function getBarcodeRow(): ?array
57 {
59 'select' => [
60 'ID',
61 'STORE_ID',
62 'PRODUCT_ID',
63 'BARCODE',
64 ],
65 'filter' => [
66 '=BARCODE' => $this->barcode,
67 ],
68 ]) ?: null;
69 }
70}
static getRow(array $parameters)
Определения datamanager.php:398
</td ></tr ></table ></td ></tr >< tr >< td class="bx-popup-label bx-width30"><?=GetMessage("PAGE_NEW_TAGS")?> array( $site)
Определения file_new.php:804
__construct(?int $storeId, int $productId, string $barcode, int $userId)
Определения basestorebarcodeaction.php:38