Skip to content

Commit

Permalink
Merge pull request #13726 from avall-llovera/patch-1
Browse files Browse the repository at this point in the history
dev/core#767 Add 'Cancelled / Refunded Date' and 'Cancellation / Refund Reason'
  • Loading branch information
yashodha authored Mar 4, 2019
2 parents b76ae64 + 441a579 commit b5f845c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CRM/Report/Form/Contribute/Detail.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,12 @@ public function __construct() {
'title' => ts('Soft Credit For'),
'dbAlias' => "NULL",
),
'cancel_date' => array(
'title' => ts('Cancelled / Refunded Date'),
),
'cancel_reason' => array(
'title' => ts('Cancellation / Refund Reason'),
),
),
'filters' => array(
'contribution_or_soft' => array(
Expand Down Expand Up @@ -235,6 +241,13 @@ public function __construct() {
'type' => CRM_Utils_Type::T_INT,
),
'total_amount' => array('title' => ts('Contribution Amount')),
'cancel_date' => array(
'title' => ts('Cancelled / Refunded Date'),
'operatorType' => CRM_Report_Form::OP_DATE,
),
'cancel_reason' => array(
'title' => ts('Cancellation / Refund Reason'),
),
),
'order_bys' => array(
'financial_type_id' => array('title' => ts('Financial Type')),
Expand Down

0 comments on commit b5f845c

Please sign in to comment.