nonprofittechy / docassemble-ssioverpaymentwaiver

Request for Waiver of SSI Overpayment
https://docassemble.org
MIT License
2 stars 6 forks source link

Page id: income types #35

Closed miabonardi closed 3 years ago

miabonardi commented 3 years ago

It might be beneficial for the user if "other support" and "other" were more clearly differentiated.

nonprofittechy commented 3 years ago

This will need to be adjusted in custom_income.py--just the display value should be changed

nonprofittechy commented 3 years ago

Update the list in custom_income.py inside modules to be a list of dictionaries, like what I started here:

def generate_income_list() -> list:
  return [
    {"SSDI": "SSDI"},
    {"SSR": "Social Security Retirement benefits"},
    {"SSI": "SSI"},
nonprofittechy commented 3 years ago

Eventually we want to synchronize this w/ how its asked on SSA-634, which is better. Will need to update the income types, the checklist screener (so people don't answer same thing 2x) and definition of receives_support in ssi_overpayment_waiver.yml

miabonardi commented 3 years ago

Done