Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

разное количество данных при одном и том же запросе #7

Open
a-kuimov opened this issue Nov 12, 2021 · 0 comments

Comments

@a-kuimov
Copy link

a-kuimov commented Nov 12, 2021

Составил запрос, при помощи вашей библиотеки, при каждой отправке запроса, приходят разные данные, что я делаю не так?
мой запрос:

`function getCalls() {
$startDate = $_POST['startDate'];
$endDate = $_POST['endDate'];
$select = json_decode($_POST['select']);
$departmentId = json_decode($_POST['users']);
$leadID = 0;
$finish = false;
$finalResult = [];

while (!$finish)
{
    /**
     * Выполняем пока не заберем все данные, в этом случае не стоит забывать и про задержку между хитами.
     * Либо каждый раз выбираем только 50, начиная с того элемента, на котором остановилась прошлая итерация
     */

    $users = CRest::call(
        'voximplant.statistic.get',
        [
            'order' => ['ID' => 'ASC'],
            'select' => $select,
            'filter' => [
                '>ID' => $leadID,
                'PORTAL_USER_ID' => $departmentId,
                'CALL_TYPE' => 1,
                ">CALL_START_DATE" => $startDate.'T00:00:00',
                "<CALL_START_DATE" => $endDate.'T23:59:59',
            ],
            'start' => -1
        ]
    );

    if (count($users['result']) > 0)
    {
        foreach ($users['result'] as $lead)
        {
            $leadID = $lead['ID'];
            $subResult = [];
            foreach ($select as $value) {
                $subResult[$value] = $lead[$value];
            }
            $finalResult[] = $subResult;
        }
        // Do something
    }
    else
    {
        $finish = true;
    }
}

echo json_encode($finalResult);

}`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant