File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 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):
1818 doc .add_paragraph (f'TYPE OF CLAIM:\t \t { data ["claimant" ].claim } ' )
1919 doc .add_paragraph (f'DATE OF APPLICATION:\t { datetime .strftime (data ["claimant" ].pdof , "%m/%d/%Y" )} ' )
2020 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 } ' )
2122 doc .add_paragraph (f'DOB:\t \t \t \t { data ["birthdate" ]} ' )
2223 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 } ' )
2424 doc .add_paragraph (f'EDUCATION:\t \t \t { data ["education" ]} ' )
2525 if len (data ["work_history" ]) == 0 :
2626 doc .add_paragraph ('PAST WORK:\t \t \t ' )
@@ -67,6 +67,19 @@ def generate_bell_format_summary(data):
6767 p = doc .add_paragraph ()
6868 p .add_run (f'{ comment .date } : { comment .text } ({ exhibit } /{ comment .exhibit_page } )' )
6969
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+
7083 for section in doc .sections :
7184 section .left_margin = Inches (1 )
7285 section .right_margin = Inches (1 )
You can’t perform that action at this time.
0 commit comments