improvement
[civicrm-core.git] / CRM / Contribute / Form / ContributionView.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2015
32 */
33
34 /**
35 * This class generates form components for Payment-Instrument.
36 */
37 class CRM_Contribute_Form_ContributionView extends CRM_Core_Form {
38
39 /**
40 * Set variables up before form is built.
41 */
42 public function preProcess() {
43 $id = $this->get('id');
44 $params = array('id' => $id);
45 $context = CRM_Utils_Request::retrieve('context', 'String', $this);
46 $this->assign('context', $context);
47
48 $values = CRM_Contribute_BAO_Contribution::getValuesWithMappings($params);
49
50 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus() && $this->_action & CRM_Core_Action::VIEW) {
51 $financialTypeID = CRM_Contribute_PseudoConstant::financialType($values['financial_type_id']);
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 }
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 }
63 elseif ($this->_action & CRM_Core_Action::VIEW) {
64 $this->assign('noACL', TRUE);
65 }
66 CRM_Contribute_BAO_Contribution::resolveDefaults($values);
67 // @todo - I believe this cancelledStatus is unused - if someone reaches the same conclusion
68 // by grepping then the next few lines can go.
69 $cancelledStatus = TRUE;
70 $status = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
71 if (CRM_Utils_Array::value('contribution_status_id', $values) == array_search('Cancelled', $status)) {
72 $cancelledStatus = FALSE;
73 }
74 $this->assign('cancelledStatus', $cancelledStatus);
75
76 if (!empty($values['contribution_page_id'])) {
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
81 // get received into i.e to_financial_account_id from last trxn
82 $financialTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($values['contribution_id'], 'DESC');
83 $values['to_financial_account'] = '';
84 if (!empty($financialTrxnId['financialTrxnId'])) {
85 $values['to_financial_account_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $financialTrxnId['financialTrxnId'], 'to_financial_account_id');
86 if ($values['to_financial_account_id']) {
87 $values['to_financial_account'] = CRM_Contribute_PseudoConstant::financialAccount($values['to_financial_account_id']);
88 }
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 }
93 }
94
95 if (!empty($values['contribution_recur_id'])) {
96 $sql = "SELECT installments, frequency_interval, frequency_unit FROM civicrm_contribution_recur WHERE id = %1";
97 $params = array(1 => array($values['contribution_recur_id'], 'Integer'));
98 $dao = CRM_Core_DAO::executeQuery($sql, $params);
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
134 if (!empty($values['address_id'])) {
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
141 //assign soft credit record if exists.
142 $SCRecords = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($values['contribution_id'], TRUE);
143 if (!empty($SCRecords['soft_credit'])) {
144 $this->assign('softContributions', $SCRecords['soft_credit']);
145 unset($SCRecords['soft_credit']);
146 }
147
148 //assign pcp record if exists
149 foreach ($SCRecords as $name => $value) {
150 $this->assign($name, $value);
151 }
152
153 $lineItems = array();
154 if ($id) {
155 $lineItem = CRM_Price_BAO_LineItem::getLineItems($id, 'contribution', 1, TRUE, TRUE);
156 if (!empty($lineItem)) {
157 $lineItems[] = $lineItem;
158 }
159
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 }
169 if ($values['contribution_status'] == 'Refunded') {
170 $this->assign('refund_trxn_id', CRM_Core_BAO_FinancialTrxn::getRefundTransactionTrxnIDgi($id));
171 }
172
173 // assign values to the template
174 $this->assign($values);
175 $invoiceSettings = Civi::settings()->get('contribution_invoice_settings');
176 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
177 $this->assign('invoicing', $invoicing);
178 if ($invoicing && isset($values['tax_amount'])) {
179 $this->assign('totalTaxAmount', $values['tax_amount']);
180 }
181
182 $displayName = CRM_Contact_BAO_Contact::displayName($values['contact_id']);
183 $this->assign('displayName', $displayName);
184
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
191 CRM_Utils_System::setTitle(ts('View Contribution from') . ' ' . $displayName);
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 /**
222 * Build the form object.
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 }
236
237 }