From 542451557f1d87c18550fbbfc45f75bd46240b54 Mon Sep 17 00:00:00 2001 From: Jacobjohnjeevan Date: Mon, 28 Oct 2024 19:10:57 +0530 Subject: [PATCH 1/2] fix immunologist doc type id --- care/facility/models/facility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/care/facility/models/facility.py b/care/facility/models/facility.py index e3593871b7..01c0102b10 100644 --- a/care/facility/models/facility.py +++ b/care/facility/models/facility.py @@ -148,7 +148,7 @@ class FacilityFeature(models.IntegerChoices): (16, "General Surgeon"), (17, "Geriatrician"), (18, "Hematologist"), - (29, "Immunologist"), + (19, "Immunologist"), (20, "Infectious Disease Specialist"), (21, "MBBS doctor"), (22, "Medical Officer"), From 54e8e1189e15eacada7caa82cd8b10491164bbca Mon Sep 17 00:00:00 2001 From: Jacobjohnjeevan Date: Mon, 28 Oct 2024 19:20:09 +0530 Subject: [PATCH 2/2] migration --- .../0467_alter_hospitaldoctors_area.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 care/facility/migrations/0467_alter_hospitaldoctors_area.py diff --git a/care/facility/migrations/0467_alter_hospitaldoctors_area.py b/care/facility/migrations/0467_alter_hospitaldoctors_area.py new file mode 100644 index 0000000000..d1507f0334 --- /dev/null +++ b/care/facility/migrations/0467_alter_hospitaldoctors_area.py @@ -0,0 +1,18 @@ +# Generated by Django 5.1.1 on 2024-10-28 13:49 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('facility', '0466_camera_presets'), + ] + + operations = [ + migrations.AlterField( + model_name='hospitaldoctors', + name='area', + field=models.IntegerField(choices=[(1, 'General Medicine'), (2, 'Pulmonology'), (3, 'Intensivist'), (4, 'Pediatrician'), (5, 'Others'), (6, 'Anesthesiologist'), (7, 'Cardiac Surgeon'), (8, 'Cardiologist'), (9, 'Dentist'), (10, 'Dermatologist'), (11, 'Diabetologist'), (12, 'Emergency Medicine Physician'), (13, 'Endocrinologist'), (14, 'Family Physician'), (15, 'Gastroenterologist'), (16, 'General Surgeon'), (17, 'Geriatrician'), (18, 'Hematologist'), (19, 'Immunologist'), (20, 'Infectious Disease Specialist'), (21, 'MBBS doctor'), (22, 'Medical Officer'), (23, 'Nephrologist'), (24, 'Neuro Surgeon'), (25, 'Neurologist'), (26, 'Obstetrician/Gynecologist (OB/GYN)'), (27, 'Oncologist'), (28, 'Oncology Surgeon'), (29, 'Ophthalmologist'), (30, 'Oral and Maxillofacial Surgeon'), (31, 'Orthopedic'), (32, 'Orthopedic Surgeon'), (33, 'Otolaryngologist (ENT)'), (34, 'Palliative care Physician'), (35, 'Pathologist'), (36, 'Pediatric Surgeon'), (37, 'Physician'), (38, 'Plastic Surgeon'), (39, 'Psychiatrist'), (40, 'Pulmonologist'), (41, 'Radio technician'), (42, 'Radiologist'), (43, 'Rheumatologist'), (44, 'Sports Medicine Specialist'), (45, 'Thoraco-Vascular Surgeon'), (46, 'Transfusion Medicine Specialist'), (47, 'Urologist'), (48, 'Nurse'), (49, 'Allergist/Immunologist'), (50, 'Cardiothoracic Surgeon'), (51, 'Gynecologic Oncologist'), (52, 'Hepatologist'), (53, 'Internist'), (54, 'Neonatologist'), (55, 'Pain Management Specialist'), (56, 'Physiatrist (Physical Medicine and Rehabilitation)'), (57, 'Podiatrist'), (58, 'Preventive Medicine Specialist'), (59, 'Radiation Oncologist'), (60, 'Sleep Medicine Specialist'), (61, 'Transplant Surgeon'), (62, 'Trauma Surgeon'), (63, 'Vascular Surgeon'), (64, 'Critical Care Physician')]), + ), + ]