• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/import/compiler/compiler.php
  • Класс: BitrixSaleLocationImportCompileris
  • Вызов: is::showChildren
private function showChildren($pId)
{
	$res = DBFiasTable::getList(array('filter' => array(
		'PARENTGUID' => $pId,
		'ACTSTATUS' => '1',
		'LIVESTATUS' => '1'
	)));
	while($item = $res->fetch())
	{
		$this->output($item);
	}
}