improvement
[civicrm-core.git] / CRM / Contribute / Form / ContributionView.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33
34/**
95cdcc0f 35 * This class generates form components for Payment-Instrument.
6a488035
TO
36 */
37class CRM_Contribute_Form_ContributionView extends CRM_Core_Form {
38
39 /**
fe482240 40 * Set variables up before form is built.
6a488035
TO
41 */
42 public function preProcess() {
353ffa53 43 $id = $this->get('id');
353ffa53 44 $params = array('id' => $id);
6a488035
TO
45 $context = CRM_Utils_Request::retrieve('context', 'String', $this);
46 $this->assign('context', $context);
47
99cdd94d 48 $values = CRM_Contribute_BAO_Contribution::getValuesWithMappings($params);
49
66af7c48 50 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus() && $this->_action & CRM_Core_Action::VIEW) {
c0f5a838 51 $financialTypeID = CRM_Contribute_PseudoConstant::financialType($values['financial_type_id']);
59ccc8cd
E
52 CRM_Financial_BAO_FinancialType::checkPermissionedLineItems($id, 'view');
53 if (CRM_Financial_BAO_FinancialType::checkPermissionedLineItems($id, 'edit', FALSE)) {
54 $this->assign('canEdit', TRUE);
55 }
56 if (CRM_Financial_BAO_FinancialType::checkPermissionedLineItems($id, 'delete', FALSE)) {
57 $this->assign('canDelete', TRUE);
58 }
c0f5a838
E
59 if (!CRM_Core_Permission::check('view contributions of type ' . $financialTypeID)) {
60 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
61 }
62 }
895d596d
E
63 elseif ($this->_action & CRM_Core_Action::VIEW) {
64 $this->assign('noACL', TRUE);
65 }
6a488035 66 CRM_Contribute_BAO_Contribution::resolveDefaults($values);
99cdd94d 67 // @todo - I believe this cancelledStatus is unused - if someone reaches the same conclusion
68 // by grepping then the next few lines can go.
914c8124 69 $cancelledStatus = TRUE;
d230e755 70 $status = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
914c8124
PB
71 if (CRM_Utils_Array::value('contribution_status_id', $values) == array_search('Cancelled', $status)) {
72 $cancelledStatus = FALSE;
73 }
d230e755 74 $this->assign('cancelledStatus', $cancelledStatus);
6a488035 75
a7488080 76 if (!empty($values['contribution_page_id'])) {
6a488035
TO
77 $contribPages = CRM_Contribute_PseudoConstant::contributionPage(NULL, TRUE);
78 $values['contribution_page_title'] = CRM_Utils_Array::value(CRM_Utils_Array::value('contribution_page_id', $values), $contribPages);
79 }
80
b44e3f84 81 // get received into i.e to_financial_account_id from last trxn
6a488035
TO
82 $financialTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($values['contribution_id'], 'DESC');
83 $values['to_financial_account'] = '';
a7488080 84 if (!empty($financialTrxnId['financialTrxnId'])) {
eea16664 85 $values['to_financial_account_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $financialTrxnId['financialTrxnId'], 'to_financial_account_id');
6a488035 86 if ($values['to_financial_account_id']) {
eea16664 87 $values['to_financial_account'] = CRM_Contribute_PseudoConstant::financialAccount($values['to_financial_account_id']);
6a488035 88 }
2cc6b631
DG
89 $values['payment_processor_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $financialTrxnId['financialTrxnId'], 'payment_processor_id');
90 if ($values['payment_processor_id']) {
91 $values['payment_processor_name'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessor', $values['payment_processor_id'], 'name');
92 }
6a488035 93 }
eea16664 94
a7488080 95 if (!empty($values['contribution_recur_id'])) {
353ffa53 96 $sql = "SELECT installments, frequency_interval, frequency_unit FROM civicrm_contribution_recur WHERE id = %1";
6a488035 97 $params = array(1 => array($values['contribution_recur_id'], 'Integer'));
353ffa53 98 $dao = CRM_Core_DAO::executeQuery($sql, $params);
6a488035
TO
99 if ($dao->fetch()) {
100 $values['recur_installments'] = $dao->installments;
101 $values['recur_frequency_unit'] = $dao->frequency_unit;
102 $values['recur_frequency_interval'] = $dao->frequency_interval;
103 }
104 }
105
106 $groupTree = CRM_Core_BAO_CustomGroup::getTree('Contribution', $this, $id, 0, CRM_Utils_Array::value('financial_type_id', $values));
107 CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $groupTree);
108
109 $premiumId = NULL;
110 if ($id) {
111 $dao = new CRM_Contribute_DAO_ContributionProduct();
112 $dao->contribution_id = $id;
113 if ($dao->find(TRUE)) {
114 $premiumId = $dao->id;
115 $productID = $dao->product_id;
116 }
117 }
118
119 if ($premiumId) {
120 $productDAO = new CRM_Contribute_DAO_Product();
121 $productDAO->id = $productID;
122 $productDAO->find(TRUE);
123
124 $this->assign('premium', $productDAO->name);
125 $this->assign('option', $dao->product_option);
126 $this->assign('fulfilled', $dao->fulfilled_date);
127 }
128
129 // Get Note
130 $noteValue = CRM_Core_BAO_Note::getNote(CRM_Utils_Array::value('id', $values), 'civicrm_contribution');
131 $values['note'] = array_values($noteValue);
132
133 // show billing address location details, if exists
a7488080 134 if (!empty($values['address_id'])) {
6a488035
TO
135 $addressParams = array('id' => CRM_Utils_Array::value('address_id', $values));
136 $addressDetails = CRM_Core_BAO_Address::getValues($addressParams, FALSE, 'id');
137 $addressDetails = array_values($addressDetails);
138 $values['billing_address'] = $addressDetails[0]['display'];
139 }
140
b6545333 141 //assign soft credit record if exists.
142 $SCRecords = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($values['contribution_id'], TRUE);
00a1afe2 143 if (!empty($SCRecords['soft_credit'])) {
144 $this->assign('softContributions', $SCRecords['soft_credit']);
145 unset($SCRecords['soft_credit']);
146 }
b6545333 147
148 //assign pcp record if exists
149 foreach ($SCRecords as $name => $value) {
150 $this->assign($name, $value);
151 }
6a488035
TO
152
153 $lineItems = array();
154 if ($id) {
0d6f29cd 155 $lineItem = CRM_Price_BAO_LineItem::getLineItems($id, 'contribution', 1, TRUE, TRUE);
156 if (!empty($lineItem)) {
157 $lineItems[] = $lineItem;
158 }
159
6a488035
TO
160 }
161 $this->assign('lineItem', empty($lineItems) ? FALSE : $lineItems);
162 $values['totalAmount'] = $values['total_amount'];
163
164 //do check for campaigns
165 if ($campaignId = CRM_Utils_Array::value('campaign_id', $values)) {
166 $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($campaignId);
167 $values['campaign'] = $campaigns[$campaignId];
168 }
99cdd94d 169 if ($values['contribution_status'] == 'Refunded') {
170 $this->assign('refund_trxn_id', CRM_Core_BAO_FinancialTrxn::getRefundTransactionTrxnIDgi($id));
171 }
6a488035
TO
172
173 // assign values to the template
174 $this->assign($values);
aaffa79f 175 $invoiceSettings = Civi::settings()->get('contribution_invoice_settings');
03b412ae
PB
176 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
177 $this->assign('invoicing', $invoicing);
178 if ($invoicing && isset($values['tax_amount'])) {
a32709be
PB
179 $this->assign('totalTaxAmount', $values['tax_amount']);
180 }
6a488035
TO
181
182 $displayName = CRM_Contact_BAO_Contact::displayName($values['contact_id']);
183 $this->assign('displayName', $displayName);
eea16664 184
6a488035
TO
185 // Check if this is default domain contact CRM-10482
186 if (CRM_Contact_BAO_Contact::checkDomainContact($values['contact_id'])) {
187 $displayName .= ' (' . ts('default organization') . ')';
188 }
189
190 // omitting contactImage from title for now since the summary overlay css doesn't work outside of our crm-container
86bfa4f6 191 CRM_Utils_System::setTitle(ts('View Contribution from') . ' ' . $displayName);
6a488035
TO
192
193 // add viewed contribution to recent items list
194 $url = CRM_Utils_System::url('civicrm/contact/view/contribution',
195 "action=view&reset=1&id={$values['id']}&cid={$values['contact_id']}&context=home"
196 );
197
198 $title = $displayName . ' - (' . CRM_Utils_Money::format($values['total_amount']) . ' ' . ' - ' . $values['financial_type'] . ')';
199
200 $recentOther = array();
201 if (CRM_Core_Permission::checkActionPermission('CiviContribute', CRM_Core_Action::UPDATE)) {
202 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/contact/view/contribution',
203 "action=update&reset=1&id={$values['id']}&cid={$values['contact_id']}&context=home"
204 );
205 }
206 if (CRM_Core_Permission::checkActionPermission('CiviContribute', CRM_Core_Action::DELETE)) {
207 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/contact/view/contribution',
208 "action=delete&reset=1&id={$values['id']}&cid={$values['contact_id']}&context=home"
209 );
210 }
211 CRM_Utils_Recent::add($title,
212 $url,
213 $values['id'],
214 'Contribution',
215 $values['contact_id'],
216 NULL,
217 $recentOther
218 );
219 }
220
221 /**
fe482240 222 * Build the form object.
6a488035
TO
223 */
224 public function buildQuickForm() {
225
226 $this->addButtons(array(
227 array(
228 'type' => 'cancel',
229 'name' => ts('Done'),
230 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
231 'isDefault' => TRUE,
232 ),
233 )
234 );
235 }
96025800 236
6a488035 237}