1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
batch.php
См. документацию.
1<?php
2
3
4namespace Bitrix\Sale\Exchange\Integration\Rest\Cmd;
5
6
7class Batch extends Base
8{
9 const HALT_DESABLE = 0;
10 const CMD_PAGE = 'batch';
11
12 public function __construct()
13 {
14 parent::__construct();
15 $this->page = static::CMD_PAGE;
16 }
17
18 public function fill()
19 {
20 $this->query->set('halt', static::HALT_DESABLE);
21 return $this;
22 }
23}