Skip to content

Commit

Permalink
21485 update business summary fix bug (bcgov#2776)
Browse files Browse the repository at this point in the history
* Fix typo

* Added filingSubType in state filing
  • Loading branch information
AimeeGao authored Jun 20, 2024
1 parent 3aca194 commit 8ab1131
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<div class="pt-2">
<span>Incorporation Number: {{ filing.identifier }}</span>
</div>
{% elif filing.filingType == 'dissolution' and filing.filngSubType == 'involuntary' %}
{% elif filing.filingType == 'dissolution' and filing.filingSubType == 'involuntary' %}
<span>Effective Date:</span>
<span>{{ filing.effectiveDateTime }}</span>
{% else %}
Expand Down
1 change: 1 addition & 0 deletions legal-api/src/legal_api/reports/business_document.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,7 @@ def _format_state_filing(self, filing: Filing) -> dict:
filing_info = {}

filing_info['filingType'] = filing.filing_type
filing_info['filingSubType'] = filing.filing_sub_type
filing_info['filingDateTime'] = filing.filing_date.isoformat()
filing_info['effectiveDateTime'] = filing.effective_date.isoformat()

Expand Down

0 comments on commit 8ab1131

Please sign in to comment.