From 7bb5828eea9476b8f01c510577b7b9aeade44253 Mon Sep 17 00:00:00 2001 From: yashodha Date: Fri, 29 Jun 2018 15:08:47 +0530 Subject: [PATCH] core/issues#96 - Expose source column in booking report --- CRM/Report/Form/Contribute/Bookkeeping.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CRM/Report/Form/Contribute/Bookkeeping.php b/CRM/Report/Form/Contribute/Bookkeeping.php index 088e2d730e..8e4c25d1e3 100644 --- a/CRM/Report/Form/Contribute/Bookkeeping.php +++ b/CRM/Report/Form/Contribute/Bookkeeping.php @@ -301,6 +301,10 @@ class CRM_Report_Form_Contribute_Bookkeeping extends CRM_Report_Form { 'title' => ts('Contribution Status'), 'default' => TRUE, ), + 'contribution_source' => array( + 'title' => ts('Source'), + 'name' => 'source', + ), 'id' => array( 'title' => ts('Contribution ID'), 'default' => TRUE, @@ -314,6 +318,11 @@ class CRM_Report_Form_Contribute_Bookkeeping extends CRM_Report_Form { 'type' => CRM_Utils_Type::T_INT, ), 'receive_date' => array('operatorType' => CRM_Report_Form::OP_DATE), + 'contribution_source' => array( + 'title' => ts('Source'), + 'name' => 'source', + 'type' => CRM_Utils_Type::T_STRING, + ), 'contribution_status_id' => array( 'title' => ts('Contribution Status'), 'operatorType' => CRM_Report_Form::OP_MULTISELECT, -- 2.25.1