Created
August 13, 2021 09:18
-
-
Save luckydevilru/63a459158fecdba0f4c290d70a0b16ee to your computer and use it in GitHub Desktop.
Добавить продукт к сделке bitrix24 битрикс коробка
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <? | |
| // добавим товар в сделку | |
| 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