ФУНКЦИИ - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: source-side принятие и возврат внешнего запроса

This commit is contained in:
DCCONSTRUCTIONS
2026-04-19 00:29:23 +03:00
parent 3fe3539614
commit 8195c3fc80
17 changed files with 366 additions and 23 deletions
@@ -342,6 +342,9 @@ export default {
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",
source_decision: "Source-side decision",
source_decision_pending: "Awaiting decision",
source_decision_accepted: "Accepted into the internal contour",
target_contour: "Target external contour",
status: "Current status",
requested_by: "Requested by",
@@ -353,6 +356,9 @@ export default {
send: "Send",
accept: "Accept",
decline: "Decline",
accept_success: "The external contour result has been accepted.",
decline_success: "The request has been returned to the external contour for rework.",
decision_error: "The external contour action could not be completed.",
copy: "Copy link",
open: "Open request",
unsupported_title: "This action will be connected in the next stage",
@@ -498,6 +498,9 @@ export default {
title: "Маршрутизация",
description: "Здесь отображается, из какого контура ушёл запрос, куда он направлен и с каким связанным элементом он сейчас работает.",
source_contour: "Исходный внутренний контур",
source_decision: "Решение источника",
source_decision_pending: "Ожидает решения",
source_decision_accepted: "Принято во внутренний контур",
target_contour: "Целевой внешний контур",
status: "Текущий статус",
requested_by: "Отправитель",
@@ -509,6 +512,9 @@ export default {
send: "Отправить",
accept: "Принять",
decline: "Отклонить",
accept_success: "Результат внешнего контура принят.",
decline_success: "Запрос возвращён во внешний контур на доработку.",
decision_error: "Не удалось выполнить действие по внешнему запросу.",
copy: "Копировать ссылку",
open: "Открыть запрос",
unsupported_title: "Действие будет подключено следующим этапом",
@@ -24,6 +24,9 @@ export type TExternalContourRequest = {
created_by: string | null;
id: string;
issue: TExternalContourIssue;
source_decision?: "accepted" | null;
source_decision_at?: string | null;
source_decision_by_name?: string | null;
source_project_id: string;
source_project_name?: string | null;
target_project_id?: string | null;