From f3ccf366e36a3ce713f2ca9cea430e40a5c0ca6a Mon Sep 17 00:00:00 2001
From: Kevin Cristiano <kcristiano@tadpole.cc>
Date: Tue, 28 Aug 2018 17:09:27 -0400
Subject: [PATCH] patch CiviCRM Export to Excel

https://lab.civicrm.org/extensions/civiexportexcel/commits/master/civiexportexcel-core.patch
@bgm Patch for Core to allow Values to export instead of Ids

Signed-off-by: Kevin Cristiano <kcristiano@tadpole.cc>
Signed-off-by: Kevin Cristiano <kcristiano@kcristiano.com>
---
 civicrm/CRM/Report/Form.php | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/civicrm/CRM/Report/Form.php b/civicrm/CRM/Report/Form.php
index c07f760b50..eaca994d0b 100644
--- a/civicrm/CRM/Report/Form.php
+++ b/civicrm/CRM/Report/Form.php
@@ -139,6 +139,9 @@ class CRM_Report_Form extends CRM_Core_Form {
    */
   protected $_groupFilter = FALSE;
 
+  // [ML] Required for civiexportexcel
+  public $supportsExportExcel = TRUE;
+
   /**
    * Has the report been optimised for group filtering.
    *
@@ -3470,6 +3473,9 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND
     elseif ($this->_outputMode == 'csv') {
       CRM_Report_Utils_Report::export2csv($this, $rows);
     }
+    elseif ($this->_outputMode == 'excel2007') {
+      CRM_CiviExportExcel_Utils_Report::export2excel2007($this, $rows);
+    }
     elseif ($this->_outputMode == 'group') {
       $group = $this->_params['groups'];
       $this->add2group($group);
-- 
GitLab