ustaxes / UsTaxes

Tax filing web application
https://ustaxes.org
GNU Affero General Public License v3.0
1.42k stars 103 forks source link

Cash charitable contribution on 1040 line 12b #1094

Open philiplantz opened 2 years ago

philiplantz commented 2 years ago

I didn't see a way to put a value on this line. I thought it might propagate from the cash charitable contributions line in the itemized deductions page, but it doesn't seem to do that.

zakpatterson commented 2 years ago

Thanks for the report!

philiplantz commented 2 years ago

I don't have a way to build and test yet, so I'm just putting this here for safekeeping.

F1040.ts line 461:

    l12b = (): number | undefined => {
      if (this.info.itemizedDeductions && this.scheduleA === undefined) {
        return this.info.itemizedDeductions.charityCashCheck
      }
      return undefined
    }

(And remove the "TODO" at line 460.)