[WIP] Фикс конфига статусов

This commit is contained in:
megavrilinvv
2023-07-26 17:02:48 +03:00
parent f113e8ebf5
commit d4aa75a690
3 changed files with 50 additions and 46 deletions

View File

@@ -42,44 +42,51 @@ export const networks = [
},
];
export const recordingStatuses = [
export const statuses = [
{
label: "Не принят",
icon: not_accepted,
value: "not_accepted",
name: "recording",
data: [
{
label: "Не принят",
icon: not_accepted,
value: "not_accepted",
},
{
label: "Принят",
icon: accepted,
value: "accepted",
},
{
label: "Отказ",
icon: rejected,
value: "rejected",
},
{
label: "На приеме",
icon: reception,
value: "reception",
},
],
},
{
label: "Принят",
icon: accepted,
value: "accepted",
},
{
label: "Отказ",
icon: rejected,
value: "rejected",
},
{
label: "На приеме",
icon: reception,
value: "reception",
},
];
export const medicalСardStatuses = [
{
label: "Не заполнена",
icon: not_filled,
value: "not_filled",
},
{
label: "Частично заполнена",
icon: partially_filled,
value: "partially_filled",
},
{
label: "Заполнена",
icon: filled,
value: "filled",
name: "medicalCard",
data: [
{
label: "Не заполнена",
icon: not_filled,
value: "not_filled",
},
{
label: "Частично заполнена",
icon: partially_filled,
value: "partially_filled",
},
{
label: "Заполнена",
icon: filled,
value: "filled",
},
],
},
];