Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MasterHans/9757df9323562309300c7aee63e8e3ff to your computer and use it in GitHub Desktop.
Save MasterHans/9757df9323562309300c7aee63e8e3ff to your computer and use it in GitHub Desktop.
1С Битрикс - получаем свойства товара по коду товара и инфоблока
//Получаем значение свойств товара
$db_props = CIBlockElement::GetProperty(
MAIN_CATALOG_IB_ID,
$ob->fields['ID'],
array("sort" => "asc"),
Array("CODE" => "BREND_TOVARA")
);
if ($ar_props = $db_props->Fetch())
$PROP = $ar_props["VALUE"];
else
$PROP = 'Бренд не инайден!!!';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment