shared-ritm 1.2.129 → 1.2.131

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +3045 -2991
  4. package/dist/shared-ritm.umd.js +146 -146
  5. package/dist/types/api/services/PhotoService.d.ts +40 -0
  6. package/dist/types/api/services/ProjectsService.d.ts +1 -0
  7. package/dist/types/api/services/ScheduleService.d.ts +13 -0
  8. package/dist/types/api/services/VideoService.d.ts +18 -9
  9. package/dist/types/api/types/Api_Schedule.d.ts +26 -0
  10. package/dist/types/api/types/Api_Video.d.ts +4 -0
  11. package/dist/types/index.d.ts +3 -1
  12. package/package.json +64 -64
  13. package/src/App.vue +2461 -2461
  14. package/src/api/services/AuthService.ts +53 -53
  15. package/src/api/services/BrigadesService.ts +32 -32
  16. package/src/api/services/CommentsService.ts +24 -24
  17. package/src/api/services/ControlsService.ts +73 -73
  18. package/src/api/services/EquipmentService.ts +29 -29
  19. package/src/api/services/FileService.ts +17 -17
  20. package/src/api/services/GanttService.ts +17 -17
  21. package/src/api/services/InstrumentsService.ts +63 -63
  22. package/src/api/services/MetricsService.ts +110 -110
  23. package/src/api/services/ModulesService.ts +27 -27
  24. package/src/api/services/ProjectsService.ts +83 -79
  25. package/src/api/services/RepairsService.ts +123 -123
  26. package/src/api/services/ScheduleService.ts +34 -0
  27. package/src/api/services/SearchService.ts +22 -22
  28. package/src/api/services/TasksService.ts +145 -145
  29. package/src/api/services/UserService.ts +101 -101
  30. package/src/api/services/VideoService.ts +103 -71
  31. package/src/api/settings/ApiService.ts +124 -124
  32. package/src/api/types/Api_Auth.ts +86 -86
  33. package/src/api/types/Api_Brigades.ts +36 -36
  34. package/src/api/types/Api_Comment.ts +40 -40
  35. package/src/api/types/Api_Controls.ts +93 -93
  36. package/src/api/types/Api_Equipment.ts +3 -3
  37. package/src/api/types/Api_Files.ts +7 -7
  38. package/src/api/types/Api_Instruments.ts +136 -136
  39. package/src/api/types/Api_Modules.ts +21 -21
  40. package/src/api/types/Api_Projects.ts +60 -60
  41. package/src/api/types/Api_Repairs.ts +117 -117
  42. package/src/api/types/Api_Schedule.ts +29 -0
  43. package/src/api/types/Api_Search.ts +77 -77
  44. package/src/api/types/Api_Service.ts +9 -9
  45. package/src/api/types/Api_Tasks.ts +319 -319
  46. package/src/api/types/Api_User.ts +117 -117
  47. package/src/api/types/Api_Video.ts +145 -140
  48. package/src/common/app-button/AppButton.vue +173 -173
  49. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  50. package/src/common/app-date-picker/AppDatePicker.vue +81 -81
  51. package/src/common/app-datepicker/AppDatepicker.vue +165 -165
  52. package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
  53. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  54. package/src/common/app-icon/AppIcon.vue +108 -108
  55. package/src/common/app-input/AppInput.vue +148 -148
  56. package/src/common/app-input-new/AppInputNew.vue +175 -175
  57. package/src/common/app-input-search/AppInputSearch.vue +174 -174
  58. package/src/common/app-layout/AppLayout.vue +84 -84
  59. package/src/common/app-layout/components/AppLayoutHeader.vue +273 -273
  60. package/src/common/app-layout/components/AppLayoutPage.vue +16 -16
  61. package/src/common/app-loader/index.vue +43 -43
  62. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  63. package/src/common/app-select/AppSelect.vue +157 -157
  64. package/src/common/app-sheet/AppSheet.vue +120 -120
  65. package/src/common/app-sheet-new/AppSheetNew.vue +246 -246
  66. package/src/common/app-sidebar/AppSidebar.vue +168 -168
  67. package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
  68. package/src/common/app-sidebar/components/SidebarMenuItem.vue +148 -148
  69. package/src/common/app-table/AppTable.vue +308 -308
  70. package/src/common/app-table/AppTableLayout.vue +137 -137
  71. package/src/common/app-table/components/ModalSelect.vue +281 -281
  72. package/src/common/app-table/components/TableModal.vue +356 -356
  73. package/src/common/app-table/components/TablePagination.vue +152 -152
  74. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  75. package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
  76. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  77. package/src/common/app-toggle/AppToggle.vue +24 -24
  78. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  79. package/src/global.d.ts +1 -1
  80. package/src/icons/components/arrow-down-icon.vue +25 -25
  81. package/src/icons/components/arrow-frame-icon.vue +19 -19
  82. package/src/icons/components/arrow-square.vue +22 -22
  83. package/src/icons/components/table-filter-icon.vue +30 -30
  84. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  85. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  86. package/src/icons/header/NotificationIcon.vue +18 -18
  87. package/src/icons/header/PersonIcon.vue +11 -11
  88. package/src/icons/header/SettingIcon.vue +14 -14
  89. package/src/icons/header/flashIcon.vue +24 -24
  90. package/src/icons/header/searchStatusIcon.vue +24 -24
  91. package/src/icons/header/smallCapsIcon.vue +34 -34
  92. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  93. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  94. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  95. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  96. package/src/icons/sidebar/instruments-icon.vue +45 -45
  97. package/src/icons/sidebar/logo-icon.vue +15 -15
  98. package/src/icons/sidebar/logout-icon.vue +13 -13
  99. package/src/icons/sidebar/modules-icon.vue +16 -16
  100. package/src/icons/sidebar/notifications-icon.vue +24 -24
  101. package/src/icons/sidebar/order-icon.vue +44 -44
  102. package/src/icons/sidebar/pass-icon.vue +38 -38
  103. package/src/icons/sidebar/positions-icon.vue +42 -42
  104. package/src/icons/sidebar/preorder-icon.vue +19 -19
  105. package/src/icons/sidebar/projects-icon.vue +31 -31
  106. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  107. package/src/icons/sidebar/repairs-icon.vue +20 -20
  108. package/src/icons/sidebar/roles-icon.vue +26 -26
  109. package/src/icons/sidebar/status-history-icon.vue +24 -24
  110. package/src/icons/sidebar/tasks-icon.vue +28 -28
  111. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  112. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  113. package/src/icons/sidebar/teams-icon.vue +32 -32
  114. package/src/icons/sidebar/user-icon.vue +18 -18
  115. package/src/icons/sidebar/users-icon.vue +46 -46
  116. package/src/icons/sidebar/videosources-icon.vue +19 -19
  117. package/src/icons/sidebar/videowall-icon.vue +13 -13
  118. package/src/icons/sidebar/videozones-icon.vue +21 -21
  119. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  120. package/src/icons/sidebar/workshop-icon.vue +100 -100
  121. package/src/icons/sidebar/workzones-icon.vue +22 -22
  122. package/src/icons/task/attention-icon.vue +13 -13
  123. package/src/icons/task/clock-icon.vue +10 -10
  124. package/src/icons/task/delete-icon.vue +10 -10
  125. package/src/icons/task/fire-icon.vue +16 -16
  126. package/src/index.ts +126 -123
  127. package/src/main.ts +28 -28
  128. package/src/quasar-user-options.ts +17 -17
  129. package/src/router/index.ts +10 -10
  130. package/src/shared/styles/general.css +124 -124
  131. package/src/shims-vue.d.ts +5 -5
  132. package/src/styles/variables.sass +12 -12
  133. package/src/utils/confirm.ts +12 -12
  134. package/src/utils/faceApiHelper.ts +132 -132
  135. package/src/utils/helpers.ts +59 -59
  136. package/src/utils/notification.ts +9 -9
