Spaces:
Runtime error
Runtime error
Create claim_details.py
Browse files- claim_details.py +20 -0
claim_details.py
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
def get_claim_details():
|
2 |
+
return {"name": "Customer Name <>" , "age": "Claimant's Age <>", "occupation": "Occupation of the claimant"}
|
3 |
+
|
4 |
+
def get_injury_details():
|
5 |
+
return "This is a sample injury description"
|
6 |
+
|
7 |
+
def get_injury_severity():
|
8 |
+
return "Getting the Injury Severity"
|
9 |
+
|
10 |
+
def get_preexisting_conditions():
|
11 |
+
return "X, Y, Z"
|
12 |
+
|
13 |
+
def get_preexisting_medications():
|
14 |
+
return "X1, Y1, Z1"
|
15 |
+
|
16 |
+
def get_work_capacity():
|
17 |
+
return "Get work capacity from the medical certificates received"
|
18 |
+
|
19 |
+
def get_injury_management_plan():
|
20 |
+
return "Summary of injury management plan"
|