WIP Добавил статусы для записей

This commit is contained in:
DwCay
2023-05-04 18:16:31 +03:00
parent bad421f503
commit 8f02cc9941
4 changed files with 41 additions and 18 deletions

View File

@@ -544,8 +544,20 @@ export const documentForm = [
];
export const mapEventStatus = {
COMPLETED: "Принят",
CANCELED: "Отказ",
RECEPTION: "На приеме",
PLANNED: "Не принят",
COMPLETED: {
title: "Принят",
color: "#55CD76",
},
CANCELED: {
title: "Отказ",
color: "#FF6F6F",
},
RECEPTION: {
title: "На приеме",
color: "#FFC75B",
},
PLANNED: {
title: "Не принят",
color: "#9294A7",
},
};