[WIP] Фикс конфига статусов
This commit is contained in:
@@ -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",
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user