diff --git a/app/panels/mech_rec_assembly_mon/components/plan_detail.js b/app/panels/mech_rec_assembly_mon/components/plan_detail.js index 25e9e03..c11481f 100644 --- a/app/panels/mech_rec_assembly_mon/components/plan_detail.js +++ b/app/panels/mech_rec_assembly_mon/components/plan_detail.js @@ -107,7 +107,7 @@ const PlanSpecInfo = ({ planSpec }) => { - Номер борта: + Номер изделия: {planSpec.SNUMB} diff --git a/app/panels/mech_rec_assembly_mon/components/plans_list_item.js b/app/panels/mech_rec_assembly_mon/components/plans_list_item.js index 0ac1900..b652882 100644 --- a/app/panels/mech_rec_assembly_mon/components/plans_list_item.js +++ b/app/panels/mech_rec_assembly_mon/components/plans_list_item.js @@ -70,11 +70,11 @@ const PlanSpecsListItem = ({ card, cardIndex, onClick }) => { return ( (onClick ? onClick(card, cardIndex) : null)}> - + - Номер борта + Номер изделия - {card.SNUMB} + {card.SNUMB || "-"} { progressVariant={"h3"} detailVariant={"PlanSpecProgressDetail"} /> - + Год выпуска: - {card.NYEAR} + {card.NYEAR || "-"} diff --git a/db/PKG_P8PANELS_MECHREC.pck b/db/PKG_P8PANELS_MECHREC.pck index 49a5165..d85e03f 100644 --- a/db/PKG_P8PANELS_MECHREC.pck +++ b/db/PKG_P8PANELS_MECHREC.pck @@ -6195,11 +6195,11 @@ create or replace package body PKG_P8PANELS_MECHREC as /* Определяем детализацию по прогрессу */ case when (NPROGRESS >= 70) then - SRESULT := 'Основная сборка: Стыковка агрегатов выполнена'; + SRESULT := 'Основная сборка'; when (NPROGRESS >= 40) then - SRESULT := 'Изготовление агрегатов: Фюзеляж и ОЧК не переданы в цех ОС'; + SRESULT := 'Изготовление агрегатов'; when (NPROGRESS >= 10) then - SRESULT := 'Изготовление ДСЕ: Фюзеляж и ОЧК не укомлектованы ДСЕ'; + SRESULT := 'Изготовление ДСЕ'; else SRESULT := 'Изготовление ДСЕ не начато'; end case;