You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error in module line 138 when generating receipts due to reference to non standard ministry projects database.
Fixed by changing line 129+ to:
$sql = "SELECT contact_id,display_name,total_amount,
DATE_FORMAT(receive_date,'%b %d, %Y') as gift_date
FROM civicrm_contribution ccontr
LEFT JOIN civicrm_contact cc ON cc.id = ccontr.contact_id
WHERE receive_date BETWEEN '$begin_date 00:00:00' AND '$end_date 23:59:59'
AND contact_id = {$cid}";
// Join with 'civicrm_value_ministry_projects_3' removed since it's not standard
// LEFT JOIN civicrm_value_ministry_projects_3 cvmp ON cvmp.entity_id = ccontr.id
The text was updated successfully, but these errors were encountered:
Error in module line 138 when generating receipts due to reference to non standard ministry projects database.
Fixed by changing line 129+ to:
$sql = "SELECT contact_id,display_name,total_amount,
DATE_FORMAT(receive_date,'%b %d, %Y') as gift_date
FROM civicrm_contribution ccontr
LEFT JOIN civicrm_contact cc ON cc.id = ccontr.contact_id
WHERE receive_date BETWEEN '$begin_date 00:00:00' AND '$end_date 23:59:59'
AND contact_id = {$cid}";
// Join with 'civicrm_value_ministry_projects_3' removed since it's not standard
// LEFT JOIN civicrm_value_ministry_projects_3 cvmp ON cvmp.entity_id = ccontr.id
The text was updated successfully, but these errors were encountered: