Browse Source

Fix party code for spouse

pull/172/head
ariannedee 5 years ago
parent
commit
854209c3ae
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      edivorce/apps/core/utils/cso_filing.py

+ 1
- 1
edivorce/apps/core/utils/cso_filing.py View File

@ -76,7 +76,7 @@ def forms_to_file(responses_dict, initial=False):
if derived['wants_other_orders'] and responses_dict.get('name_change_you') == 'YES':
forms.append({'doc_type': 'NCV', 'party_code': 1})
if derived['wants_other_orders'] and responses_dict.get('name_change_spouse') == 'YES':
forms.append({'doc_type': 'NCV', 'party_code': 1})
forms.append({'doc_type': 'NCV', 'party_code': 2})
else:
return []
return forms

Loading…
Cancel
Save