2024-06-20 09:39:55 +02:00
|
|
|
---
|
2024-07-10 10:59:55 +02:00
|
|
|
sidebar_position: 2
|
2024-06-20 09:39:55 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# Get tasks list
|
|
|
|
Get tasks list (50 at one response max))
|
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
`Function GetTasksList(Val URL, Val Filter = "", Val Indent = 0, Val Token = "") Export`
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
|
2024-07-15 21:16:10 +02:00
|
|
|
| Filter | --filter | Structure of KeyAndValue | Structure of task filter (see GetTaskFieldsStructure) |
|
2024-06-20 09:39:55 +02:00
|
|
|
| Indent | --offset | Number, String | Offset of tasks list |
|
2024-07-15 21:16:10 +02:00
|
|
|
| Token | --token | String | Access token, when app auth method used |
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
|
|
|
|
2024-07-10 13:05:58 +02:00
|
|
|
<br/>
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-14 17:23:26 +02:00
|
|
|
:::tip
|
|
|
|
Method at API documentation: [tasks.task.list](https://dev.1c-bitrix.ru/rest_help/tasks/task/tasks/tasks_task_list.php)
|
|
|
|
:::
|
|
|
|
<br/>
|
2024-07-10 12:58:29 +02:00
|
|
|
|
|
|
|
|
2024-06-20 09:39:55 +02:00
|
|
|
```bsl title="Code example"
|
2024-07-10 13:24:11 +02:00
|
|
|
// Full filter structer you can find at GetTasksFilterStructure method
|
2024-06-20 09:39:55 +02:00
|
|
|
Filter = New Structure;
|
|
|
|
Filter.Insert("CREATED_BY", 1);
|
|
|
|
Filter.Insert("RESPONSIBLE_ID", 10);
|
|
|
|
|
|
|
|
Indent = 1;
|
2024-08-12 18:30:17 +02:00
|
|
|
URL = "https://b24-ar17wx.bitrix24.by/rest/1/f2ppp8uucc891111/";
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
Result = OPI_Bitrix24.GetTasksList(URL, Filter);
|
|
|
|
|
|
|
|
URL = "b24-ar17wx.bitrix24.by";
|
2024-08-09 16:15:52 +02:00
|
|
|
Token = "fe3fa966006e9f06006b12e400000001000...";
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
Result = OPI_Bitrix24.GetTasksList(URL,, Indent, Token);
|
|
|
|
```
|
2024-07-10 10:59:55 +02:00
|
|
|
|
|
|
|
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
2024-06-21 08:25:14 +02:00
|
|
|
oint bitrix24 GetTasksList --url "b24-ar17wx.bitrix24.by" --filter %filter% --offset %offset% --token "b9df7366006e9f06006b12e400000001000..."
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-07-10 13:11:17 +02:00
|
|
|
{
|
2024-06-20 09:39:55 +02:00
|
|
|
"result": {
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"id": "2",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T12:55:13+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T12:55:13+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-15T12:55:13+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-25T12:55:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{9f511c6f-eca4-4cc2-9164-90b2b86f0d29}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": null,
|
|
|
|
"serviceCommentsCount": null,
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": null,
|
|
|
|
"forumId": null,
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-15T16:13:41+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T12:55:13+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "2"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "4",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T13:05:37+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T13:05:37+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T13:25:27+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T13:05:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{c496405d-166b-4ac9-af68-abe59e47030f}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "58",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T13:25:27+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T13:05:37+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "6",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T13:06:44+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T13:06:44+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T13:25:26+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T13:06:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{2a2d4026-e8cd-4a58-a08d-c96134eda4bb}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "54",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T13:25:27+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T13:06:44+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "8",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T13:06:52+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T13:06:52+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T13:25:27+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T13:06:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{58c195ca-a0b4-4076-b322-242f40cf79d6}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "56",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T13:25:27+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T13:06:52+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "10",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T15:49:19+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T15:49:19+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:39+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T15:49:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{40ef95af-a69e-4fb6-a305-2a9784c0c54c}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "60",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T15:49:19+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "12",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T15:49:19+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T15:49:19+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T15:49:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{7a391d29-6d4c-4cc3-b369-fb3f8afb9094}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "62",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T15:49:19+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "14",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T15:50:02+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T15:50:02+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T15:50:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{a8ef3aa8-5086-42f7-b009-776a274413d2}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "64",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T15:50:02+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "16",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T15:50:03+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T15:50:03+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T15:50:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{dd6308af-53c2-4c39-8a5c-396dfeabd75b}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "66",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T15:50:03+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "18",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T15:50:55+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T15:50:55+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T15:50:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{0e7b1e63-7381-481f-82f6-281d21df3fcb}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "68",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T15:50:55+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "20",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T15:50:55+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T15:50:55+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T15:50:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{3fcc4b2e-a4d2-4c8f-bdce-2c0fb1f4b06f}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "70",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T15:50:55+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "22",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T15:51:35+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T15:51:35+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T15:51:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{01891aa0-f1b0-4d5f-af76-d3bf1b2b1ba0}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "72",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T15:51:35+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "24",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T15:51:36+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T15:51:36+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:40+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T15:51:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{2901bef8-9310-41dc-af22-b9464ed06b9a}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "74",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T15:51:36+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "28",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T15:52:17+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T15:52:17+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T15:52:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{7f9cf95f-5806-4059-98b1-d4d093f1783c}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "76",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T15:52:17+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "30",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:08:44+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:08:44+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:08:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{ad354a52-f16e-4fa6-8db2-b2293728ecbf}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "78",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:08:44+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "32",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:08:44+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:08:44+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:08:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{089ad17e-75ec-4752-bb4d-55ec99dfd5eb}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "80",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:08:44+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "34",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:09:07+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:09:07+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:09:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{3f5fd6fa-c7b5-48d7-bb35-246bbd253a46}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "82",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:09:07+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "36",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:09:07+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:09:07+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:09:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{7ab30c2c-4b39-48f2-b8ea-07b9a136e970}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "84",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:09:07+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "38",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:09:46+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:09:46+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:09:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{34bc0af7-6b68-4c57-b494-73b2f6746d06}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "86",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:09:46+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "40",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:09:47+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:09:47+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:41+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:09:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{6fedbc57-0f32-428f-801a-c456dbb78281}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "88",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:09:47+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "42",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:10:50+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:10:50+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:10:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{a176a7e4-9aef-40f9-86c3-1e8310c90890}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "90",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:10:50+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "44",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:10:50+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:10:50+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:10:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{6abae9da-ce99-4981-b662-ae2dc83248df}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "92",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:10:50+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "46",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:11:55+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:11:55+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:11:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{139c98d2-1c5b-4a2c-9982-96e6e5bb7489}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "94",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:11:55+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "48",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:11:55+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:11:55+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:11:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{fda18cfb-cac3-482f-83ae-ae27747461f9}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "96",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:11:55+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "50",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:14:00+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:14:00+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:14:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{7afe4657-621a-4953-b72d-ffbc043382ca}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "2",
|
|
|
|
"serviceCommentsCount": "2",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "2",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:14:00+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "52",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:14:01+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:14:01+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:14:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{67bac078-8d56-49ac-8acf-987a19c12b24}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "98",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:14:01+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "54",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:15:01+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:15:01+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:15:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{a93e8fe0-0874-4a63-87d3-d2573b40fbff}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "100",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:42+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:15:01+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "56",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "New task",
|
|
|
|
"description": "New task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "2",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:15:01+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:15:01+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:15:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{8a0026ef-9cda-40a7-856b-9344e3a6e10d}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "102",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "1",
|
|
|
|
"viewedDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:15:01+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "66",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:22:59+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:23:05+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:23:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{50aa37cb-d252-4430-b777-e9eecd8ea69e}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "2",
|
|
|
|
"serviceCommentsCount": "2",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "4",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "2",
|
|
|
|
"viewedDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:23:05+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "68",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:22:59+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:23:05+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:23:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{a133ee61-a1e6-4ed4-9d84-80de178cab51}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "2",
|
|
|
|
"serviceCommentsCount": "2",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "6",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "2",
|
|
|
|
"viewedDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:23:05+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "70",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:23:23+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:23:29+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:23:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{50447dc7-9c91-4596-9f79-07fa0521368b}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "104",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "2",
|
|
|
|
"viewedDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:23:29+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "72",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:23:23+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:23:29+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:23:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{ac718c30-a913-4fd9-8b56-bf93e14a4c83}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "106",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "2",
|
|
|
|
"viewedDate": "2024-06-16T19:26:43+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:23:29+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "74",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:25:43+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:25:49+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:25:49+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:25:49+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:25:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{4ff465c2-e541-4930-8faf-c2db0c6c5c34}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "8",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "3",
|
|
|
|
"viewedDate": "2024-06-15T16:25:49+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:25:49+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "76",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:25:43+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:25:50+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:25:50+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:25:50+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:25:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{f434a189-13f2-40d0-bcf3-e6452b83f24c}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "10",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "3",
|
|
|
|
"viewedDate": "2024-06-15T16:25:50+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:25:50+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "78",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:27:37+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:27:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{371e443a-de25-4080-ba44-781e5cb5e0ec}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "3",
|
|
|
|
"serviceCommentsCount": "3",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "12",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "5",
|
|
|
|
"viewedDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "80",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:27:37+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:27:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{65f28504-7bc3-4d70-8251-c9493f63fd95}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "3",
|
|
|
|
"serviceCommentsCount": "3",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "14",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "5",
|
|
|
|
"viewedDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:27:46+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "82",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:28:05+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:28:13+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:28:13+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:28:13+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:28:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{3b4f75c0-b1ca-4ed0-b88c-452d2160bfb9}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "3",
|
|
|
|
"serviceCommentsCount": "3",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "16",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "5",
|
|
|
|
"viewedDate": "2024-06-15T16:29:00+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:28:13+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "84",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:28:05+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:28:14+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:28:14+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:28:14+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:28:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{58e2691e-e3b5-400c-8949-d545a95fe901}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "3",
|
|
|
|
"serviceCommentsCount": "3",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "18",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "5",
|
|
|
|
"viewedDate": "2024-06-15T16:28:56+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:28:14+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "86",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:29:47+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:32:36+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:32:36+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:32:36+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:29:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{424fc219-6b67-4739-846f-eec2a8d96ea9}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "3",
|
|
|
|
"serviceCommentsCount": "3",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "20",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "5",
|
|
|
|
"viewedDate": "2024-06-15T16:32:36+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:32:36+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "88",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:29:47+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:29:55+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "0",
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:39+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:29:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{3516d37d-1b09-4580-89d5-45329152261f}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "3",
|
|
|
|
"serviceCommentsCount": "3",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "22",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "4",
|
|
|
|
"viewedDate": "2024-06-16T19:26:39+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:29:55+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "90",
|
|
|
|
"parentId": "0",
|
|
|
|
"title": "12312",
|
|
|
|
"description": "",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:32:49+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:33:00+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:33:00+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:33:00+00:00",
|
|
|
|
"dateStart": "2024-06-15T16:32:59+00:00",
|
|
|
|
"deadline": null,
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{efaf06d8-7c64-4ce5-9af8-2eb33f141f77}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "Y",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "24",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "3",
|
|
|
|
"viewedDate": "2024-06-15T16:33:01+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:33:00+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "92",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:34:01+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:34:07+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:34:07+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:34:07+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:34:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{02efc460-9df9-4f01-9a4a-b67b9c75a1ac}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "26",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "3",
|
|
|
|
"viewedDate": "2024-06-15T16:34:46+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:34:07+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "94",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:34:01+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:34:08+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "1",
|
|
|
|
"closedDate": "2024-06-15T16:34:08+00:00",
|
|
|
|
"activityDate": "2024-06-15T16:34:08+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-16T16:34:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{da6fe4a4-2551-4d8c-b90a-349c32bd7905}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "28",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "3",
|
|
|
|
"viewedDate": "2024-06-15T16:34:08+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "5",
|
|
|
|
"statusChangedDate": "2024-06-15T16:34:08+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "5"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "100",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:45:05+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:45:16+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "0",
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:39+00:00",
|
|
|
|
"dateStart": "2024-06-15T16:45:14+00:00",
|
|
|
|
"deadline": "2024-06-16T16:45:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{fb866b3f-b2e5-47e7-aaee-5b5f7fe515a3}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "4",
|
|
|
|
"serviceCommentsCount": "4",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "34",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "9",
|
|
|
|
"viewedDate": "2024-06-16T19:26:39+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:45:16+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "102",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-15T16:45:05+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-15T16:45:16+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "0",
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-16T19:26:39+00:00",
|
|
|
|
"dateStart": "2024-06-15T16:45:14+00:00",
|
|
|
|
"deadline": "2024-06-16T16:45:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{b1b83f76-af6c-45c7-9b3c-37e2d1d7d0d0}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "4",
|
|
|
|
"serviceCommentsCount": "4",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "36",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "9",
|
|
|
|
"viewedDate": "2024-06-16T19:26:39+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-15T16:45:16+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "116",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-16T12:58:23+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-16T12:58:29+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-17T12:58:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{e6795ea2-966f-443f-92d6-4b1ef8e7da5a}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "128",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "2",
|
|
|
|
"viewedDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-16T12:58:29+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "Y",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "118",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-16T12:58:24+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-16T12:58:29+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-17T12:58:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{09188555-094d-418e-bde2-b8e2456244ed}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "130",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "2",
|
|
|
|
"viewedDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-16T12:58:29+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "120",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-16T12:59:47+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-16T12:59:52+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-17T12:59:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{abb99bd8-9f78-43de-a1d7-5f3884ba5bb5}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "132",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "2",
|
|
|
|
"viewedDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-16T12:59:52+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "122",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-16T12:59:47+00:00",
|
|
|
|
"responsibleId": "1",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-16T12:59:52+00:00",
|
|
|
|
"statusChangedBy": null,
|
|
|
|
"closedBy": null,
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"dateStart": null,
|
|
|
|
"deadline": "2024-06-17T12:59:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{e176de44-477e-48f3-a120-92cc4bbfbcb7}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "1",
|
|
|
|
"serviceCommentsCount": "1",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "134",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "2",
|
|
|
|
"viewedDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-16T12:59:52+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "128",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-16T19:26:39+00:00",
|
|
|
|
"responsibleId": "10",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-16T19:26:51+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "0",
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"dateStart": "2024-06-16T19:26:50+00:00",
|
|
|
|
"deadline": "2024-06-17T19:26:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{2bad8423-fb8c-4298-a18f-19d7b204693e}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "4",
|
|
|
|
"serviceCommentsCount": "4",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "108",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "9",
|
|
|
|
"viewedDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-16T19:26:51+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "10",
|
|
|
|
"name": "Techno Pizza",
|
|
|
|
"link": "/company/personal/user/10/",
|
|
|
|
"icon": "/bitrix/images/tasks/default_avatar.png",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "130",
|
|
|
|
"parentId": null,
|
|
|
|
"title": "Another task title",
|
|
|
|
"description": "Another task description",
|
|
|
|
"mark": null,
|
|
|
|
"priority": "1",
|
|
|
|
"multitask": "N",
|
|
|
|
"notViewed": "N",
|
|
|
|
"replicate": "N",
|
|
|
|
"stageId": "0",
|
|
|
|
"createdBy": "1",
|
|
|
|
"createdDate": "2024-06-16T19:26:39+00:00",
|
|
|
|
"responsibleId": "10",
|
|
|
|
"changedBy": "1",
|
|
|
|
"changedDate": "2024-06-16T19:26:52+00:00",
|
|
|
|
"statusChangedBy": "1",
|
|
|
|
"closedBy": "0",
|
|
|
|
"closedDate": null,
|
|
|
|
"activityDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"dateStart": "2024-06-16T19:26:50+00:00",
|
|
|
|
"deadline": "2024-06-17T19:26:00+00:00",
|
|
|
|
"startDatePlan": null,
|
|
|
|
"endDatePlan": null,
|
|
|
|
"guid": "{54368faa-c02b-4874-9822-5a8d53402f72}",
|
|
|
|
"xmlId": null,
|
|
|
|
"commentsCount": "4",
|
|
|
|
"serviceCommentsCount": "4",
|
|
|
|
"allowChangeDeadline": "N",
|
|
|
|
"allowTimeTracking": "N",
|
|
|
|
"taskControl": "N",
|
|
|
|
"addInReport": "N",
|
|
|
|
"forkedByTemplateId": null,
|
|
|
|
"timeEstimate": "0",
|
|
|
|
"timeSpentInLogs": null,
|
|
|
|
"matchWorkTime": "N",
|
|
|
|
"forumTopicId": "110",
|
|
|
|
"forumId": "11",
|
|
|
|
"siteId": "s1",
|
|
|
|
"subordinate": "N",
|
|
|
|
"exchangeModified": null,
|
|
|
|
"exchangeId": null,
|
|
|
|
"outlookVersion": "9",
|
|
|
|
"viewedDate": "2024-06-18T17:11:17+00:00",
|
|
|
|
"sorting": null,
|
|
|
|
"durationFact": null,
|
|
|
|
"isMuted": "N",
|
|
|
|
"isPinned": "N",
|
|
|
|
"isPinnedInGroup": "N",
|
|
|
|
"flowId": null,
|
|
|
|
"descriptionInBbcode": "Y",
|
|
|
|
"status": "2",
|
|
|
|
"statusChangedDate": "2024-06-16T19:26:52+00:00",
|
|
|
|
"durationPlan": null,
|
|
|
|
"durationType": "days",
|
|
|
|
"favorite": "N",
|
|
|
|
"groupId": "0",
|
|
|
|
"auditors": [],
|
|
|
|
"accomplices": [],
|
|
|
|
"newCommentsCount": 0,
|
|
|
|
"group": [],
|
|
|
|
"creator": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "Anton Titovets",
|
|
|
|
"link": "/company/personal/user/1/",
|
|
|
|
"icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"responsible": {
|
|
|
|
"id": "10",
|
|
|
|
"name": "Techno Pizza",
|
|
|
|
"link": "/company/personal/user/10/",
|
|
|
|
"icon": "/bitrix/images/tasks/default_avatar.png",
|
|
|
|
"workPosition": null
|
|
|
|
},
|
|
|
|
"accomplicesData": [],
|
|
|
|
"auditorsData": [],
|
|
|
|
"subStatus": "-1"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"next": 50,
|
|
|
|
"total": 56,
|
|
|
|
"time": {
|
|
|
|
"start": 1718783906.70464,
|
|
|
|
"finish": 1718783906.78351,
|
|
|
|
"duration": 0.0788729190826416,
|
|
|
|
"processing": 0.0450279712677002,
|
|
|
|
"date_start": "2024-06-19T07:58:26+00:00",
|
|
|
|
"date_finish": "2024-06-19T07:58:26+00:00",
|
|
|
|
"operating_reset_at": 1718784506,
|
|
|
|
"operating": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|