File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ def generate_bell_format_summary(data):
18
18
doc .add_paragraph (f'TYPE OF CLAIM:\t \t { data ["claimant" ].claim } ' )
19
19
doc .add_paragraph (f'DATE OF APPLICATION:\t { datetime .strftime (data ["claimant" ].pdof , "%m/%d/%Y" )} ' )
20
20
doc .add_paragraph (f'ALLEGED ONSET DATE:\t { data ["onset_date" ]} ' )
21
+ doc .add_paragraph (f'DATE LATE INSURED:\t \t { data ["claimant" ].last_insured_date } ' )
21
22
doc .add_paragraph (f'DOB:\t \t \t \t { data ["birthdate" ]} ' )
22
23
doc .add_paragraph (f'AGE:\t \t \t \t { data ["age" ]} ' )
23
- doc .add_paragraph (f'DATE LATE INSURED:\t \t { data ["claimant" ].last_insured_date } ' )
24
24
doc .add_paragraph (f'EDUCATION:\t \t \t { data ["education" ]} ' )
25
25
if len (data ["work_history" ]) == 0 :
26
26
doc .add_paragraph ('PAST WORK:\t \t \t ' )
@@ -67,6 +67,19 @@ def generate_bell_format_summary(data):
67
67
p = doc .add_paragraph ()
68
68
p .add_run (f'{ comment .date } : { comment .text } ({ exhibit } /{ comment .exhibit_page } )' )
69
69
70
+ doc .add_paragraph ('' )
71
+ doc .add_paragraph ('' )
72
+
73
+ doc .add_paragraph ('CONSULTATIVE EXAM:' )
74
+
75
+ doc .add_paragraph ('' )
76
+ doc .add_paragraph ('' )
77
+
78
+ doc .add_paragraph ('MEDICAL-VOCATIONAL GRIDRULE AND/OR RULING:' )
79
+
80
+ doc .add_paragraph ('' )
81
+ doc .add_paragraph ('' )
82
+
70
83
for section in doc .sections :
71
84
section .left_margin = Inches (1 )
72
85
section .right_margin = Inches (1 )
You can’t perform that action at this time.
0 commit comments