From a0e67d3cc3b8015bfe49464d70c1f168a66e09a6 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Mon, 28 Apr 2014 10:48:41 -0700 Subject: [PATCH] CRM-14529 - Move Soft Credit Type column option on Contrib Detail report. ---------------------------------------- * CRM-14529: https://issues.civicrm.org/jira/browse/CRM-14529 --- CRM/Report/Form/Contribute/Detail.php | 28 +++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/CRM/Report/Form/Contribute/Detail.php b/CRM/Report/Form/Contribute/Detail.php index bee3481c65..010c4bf9cd 100644 --- a/CRM/Report/Form/Contribute/Detail.php +++ b/CRM/Report/Form/Contribute/Detail.php @@ -144,18 +144,6 @@ class CRM_Report_Form_Contribute_Detail extends CRM_Report_Form { 'name' => 'id', 'title' => ts('Contribution ID'), ), - 'contribution_or_soft' => - array('title' => ts('Contribution OR Soft Credit?'), - 'dbAlias' => "'Contribution'" - ), - 'soft_credits' => - array('title' => ts('Soft Credits'), - 'dbAlias' => "NULL" - ), - 'soft_credit_for' => - array('title' => ts('Soft Credit For'), - 'dbAlias' => "NULL" - ), 'financial_type_id' => array('title' => ts('Financial Type'), 'default' => TRUE, ), @@ -176,13 +164,25 @@ class CRM_Report_Form_Contribute_Detail extends CRM_Report_Form { 'trxn_id' => NULL, 'receive_date' => array('default' => TRUE), 'receipt_date' => NULL, - 'fee_amount' => NULL, - 'net_amount' => NULL, 'total_amount' => array('title' => ts('Amount'), 'required' => TRUE, 'statistics' => array('sum' => ts('Amount')), ), + 'fee_amount' => NULL, + 'net_amount' => NULL, + 'contribution_or_soft' => + array('title' => ts('Contribution OR Soft Credit?'), + 'dbAlias' => "'Contribution'" + ), + 'soft_credits' => + array('title' => ts('Soft Credits'), + 'dbAlias' => "NULL" + ), + 'soft_credit_for' => + array('title' => ts('Soft Credit For'), + 'dbAlias' => "NULL" + ), ), 'filters' => array( -- 2.25.1