You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
doctor_app_flutter/lib/lookups/patient_lookup.dart

42 lines
1.1 KiB
Dart

const PATIENT_TYPE_Des = const [
{"text": "Outpatient", "text_ar": "المريض الخارجي", "val": "0"},
{"text": "Inpatient", "text_ar": "المريض المنوم", "val": "1"},
{"text": "Discharge", "text_ar": "المريض المعافى", "val": "2"},
{"text": "Referred", "text_ar": "المريض المحول الي", "val": "3"},
{
"text": "Referral Discharge",
"text_ar": "المريض المحال المعافى",
"val": "4"
},
{"text": "Tomorrow Patient", "text_ar": "مريض الغد", "val": "5"},
{"text": "Referral", "text_ar": "المريض المحول مني", "val": "6"},
{"text": "Arrival", "text_ar": "المريض الواصل", "val": "7"},
];
const LOCATIONS = const [
{
"text": "In Saudi Arabia",
"text-ar": "داخل المملكة العربية السعودية",
"val": "1"
},
{
"text": "Out Saudi Arabia",
"text-ar": "خارج المملكة العربية السعودية",
"val": "2"
},
];
enum vitalSignDetails {
BodyMeasurements,
Temperature,
Pulse,
Prescriptions,
BloodPressure,
Respiration,
heart,
PainScale,
Weight,
Height,
Oxygenation,
}