From f5aace12cacf215ca5adba0da09a45992c69e912 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Mon, 19 Aug 2013 18:10:11 -0700 Subject: [PATCH] CRM-13247 add column for Check Number to contribution detail reports. ---------------------------------------- * CRM-13247: Add "Check Number" to Display Columns in CiviReport > Contribution Details > Report Criteria http://issues.civicrm.org/jira/browse/CRM-13247 --- CRM/Report/Form/Contribute/Detail.php | 2 ++ CRM/Report/Form/Contribute/HouseholdSummary.php | 2 ++ CRM/Report/Form/Contribute/OrganizationSummary.php | 2 ++ 3 files changed, 6 insertions(+) diff --git a/CRM/Report/Form/Contribute/Detail.php b/CRM/Report/Form/Contribute/Detail.php index f3ed819482..6bf7a14f93 100644 --- a/CRM/Report/Form/Contribute/Detail.php +++ b/CRM/Report/Form/Contribute/Detail.php @@ -193,6 +193,8 @@ class CRM_Report_Form_Contribute_Detail extends CRM_Report_Form { ), 'payment_instrument_id' => array('title' => ts('Payment Type'), ), + 'check_number' => array('title' => ts('Check Number'), + ), 'currency' => array('required' => TRUE, 'no_display' => TRUE, diff --git a/CRM/Report/Form/Contribute/HouseholdSummary.php b/CRM/Report/Form/Contribute/HouseholdSummary.php index 8134f2cbd9..d112e0bf8f 100644 --- a/CRM/Report/Form/Contribute/HouseholdSummary.php +++ b/CRM/Report/Form/Contribute/HouseholdSummary.php @@ -131,6 +131,8 @@ class CRM_Report_Form_Contribute_HouseholdSummary extends CRM_Report_Form { 'title' => 'Contribution Status', 'default' => TRUE, ), + 'check_number' => array('title' => ts('Check Number'), + ), 'currency' => array( 'required' => TRUE, 'no_display' => TRUE, diff --git a/CRM/Report/Form/Contribute/OrganizationSummary.php b/CRM/Report/Form/Contribute/OrganizationSummary.php index a51f1cedd5..d0b9b2a6c3 100644 --- a/CRM/Report/Form/Contribute/OrganizationSummary.php +++ b/CRM/Report/Form/Contribute/OrganizationSummary.php @@ -131,6 +131,8 @@ class CRM_Report_Form_Contribute_OrganizationSummary extends CRM_Report_Form { 'title' => 'Contribution Status', 'default' => TRUE, ), + 'check_number' => array('title' => ts('Check Number'), + ), 'currency' => array( 'required' => TRUE, 'no_display' => TRUE, -- 2.25.1