CRM-14199 Enhancement - Incorrect Math in Import routines
[civicrm-core.git] / CRM / Contribute / Form.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components generic to Contribution admin
38 *
39 */
40 class CRM_Contribute_Form extends CRM_Admin_Form {
41
42 /**
43 * Set default values for the form. Note that in edit/view mode
44 * the default values are retrieved from the database
45 *
46 *
47 * @return array
48 */
49 public function setDefaultValues() {
50 $defaults = array();
51
52 if (isset($this->_id)) {
53 $params = array('id' => $this->_id);
54 if (!empty( $this->_BAOName)) {
55 $baoName = $this->_BAOName;
56 $baoName::retrieve($params, $defaults);
57 }
58 }
59 if ($this->_action == CRM_Core_Action::DELETE && !empty($defaults['name'])) {
60 $this->assign('delName', $defaults['name']);
61 }
62 elseif ($this->_action == CRM_Core_Action::ADD) {
63 $condition = " AND is_default = 1";
64 $values = CRM_Core_OptionGroup::values('financial_account_type', false, false, false, $condition);
65 $defaults['financial_account_type_id'] = array_keys($values);
66 $defaults['is_active'] = 1;
67
68 }
69 elseif ($this->_action & CRM_Core_Action::UPDATE) {
70 if (!empty($defaults['contact_id']) || !empty($defaults['created_id'])) {
71 $contactID = !empty($defaults['created_id']) ? $defaults['created_id'] : $defaults['contact_id'];
72 $this->assign('created_id', $contactID);
73 $this->assign('organisationId', $contactID);
74 }
75
76 if ($parentId = CRM_Utils_Array::value('parent_id', $defaults)) {
77 $this->assign('parentId', $parentId);
78 }
79 }
80 return $defaults;
81 }
82
83 }