Last active
March 23, 2022 14:09
-
-
Save luckydevilru/ef15c22f12f5663bfe0b17f4eb42f0a5 to your computer and use it in GitHub Desktop.
Получить get список list товаров products сделки deal или лида lead
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
| <?php | |
| // Получить список товаров у сделки или лида bitrix 24 коробка | |
| // D = Deal, L = Lead; | |
| if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true){ | |
| require_once($_SERVER["DOCUMENT_ROOT"] . "/bitrix/modules/main/include/prolog_before.php"); | |
| } | |
| CModule::IncludeModule("crm"); | |
| CCrmProductRow::LoadRows($ownerType = 'D', $ownerID = $deal_id, $assoc = false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment