$propertyCollection = $order->getPropertyCollection();
foreach ($propertyCollection->getGroups() as $group)
{
foreach ($propertyCollection->getGroupProperties($group['ID']) as $property)
{
$p = $property->getProperty();
if($p["CODE"] == "LOCATION")
$property->setValue($location);
}
}
// Устанавливаем свойства
$info = ['YOUR_FAMILY'=>$name,'YOUR_PHONE'=>$phone,'YOUR_EMAIL'=>$email, 'LOCATION' => $location];
$c = $order->getPropertyCollection();
foreach($c->getGroups() as $g) foreach($c->getGroupProperties($g['ID']) as $p) {
$a = $p->getProperty()['CODE'];
if(isset($info[$a])) $p->setValue($info[$a]);
}
<div class="container-custom">
<div class="owl-carousel partners-carousel owl-theme">
<?
$IBLOCK_ID = 6;
$arSelect = array("ID", "IBLOCK_ID", "NAME", "DATE_ACTIVE_FROM", "PROPERTY_*", "PREVIEW_PICTURE");
$arFilter = array("IBLOCK_ID" => $IBLOCK_ID, "ACTIVE_DATE" => "Y", "ACTIVE" => "Y");
$res = CIBlockElement::GetList(array('SORT' => 'ASC'), $arFilter, false, false, $arSelect);
while ($ob = $res->GetNextElement()) {
$arFields = $ob->GetFields();
$arProps = $ob->GetProperties();
$img = CFile::GetPath($arFields['PREVIEW_PICTURE']);
?>
<div class="carousel__item">
<a href="<?=$arFields['DETAIL_PAGE_URL']?>"><img class="carosel__img" src="<?= $img ?>" alt=""></a>
</div>
<?
}
?>
</div>
</div>
Сделайте статус "брак в заказе", тип статуса - "заказ" и если есть брак то переводите его в этот статус, по нему можно фильтровать, в подробности пишите что за товар и что не так