Skip to content

Commit

Permalink
Add filing comment fill in, default to blank
Browse files Browse the repository at this point in the history
  • Loading branch information
BryceStevenWilley committed Dec 20, 2023
1 parent 8ddce5a commit 2057219
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docassemble/EFSPIntegration/data/questions/efiling_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,8 @@ code: |
if x.enabled:
x.filing_type
x.filing_description
if filing_comment_datafield.get("isvisible"):
x.filing_comment
x.reference_number
x.document_type
x.motion_type
Expand All @@ -415,6 +417,10 @@ code: |
x.as_pdf('preview', refresh=False)
x.completed = True
---
generic object: ALDocument
code: |
x.filing_comment = ""
---
generic object: ALDocumentBundle
code: |
if x.enabled:
Expand All @@ -435,6 +441,8 @@ code: |
subdoc.document_type_map = x.document_type_map
subdoc.document_type
x.filing_description
if filing_comment_datafield.get("isvisible"):
x.filing_comment
x.reference_number
x.motion_type
x.filing_parties
Expand All @@ -445,6 +453,10 @@ code: |
x.as_pdf('preview', refresh=False)
x.completed = True
---
generic object: ALDocumentBundle
code: |
x.filing_comment = ""
---
generic object: DAObject
id: eserve
question: |
Expand Down Expand Up @@ -730,6 +742,9 @@ code: |
code: |
filing_description_datafield = proxy_conn.get_datafield(court_id, 'FilingFilingDescription').data or {}
---
code: |
filing_comment_datafield = proxy_conn.get_datafield(court_id, 'FilingFilingComments').data or {}
---
code: |
filing_type_options, filing_type_map = choices_and_map(proxy_conn.get_filing_types(court_id, efile_case_category, efile_case_type, is_initial_filing).data)
---
Expand Down

0 comments on commit 2057219

Please sign in to comment.