Browse Source

DIV-794: Retrieve the monthly amount in schedule 1 from correct variable

pull/160/head
Benard Ebinu 7 years ago
parent
commit
59952365c1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      edivorce/apps/core/utils/derived.py

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

@ -216,7 +216,7 @@ def schedule_1_amount(responses, derived):
""" Return the amount as defined in schedule 1 for child support """
try:
return float(responses.get('order_monthly_child_support_amount', 0))
return float(responses.get('payor_monthly_child_support_amount', 0))
except ValueError:
return 0


Loading…
Cancel
Save