Skip to content

Commit

Permalink
use a new acro field for the new string
Browse files Browse the repository at this point in the history
  • Loading branch information
wittejm committed Oct 29, 2024
1 parent cb9aea7 commit 2082c8a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file modified src/backend/expungeservice/files/multnomah_arrest.pdf
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/backend/expungeservice/form_filling.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ def extra_mappings(self):
"(FOR THE COUNTY OF)": s.county,
"(Plaintiff)": "State of Oregon",
"(Case No)": s.case_number_with_comments,
"(Case Number Possibly In Part)": s.case_number_possibly_in_part, # This field appears only on the Multnomah Arrest form.
"(Defendant)": s.case_name,
"(DOB)": s.date_of_birth,
"(record of arrest with no charges filed)": s.has_no_complaint,
Expand Down Expand Up @@ -598,7 +599,6 @@ def build_zip(record_summary: RecordSummary, user_information_dict: Dict[str, st
has_eligible_convictions = False
for case in record_summary.record.cases:
case_results = CaseResults.build(case, user_information_dict, sid)
case_results.case_number = case_results.case_number_possibly_in_part

if case_results.get_has_eligible_convictions:
has_eligible_convictions = True
Expand Down

0 comments on commit 2082c8a

Please sign in to comment.