Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

occupation field options are in alphabetical order #7746

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 61 additions & 30 deletions src/Common/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1273,60 +1273,91 @@ export const CONSENT_PATIENT_CODE_STATUS_CHOICES = [
{ id: 4, text: "Active treatment (Default)" },
];
export const OCCUPATION_TYPES = [
{ id: 1, text: "Student", value: "STUDENT" },
{
id: 2,
text: "Businessman",
value: "BUSINESSMAN",
id: 27,
text: "Aircraft Pilot or Flight Engineer",
value: "PILOT_FLIGHT",
},
{ id: 3, text: "Healthcare Worker", value: "HEALTH_CARE_WORKER" },
{ id: 4, text: "Healthcare Lab Worker", value: "HEALTH_CARE_LAB_WORKER" },
{ id: 5, text: "Animal Handler", value: "ANIMAL_HANDLER" },
{ id: 6, text: "Others", value: "OTHERS" },
{ id: 7, text: "Healthcare Practitioner", value: "HEALTHCARE_PRACTITIONER" },
{ id: 8, text: "Paramedics", value: "PARADEMICS" },
{
id: 9,
text: "Business or Finance related Occupations",
value: "BUSINESS_RELATED",
},
{ id: 2, text: "Businessman", value: "BUSINESSMAN" },
{ id: 14, text: "Chef or Head Cook", value: "CHEF" },
{
id: 24,
text: "Construction and Extraction Worker",
value: "CONSTRUCTION_EXTRACTION",
},
{ id: 17, text: "Custodial Occupations", value: "CUSTODIAL" },
{
id: 18,
text: "Customer Service Occupations",
value: "CUSTOMER_SERVICE",
},
{ id: 10, text: "Engineer", value: "ENGINEER" },
{ id: 11, text: "Teacher", value: "TEACHER" },
{
id: 12,
text: "Other Professional Occupations",
value: "OTHER_PROFESSIONAL_OCCUPATIONS",
id: 25,
text: "Farming, Fishing and Forestry",
value: "AGRI_NATURAL",
},
{
id: 4,
text: "Healthcare Lab Worker",
value: "HEALTH_CARE_LAB_WORKER",
},
{
id: 7,
text: "Healthcare Practitioner",
value: "HEALTHCARE_PRACTITIONER",
},
{ id: 3, text: "Healthcare Worker", value: "HEALTH_CARE_WORKER" },
{ id: 30, text: "Homemaker", value: "HOMEMAKER" },
{
id: 16,
text: "Hospitality Service Occupations",
value: "HOSPITALITY",
},
{
id: 21,
text: "Insurance Sales Agent",
value: "INSURANCE_SALES_AGENT",
},
{ id: 29, text: "Military", value: "MILITARY" },
{
id: 13,
text: "Office and Administrative Support Occupations",
value: "OFFICE_ADMINISTRATIVE",
},
{ id: 14, text: "Chef or Head Cook", value: "CHEF" },
{
id: 12,
text: "Other Professional Occupations",
value: "OTHER_PROFESSIONAL_OCCUPATIONS",
},
{ id: 8, text: "Paramedics", value: "PARADEMICS" },
{
id: 26,
text: "Production Occupations",
value: "PRODUCTION_OCCUPATION",
},
{
id: 15,
text: "Protective Service Occupations",
value: "PROTECTIVE_SERVICE",
},
{ id: 16, text: "Hospitality Service Occupations", value: "HOSPITALITY" },
{ id: 17, text: "Custodial Occupations", value: "CUSTODIAL" },
{ id: 18, text: "Customer Service Occupations", value: "CUSTOMER_SERVICE" },
{ id: 19, text: "Sales Supervisor", value: "SALES_SUPERVISOR" },
{ id: 20, text: "Retail Sales Worker", value: "RETAIL_SALES_WORKER" },
{ id: 21, text: "Insurance Sales Agent", value: "INSURANCE_SALES_AGENT" },
{ id: 22, text: "Sales Representative", value: "SALES_REPRESENTATIVE" },
{ id: 23, text: "Real Estate Sales Agent", value: "REAL_ESTATE" },
{ id: 20, text: "Retail Sales Worker", value: "RETAIL_SALES_WORKER" },
{
id: 24,
text: "Construction and Extraction Worker",
value: "CONSTRUCTION_EXTRACTION",
id: 22,
text: "Sales Representative",
value: "SALES_REPRESENTATIVE",
},
{ id: 25, text: "Farming, Fishing and Forestry", value: "AGRI_NATURAL" },
{ id: 26, text: "Production Occupations", value: "PRODUCTION_OCCUPATION" },
{ id: 27, text: "Aircraft Pilot or Flight Engineer", value: "PILOT_FLIGHT" },
{ id: 19, text: "Sales Supervisor", value: "SALES_SUPERVISOR" },
{ id: 1, text: "Student", value: "STUDENT" },
{ id: 11, text: "Teacher", value: "TEACHER" },
{ id: 28, text: "Vehicle Driver", value: "VEHICLE_DRIVER" },
{ id: 29, text: "Military", value: "MILITARY" },
{ id: 30, text: "Homemaker", value: "HOMEMAKER" },
{ id: 31, text: "Don't Know", value: "UNKNOWN" },
{ id: 6, text: "Others", value: "OTHERS" },
{ id: 32, text: "Not Applicable", value: "NOT_APPLICABLE" },
];
Loading