From 62a40853f41c9a5fddef8d4c8b9b17bd7b2e5585 Mon Sep 17 00:00:00 2001 From: Edsel Date: Wed, 15 Feb 2017 16:25:39 +0530 Subject: [PATCH] CRM-20280 Added credit card type field to LYBUNT report ---------------------------------------- * CRM-19997: Add Credit card type fields in contribution related reports https://issues.civicrm.org/jira/browse/CRM-19997 ---------------------------------------- * CRM-20280: https://issues.civicrm.org/jira/browse/CRM-20280 CRM-20280 Added credit card type field for LYBUNT report ---------------------------------------- * CRM-20280: Add credit card type field for LYBUNT report https://issues.civicrm.org/jira/browse/CRM-20280 CRM-20280 Fixed report to read from card type rather than credit card type ---------------------------------------- * CRM-20280: Add credit card type field for LYBUNT report https://issues.civicrm.org/jira/browse/CRM-20280 CRM-20280 Removed line break ---------------------------------------- * CRM-20280: https://issues.civicrm.org/jira/browse/CRM-20280 --- CRM/Report/Form/Contribute/Lybunt.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/CRM/Report/Form/Contribute/Lybunt.php b/CRM/Report/Form/Contribute/Lybunt.php index 608e408f36..93bcf8ec56 100644 --- a/CRM/Report/Form/Contribute/Lybunt.php +++ b/CRM/Report/Form/Contribute/Lybunt.php @@ -248,6 +248,26 @@ class CRM_Report_Form_Contribute_Lybunt extends CRM_Report_Form { ), ), ); + $this->_columns += array( + 'civicrm_financial_trxn' => array( + 'dao' => 'CRM_Financial_DAO_FinancialTrxn', + 'fields' => array( + 'card_type' => array( + 'title' => ts('Credit Card Type'), + 'dbAlias' => 'GROUP_CONCAT(financial_trxn_civireport.card_type SEPARATOR ",")', + ), + ), + 'filters' => array( + 'card_type' => array( + 'title' => ts('Credit Card Type'), + 'operatorType' => CRM_Report_Form::OP_MULTISELECT, + 'options' => CRM_Financial_DAO_FinancialTrxn::buildOptions('card_type'), + 'default' => NULL, + 'type' => CRM_Utils_Type::T_STRING, + ), + ), + ), + ); // If we have a campaign, build out the relevant elements if ($campaignEnabled && !empty($this->activeCampaigns)) { @@ -358,6 +378,8 @@ class CRM_Report_Form_Contribute_Lybunt extends CRM_Report_Form { $this->selectivelyAddLocationTablesJoinsToFilterQuery(); } + // for credit card type + $this->addFinancialTrxnFromClause(); } /** @@ -734,6 +756,11 @@ class CRM_Report_Form_Contribute_Lybunt extends CRM_Report_Form { $entryFound = TRUE; } + if (!empty($row['civicrm_financial_trxn_card_type'])) { + $rows[$rowNum]['civicrm_financial_trxn_card_type'] = $this->getLabels($row['civicrm_financial_trxn_card_type'], 'CRM_Financial_DAO_FinancialTrxn', 'card_type'); + $entryFound = TRUE; + } + // skip looking further in rows, if first row itself doesn't // have the column we need if (!$entryFound) { -- 2.25.1