@@ -1,319 +1,319 @@
1
- import { Api_Comment_Dto } from '../types/Api_Comment'
2
- export type Api_Tasks_InstrumentHistory_Item_Dto = {
3
- interval: {
4
- start_interval: string
5
- end_interval: string
6
- minutes: number | null
7
- user: {
8
- id: string
9
- first_name: string
10
- last_name: string
11
- patronymic: string | null
12
- full_name: string
13
- }
14
- }[]
15
- minutes: number
16
- warehouse: {
17
- id: string
18
- name: string
19
- status: {
20
- id: string
21
- name: string
22
- title: string
23
- }
24
- }
25
- }
26
-
27
- export type Api_Tasks_AllPersonalUser_Dto = {
28
- users: Api_Tasks_Personal_User_Dto[]
29
- unrecognized_users: Api_PersonalUnrecognizedUser[]
30
- }
31
-
32
- export type Api_Tasks_Personal_User_Dto = {
33
- user: Api_Tasks_Position_Assigned_User_Dto
34
- sum_minutes_interval: number
35
- interval: {
36
- start_interval: string
37
- end_interval: string
38
- }[]
39
- }
40
-
41
- export type Api_PersonalUnrecognizedUser = {
42
- user_id: string
43
- start_interval: string
44
- end_interval: string
45
- minutes: number
46
- }
47
-
48
- export type Api_Tasks_ReplaceInstrument_Request_Dto = {
49
- equivalent: string
50
- origin: string
51
- task: string
52
- }
53
-
54
- export type Api_QualityMetric_Request_Dto = {
55
- id: string
56
- task_id: string
57
- name: string
58
- unit: string
59
- norm_from: number
60
- norm_to: number
61
- metric_before: number | null
62
- metric_after: number | null
63
- is_normal: boolean
64
- }
65
-
66
- export type Api_Task_ChangeStatusVerification_Dto = {
67
- id: string
68
- name: string
69
- }
70
-
71
- export type Api_Tasks_Responsible_Dto = {
72
- id: string
73
- first_name: string
74
- last_name: string
75
- patronymic: string
76
- full_name: string
77
- }
78
-
79
- export type Api_Tasks_Assigned_Dto = {
80
- id: string
81
- first_name: string
82
- last_name: string
83
- patronymic: null | string
84
- full_name: string
85
- }
86
-
87
- export type Api_Tasks_Status_Dto = {
88
- id: string
89
- name: string
90
- title: string
91
- }
92
- export type Api_Tasks_Project_Dto = {
93
- id: string
94
- name: string
95
- teams: string[]
96
- }
97
- export type Api_Tasks_Position_Dto = {
98
- id: string
99
- name: string
100
- display_name: string
101
- }
102
-
103
- export type Api_Tasks_Position_Assigned_User_Dto = {
104
- id: string
105
- full_name: string
106
- }
107
-
108
- export type Api_Tasks_Position_Assigned_Dto = {
109
- id?: number
110
- user?: Api_Tasks_Position_Assigned_User_Dto | null
111
- position?: Api_Tasks_Position_Dto
112
- }
113
-
114
- export type Api_Tasks_Teams_Dto = {
115
- id: string
116
- name: string
117
- display_name: string
118
- }
119
-
120
- export type Api_Tasks_Equipment_Dto = {
121
- id: string
122
- name: string
123
- model: string
124
- registration_number: string
125
- created_at: string
126
- updated_at: string
127
- repair_frequency: number
128
- repair_range: number
129
- }
130
-
131
- export type Api_Task_VideoSource_Dto = {
132
- id: string
133
- name: string
134
- url: string
135
- work_zone_by_task: {
136
- id: string
137
- title: string
138
- }
139
- }
140
-
141
- export type Api_Task_QualityMetric_Dto = {
142
- id: string
143
- task_id: string
144
- name: string
145
- unit: string
146
- norm_from: number
147
- norm_to: number
148
- metric_before: number | null
149
- metric_after: number | null
150
- is_normal: boolean
151
- }
152
-
153
- export type Api_Tasks_Task_Dto = {
154
- id: string
155
- name: string
156
- type: string
157
- project_id: string
158
- description: string
159
- subtask_counter: number
160
- state_id: null | string
161
- start_date: string
162
- end_date: string
163
- deadline: string
164
- plan_date: string
165
- time_to_complete: null | string | number
166
- time_to_complete_sec: number | null
167
- priority: number
168
- work_zone_id: null | string
169
- location_id: null | string
170
- target: any
171
- instruments?: any[]
172
- warehouse: any[]
173
- files: any[]
174
- planned_start: null | string
175
- planned_end: null | string
176
- fact_start_date: string
177
- fact_end_date: null | string
178
- work_sec: number
179
- pause_sec: number
180
- repair_object: null | string
181
- isPause: boolean
182
- defect: string | null
183
- expired: boolean
184
- is_critical_task: boolean
185
- usage_users: boolean
186
- usage_warehouses: boolean
187
- is_detach_video_source_work_zone?: number
188
- subtasks: Api_Tasks_Task_Dto[]
189
- status: Api_Tasks_Status_Dto
190
- project: Api_Tasks_Project_Dto
191
- position: Api_Tasks_Position_Dto[]
192
- assigned: Api_Tasks_Assigned_Dto[]
193
- responsible: Api_Tasks_Responsible_Dto[]
194
- position_assigned: Api_Tasks_Position_Assigned_Dto[]
195
- comments: Api_Comment_Dto[]
196
- teams: Api_Tasks_Teams_Dto[]
197
- equipment: Api_Tasks_Equipment_Dto
198
- instrument_types: Api_Task_Instrument_From_Warehouse[]
199
- quality_metrics: Api_Task_QualityMetric_Dto[]
200
- video_source: Api_Task_VideoSource_Dto
201
- }
202
-
203
- export type Api_Tasks_Task_Edit_Request_Dto = {
204
- name: string
205
- description?: string
206
- instruments?: string[]
207
- responsible?: string[]
208
- equipment?: string
209
- status: string
210
- assigned?: string[]
211
- position_assigned?: unknown[]
212
- files?: string[]
213
- position?: unknown[]
214
- warehouse?: string[]
215
- teams?: string[]
216
- video_source_id?: string
217
- work_zone_id?: string
218
- state_id?: string
219
- location_id?: string
220
- project_id?: string
221
- priority?: number
222
- start_date?: string // YYYY-MM-DD HH:MM
223
- plan_date?: string // YYYY-MM-DD HH:MM
224
- deadline?: string // YYYY-MM-DD HH:MM
225
- time_to_complete?: number
226
- time_to_complete_sec?: number
227
- target?: string
228
- repair_object_id?: string
229
- }
230
-
231
- export type Api_Task_Instrument_Dto = {
232
- id: string
233
- name: string
234
- }
235
-
236
- export type Api_Task_Module_Instrument_Condition = {
237
- instruments_types_conditions: Record<
238
- string,
239
- {
240
- warehouse_responsible: boolean
241
- warehouse_statuses: boolean
242
- warehouse_modules: boolean
243
- }
244
- >
245
- instruments_types_count: Record<string, number>
246
- }
247
-
248
- export type Api_Task_Instrument_From_Warehouse = {
249
- id: string
250
- name: string
251
- warehouse_prepared_quantity: number
252
- has_status: boolean
253
- has_responsible: boolean
254
- has_module: boolean
255
- }
256
-
257
- export type Api_Task_Close_Reason = {
258
- has_reason: boolean
259
- category: string
260
- }
261
-
262
- //single task in list
263
-
264
- export type Api_Assigned_DTO = {
265
- id: string
266
- first_name: string
267
- last_name: string
268
- patronymic: string
269
- full_name: string
270
- }
271
-
272
- export type Api_Status_DTO = {
273
- id: string
274
- name: string
275
- title: string
276
- }
277
-
278
- export type Api_Teams_DTO = {
279
- id: string
280
- name: string
281
- display_name: string
282
- }
283
-
284
- export type Api_Responsible_DTO = {
285
- id: string
286
- name: string
287
- display_name: string
288
- }
289
-
290
- export type Api_VideoSource_DTO = {
291
- id: string
292
- name: string
293
- url: string
294
- work_zone_by_task: { id: string; title: string }
295
- }
296
-
297
- export type Api_Task_Dto = {
298
- id: string
299
- name: string
300
- plan_date: string
301
- deadline: string
302
- priority: number
303
- subtasks_count: number
304
- expired: boolean
305
- is_critical_path: boolean
306
- power_output_MWh: number
307
- cost_per_MWh: number
308
- isPause: boolean
309
- fact_start_date: null | string
310
- fact_end_date: null | string
311
- pause_sec: number
312
- work_sec: number
313
- has_quality_metrics: boolean
314
- responsible: Api_Responsible_DTO[]
315
- assigned: Api_Assigned_DTO[]
316
- status: Api_Status_DTO[]
317
- teams: Api_Teams_DTO[]
318
- video_source: Api_VideoSource_DTO
319
- }
1
+ import { Api_Comment_Dto } from '../types/Api_Comment'
2
+ export type Api_Tasks_InstrumentHistory_Item_Dto = {
3
+ interval: {
4
+ start_interval: string
5
+ end_interval: string
6
+ minutes: number | null
7
+ user: {
8
+ id: string
9
+ first_name: string
10
+ last_name: string
11
+ patronymic: string | null
12
+ full_name: string
13
+ }
14
+ }[]
15
+ minutes: number
16
+ warehouse: {
17
+ id: string
18
+ name: string
19
+ status: {
20
+ id: string
21
+ name: string
22
+ title: string
23
+ }
24
+ }
25
+ }
26
+
27
+ export type Api_Tasks_AllPersonalUser_Dto = {
28
+ users: Api_Tasks_Personal_User_Dto[]
29
+ unrecognized_users: Api_PersonalUnrecognizedUser[]
30
+ }
31
+
32
+ export type Api_Tasks_Personal_User_Dto = {
33
+ user: Api_Tasks_Position_Assigned_User_Dto
34
+ sum_minutes_interval: number
35
+ interval: {
36
+ start_interval: string
37
+ end_interval: string
38
+ }[]
39
+ }
40
+
41
+ export type Api_PersonalUnrecognizedUser = {
42
+ user_id: string
43
+ start_interval: string
44
+ end_interval: string
45
+ minutes: number
46
+ }
47
+
48
+ export type Api_Tasks_ReplaceInstrument_Request_Dto = {
49
+ equivalent: string
50
+ origin: string
51
+ task: string
52
+ }
53
+
54
+ export type Api_QualityMetric_Request_Dto = {
55
+ id: string
56
+ task_id: string
57
+ name: string
58
+ unit: string
59
+ norm_from: number
60
+ norm_to: number
61
+ metric_before: number | null
62
+ metric_after: number | null
63
+ is_normal: boolean
64
+ }
65
+
66
+ export type Api_Task_ChangeStatusVerification_Dto = {
67
+ id: string
68
+ name: string
69
+ }
70
+
71
+ export type Api_Tasks_Responsible_Dto = {
72
+ id: string
73
+ first_name: string
74
+ last_name: string
75
+ patronymic: string
76
+ full_name: string
77
+ }
78
+
79
+ export type Api_Tasks_Assigned_Dto = {
80
+ id: string
81
+ first_name: string
82
+ last_name: string
83
+ patronymic: null | string
84
+ full_name: string
85
+ }
86
+
87
+ export type Api_Tasks_Status_Dto = {
88
+ id: string
89
+ name: string
90
+ title: string
91
+ }
92
+ export type Api_Tasks_Project_Dto = {
93
+ id: string
94
+ name: string
95
+ teams: string[]
96
+ }
97
+ export type Api_Tasks_Position_Dto = {
98
+ id: string
99
+ name: string
100
+ display_name: string
101
+ }
102
+
103
+ export type Api_Tasks_Position_Assigned_User_Dto = {
104
+ id: string
105
+ full_name: string
106
+ }
107
+
108
+ export type Api_Tasks_Position_Assigned_Dto = {
109
+ id?: number
110
+ user?: Api_Tasks_Position_Assigned_User_Dto | null
111
+ position?: Api_Tasks_Position_Dto
112
+ }
113
+
114
+ export type Api_Tasks_Teams_Dto = {
115
+ id: string
116
+ name: string
117
+ display_name: string
118
+ }
119
+
120
+ export type Api_Tasks_Equipment_Dto = {
121
+ id: string
122
+ name: string
123
+ model: string
124
+ registration_number: string
125
+ created_at: string
126
+ updated_at: string
127
+ repair_frequency: number
128
+ repair_range: number
129
+ }
130
+
131
+ export type Api_Task_VideoSource_Dto = {
132
+ id: string
133
+ name: string
134
+ url: string
135
+ work_zone_by_task: {
136
+ id: string
137
+ title: string
138
+ }
139
+ }
140
+
141
+ export type Api_Task_QualityMetric_Dto = {
142
+ id: string
143
+ task_id: string
144
+ name: string
145
+ unit: string
146
+ norm_from: number
147
+ norm_to: number
148
+ metric_before: number | null
149
+ metric_after: number | null
150
+ is_normal: boolean
151
+ }
152
+
153
+ export type Api_Tasks_Task_Dto = {
154
+ id: string
155
+ name: string
156
+ type: string
157
+ project_id: string
158
+ description: string
159
+ subtask_counter: number
160
+ state_id: null | string
161
+ start_date: string
162
+ end_date: string
163
+ deadline: string
164
+ plan_date: string
165
+ time_to_complete: null | string | number
166
+ time_to_complete_sec: number | null
167
+ priority: number
168
+ work_zone_id: null | string
169
+ location_id: null | string
170
+ target: any
171
+ instruments?: any[]
172
+ warehouse: any[]
173
+ files: any[]
174
+ planned_start: null | string
175
+ planned_end: null | string
176
+ fact_start_date: string
177
+ fact_end_date: null | string
178
+ work_sec: number
179
+ pause_sec: number
180
+ repair_object: null | string
181
+ isPause: boolean
182
+ defect: string | null
183
+ expired: boolean
184
+ is_critical_task: boolean
185
+ usage_users: boolean
186
+ usage_warehouses: boolean
187
+ is_detach_video_source_work_zone?: number
188
+ subtasks: Api_Tasks_Task_Dto[]
189
+ status: Api_Tasks_Status_Dto
190
+ project: Api_Tasks_Project_Dto
191
+ position: Api_Tasks_Position_Dto[]
192
+ assigned: Api_Tasks_Assigned_Dto[]
193
+ responsible: Api_Tasks_Responsible_Dto[]
194
+ position_assigned: Api_Tasks_Position_Assigned_Dto[]
195
+ comments: Api_Comment_Dto[]
196
+ teams: Api_Tasks_Teams_Dto[]
197
+ equipment: Api_Tasks_Equipment_Dto
198
+ instrument_types: Api_Task_Instrument_From_Warehouse[]
199
+ quality_metrics: Api_Task_QualityMetric_Dto[]
200
+ video_source: Api_Task_VideoSource_Dto
201
+ }
202
+
203
+ export type Api_Tasks_Task_Edit_Request_Dto = {
204
+ name: string
205
+ description?: string
206
+ instruments?: string[]
207
+ responsible?: string[]
208
+ equipment?: string
209
+ status: string
210
+ assigned?: string[]
211
+ position_assigned?: unknown[]
212
+ files?: string[]
213
+ position?: unknown[]
214
+ warehouse?: string[]
215
+ teams?: string[]
216
+ video_source_id?: string
217
+ work_zone_id?: string
218
+ state_id?: string
219
+ location_id?: string
220
+ project_id?: string
221
+ priority?: number
222
+ start_date?: string // YYYY-MM-DD HH:MM
223
+ plan_date?: string // YYYY-MM-DD HH:MM
224
+ deadline?: string // YYYY-MM-DD HH:MM
225
+ time_to_complete?: number
226
+ time_to_complete_sec?: number
227
+ target?: string
228
+ repair_object_id?: string
229
+ }
230
+
231
+ export type Api_Task_Instrument_Dto = {
232
+ id: string
233
+ name: string
234
+ }
235
+
236
+ export type Api_Task_Module_Instrument_Condition = {
237
+ instruments_types_conditions: Record<
238
+ string,
239
+ {
240
+ warehouse_responsible: boolean
241
+ warehouse_statuses: boolean
242
+ warehouse_modules: boolean
243
+ }
244
+ >
245
+ instruments_types_count: Record<string, number>
246
+ }
247
+
248
+ export type Api_Task_Instrument_From_Warehouse = {
249
+ id: string
250
+ name: string
251
+ warehouse_prepared_quantity: number
252
+ has_status: boolean
253
+ has_responsible: boolean
254
+ has_module: boolean
255
+ }
256
+
257
+ export type Api_Task_Close_Reason = {
258
+ has_reason: boolean
259
+ category: string
260
+ }
261
+
262
+ //single task in list
263
+
264
+ export type Api_Assigned_DTO = {
265
+ id: string
266
+ first_name: string
267
+ last_name: string
268
+ patronymic: string
269
+ full_name: string
270
+ }
271
+
272
+ export type Api_Status_DTO = {
273
+ id: string
274
+ name: string
275
+ title: string
276
+ }
277
+
278
+ export type Api_Teams_DTO = {
279
+ id: string
280
+ name: string
281
+ display_name: string
282
+ }
283
+
284
+ export type Api_Responsible_DTO = {
285
+ id: string
286
+ name: string
287
+ display_name: string
288
+ }
289
+
290
+ export type Api_VideoSource_DTO = {
291
+ id: string
292
+ name: string
293
+ url: string
294
+ work_zone_by_task: { id: string; title: string }
295
+ }
296
+
297
+ export type Api_Task_Dto = {
298
+ id: string
299
+ name: string
300
+ plan_date: string
301
+ deadline: string
302
+ priority: number
303
+ subtasks_count: number
304
+ expired: boolean
305
+ is_critical_path: boolean
306
+ power_output_MWh: number
307
+ cost_per_MWh: number
308
+ isPause: boolean
309
+ fact_start_date: null | string
310
+ fact_end_date: null | string
311
+ pause_sec: number
312
+ work_sec: number
313
+ has_quality_metrics: boolean
314
+ responsible: Api_Responsible_DTO[]
315
+ assigned: Api_Assigned_DTO[]
316
+ status: Api_Status_DTO[]
317
+ teams: Api_Teams_DTO[]
318
+ video_source: Api_VideoSource_DTO
319
+ }