ФУНКЦИИ - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: трассировка source-target в карточке запроса
This commit is contained in:
@@ -331,6 +331,17 @@ export default {
|
||||
add_due_date: "Add due date",
|
||||
duplicate_of: "Duplicate of",
|
||||
},
|
||||
traceability: {
|
||||
title: "Routing",
|
||||
description:
|
||||
"This block shows which contour sent the request, where it was routed, and which linked work item now carries the execution.",
|
||||
source_contour: "Source internal contour",
|
||||
target_contour: "Target external contour",
|
||||
status: "Current status",
|
||||
requested_by: "Requested by",
|
||||
requested_at: "Sent at",
|
||||
linked_item: "Linked work item",
|
||||
},
|
||||
actions: {
|
||||
send: "Send",
|
||||
accept: "Accept",
|
||||
|
||||
@@ -488,6 +488,16 @@ export default {
|
||||
add_due_date: "Добавить срок выполнения",
|
||||
duplicate_of: "Дубликат",
|
||||
},
|
||||
traceability: {
|
||||
title: "Маршрутизация",
|
||||
description: "Здесь отображается, из какого контура ушёл запрос, куда он направлен и с каким связанным элементом он сейчас работает.",
|
||||
source_contour: "Исходный внутренний контур",
|
||||
target_contour: "Целевой внешний контур",
|
||||
status: "Текущий статус",
|
||||
requested_by: "Отправитель",
|
||||
requested_at: "Отправлено",
|
||||
linked_item: "Связанная задача",
|
||||
},
|
||||
actions: {
|
||||
send: "Отправить",
|
||||
accept: "Принять",
|
||||
|
||||
@@ -24,6 +24,12 @@ export type TExternalContourRequest = {
|
||||
id: string;
|
||||
issue: TExternalContourIssue;
|
||||
source_project_id: string;
|
||||
source_project_name?: string | null;
|
||||
target_project_id?: string | null;
|
||||
target_project_name?: string | null;
|
||||
requested_by_id?: string | null;
|
||||
requested_by_name?: string | null;
|
||||
requested_at?: string | null;
|
||||
status: "open" | "closed";
|
||||
updated_at: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user