Skip to content

Instantly share code, notes, and snippets.

@luckydevilru
Created August 13, 2021 09:18
Show Gist options
  • Select an option

  • Save luckydevilru/63a459158fecdba0f4c290d70a0b16ee to your computer and use it in GitHub Desktop.

Select an option

Save luckydevilru/63a459158fecdba0f4c290d70a0b16ee to your computer and use it in GitHub Desktop.
Добавить продукт к сделке bitrix24 битрикс коробка
<?
// добавим товар в сделку
if (!empty($productID)) {
$rows[] = [
'PRODUCT_ID' => $productID, //id товара
'QUANTITY' => 1, //количество
];
if ( CCrmProductRow::SaveRows('D', $deal_id, $rows) ) {
writeToLog('Success', 'add to deal');
}else {
writeToLog('failed', 'add to deal');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment