From 7649439e9e2d6af943175c78df91fdd7875a4ca0 Mon Sep 17 00:00:00 2001 From: Alexy Mikhailichenko Date: Mon, 2 Mar 2020 21:19:44 -0800 Subject: [PATCH] Add privacy fields to ContributionDetail report Add other privacy fields as columns on the Member Contribution Detail report --- CRM/Report/Form/Member/ContributionDetail.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CRM/Report/Form/Member/ContributionDetail.php b/CRM/Report/Form/Member/ContributionDetail.php index 6b4ae72b4f..761ebed351 100644 --- a/CRM/Report/Form/Member/ContributionDetail.php +++ b/CRM/Report/Form/Member/ContributionDetail.php @@ -72,10 +72,26 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { 'title' => ts('Contact Subtype'), 'no_repeat' => TRUE, ], + 'do_not_phone' => [ + 'title' => ts('Do Not Phone'), + 'no_repeat' => TRUE, + ], 'do_not_email' => [ 'title' => ts('Do Not Email'), 'no_repeat' => TRUE, ], + 'do_not_mail' => [ + 'title' => ts('Do Not Mail'), + 'no_repeat' => TRUE, + ], + 'do_not_sms' => [ + 'title' => ts('Do Not SMS'), + 'no_repeat' => TRUE, + ], + 'do_not_trade' => [ + 'title' => ts('Do Not Trade'), + 'no_repeat' => TRUE, + ], 'is_opt_out' => [ 'title' => ts('No Bulk Email(Is Opt Out)'), 'no_repeat' => TRUE, -- 2.25.1