• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/session/update.php
  • Класс: BitrixImOpenLinesSessionUpdate
  • Вызов: Update::checkIfWaitAction
private function checkIfWaitAction(): bool
{
	return (
			$this->session->getSessionField('WAIT_ACTION') === 'Y'
			&& $this->newData['WAIT_ACTION'] !== 'N'
		)
		||
		(
			isset($this->newData['WAIT_ACTION'])
			&& $this->newData['WAIT_ACTION'] === 'Y'
		);
}