Skip to content

Commit

Permalink
solr-feeder:pass good standing along (#1416)
Browse files Browse the repository at this point in the history
Signed-off-by: Kial Jinnah <[email protected]>
  • Loading branch information
kialj876 authored Sep 14, 2023
1 parent 58f66a8 commit 9728930
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions solr-feeder/solr_feeder/services/colin.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def get_business_info(legal_type: str, identifier: str) -> tuple[dict, dict]:
business = {
# add BC prefix to payload if its a BC limited company
'email': res_json['business']['email'],
'goodStanding': res_json['business'].get('goodStanding', None),
'identifier': f'BC{identifier}' if legal_type == 'BC' else identifier,
'legalName': res_json['business']['legalName'],
'legalType': legal_type,
Expand Down
2 changes: 1 addition & 1 deletion solr-feeder/solr_feeder/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
Development release segment: .devN
"""

__version__ = '2.0.4' # pylint: disable=invalid-name
__version__ = '2.0.5' # pylint: disable=invalid-name

0 comments on commit 9728930

Please sign in to comment.