Process partially deductible contributions #23
Labels
feature
needs funding
status:needs work
There is code, but it needs additional work before it should be reviewed.
Milestone
If you have contributions that are partially deductible, i.e. the
non_deductible_amount
is not the wholetotal_amount
, the donation receipts are incorrect. Effectively the whole amount is receipted in this case!If you want to know whether you are affected, you can use this query to see how many partially deductible contributions you have:
SELECT COUNT(id) AS number_of_partial_donations FROM civicrm_contribution WHERE (non_deductible_amount IS NOT NULL AND non_deductible_amount != 0 AND non_deductible_amount != total_amount);
Obviously, this is only relevant if the contributions are of an deductible type that has been selected for receipting.
The text was updated successfully, but these errors were encountered: