Commit | Line | Data |
---|---|---|
28abbcb0 | 1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
bc77d7c0 | 4 | | Copyright CiviCRM LLC. All rights reserved. | |
28abbcb0 | 5 | | | |
bc77d7c0 TO |
6 | | This work is published under the GNU AGPLv3 license with some | |
7 | | permitted exceptions and without any warranty. For full license | | |
8 | | and copyright information, see https://civicrm.org/licensing | | |
28abbcb0 | 9 | +--------------------------------------------------------------------+ |
d25dd0ee | 10 | */ |
28abbcb0 | 11 | |
12 | /** | |
13 | * | |
14 | * @package CRM | |
ca5cec67 | 15 | * @copyright CiviCRM LLC https://civicrm.org/licensing |
28abbcb0 | 16 | * $Id$ |
17 | * | |
18 | */ | |
19 | class CRM_Member_BAO_MembershipPayment extends CRM_Member_DAO_MembershipPayment { | |
20 | ||
28abbcb0 | 21 | /** |
fe482240 | 22 | * Class constructor. |
28abbcb0 | 23 | */ |
00be9182 | 24 | public function __construct() { |
28abbcb0 | 25 | parent::__construct(); |
26 | } | |
353ffa53 | 27 | |
28abbcb0 | 28 | /** |
fe482240 | 29 | * Add the membership Payments. |
28abbcb0 | 30 | * |
b2363ea8 TO |
31 | * @param array $params |
32 | * Reference array contains the values submitted by the form. | |
28abbcb0 | 33 | * |
28abbcb0 | 34 | * |
35 | * @return object | |
36 | */ | |
00be9182 | 37 | public static function create($params) { |
28abbcb0 | 38 | $hook = empty($params['id']) ? 'create' : 'edit'; |
39 | CRM_Utils_Hook::pre($hook, 'MembershipPayment', CRM_Utils_Array::value('id', $params), $params); | |
40 | $dao = new CRM_Member_DAO_MembershipPayment(); | |
41 | $dao->copyValues($params); | |
43c8d1dd | 42 | // We check for membership_id in case we are being called too early in the process. This is |
43 | // cludgey but is part of the deprecation process (ie. we are trying to do everything | |
44 | // from LineItem::create with a view to eventually removing this fn & the table. | |
be2fb01f | 45 | if (!civicrm_api3('Membership', 'getcount', ['id' => $params['membership_id']])) { |
43c8d1dd | 46 | return $dao; |
47 | } | |
48 | ||
99f71e5a EM |
49 | //Fixed for avoiding duplicate entry error when user goes |
50 | //back and forward during payment mode is notify | |
51 | if (!$dao->find(TRUE)) { | |
52 | $dao->save(); | |
53 | } | |
28abbcb0 | 54 | CRM_Utils_Hook::post($hook, 'MembershipPayment', $dao->id, $dao); |
99f71e5a EM |
55 | // CRM-14197 we are in the process on phasing out membershipPayment in favour of storing both contribution_id & entity_id (membership_id) on the line items |
56 | // table. However, at this stage we have both - there is still quite a bit of refactoring to do to set the line_iten entity_id right the first time | |
57 | // however, we can assume at this stage that any contribution id will have only one line item with that membership type in the line item table | |
58 | // OR the caller will have taken responsibility for updating the line items themselves so we will update using SQL here | |
a9f44ffb | 59 | if (!empty($params['isSkipLineItem'])) { |
60 | // Caller has taken responsibility for updating the line items. | |
61 | return $dao; | |
62 | } | |
67dbb78c | 63 | if (!isset($params['membership_type_id'])) { |
be2fb01f | 64 | $membership_type_id = civicrm_api3('membership', 'getvalue', [ |
353ffa53 | 65 | 'id' => $dao->membership_id, |
317fceb4 | 66 | 'return' => 'membership_type_id', |
be2fb01f | 67 | ]); |
67dbb78c MM |
68 | } |
69 | else { | |
70 | $membership_type_id = $params['membership_type_id']; | |
71 | } | |
99f71e5a EM |
72 | $sql = "UPDATE civicrm_line_item li |
73 | LEFT JOIN civicrm_price_field_value pv ON pv.id = li.price_field_value_id | |
74 | SET entity_table = 'civicrm_membership', entity_id = %1 | |
75 | WHERE pv.membership_type_id = %2 | |
99f71e5a | 76 | AND contribution_id = %3"; |
be2fb01f CW |
77 | CRM_Core_DAO::executeQuery($sql, [ |
78 | 1 => [$dao->membership_id, 'Integer'], | |
79 | 2 => [$membership_type_id, 'Integer'], | |
80 | 3 => [$dao->contribution_id, 'Integer'], | |
81 | ]); | |
28abbcb0 | 82 | return $dao; |
83 | } | |
84 | ||
85 | /** | |
fe482240 | 86 | * Delete membership Payments. |
28abbcb0 | 87 | * |
88 | * @param int $id | |
77b97be7 EM |
89 | * |
90 | * @return bool | |
28abbcb0 | 91 | */ |
00be9182 | 92 | public static function del($id) { |
28abbcb0 | 93 | $dao = new CRM_Member_DAO_MembershipPayment(); |
94 | $dao->id = $id; | |
95 | $result = FALSE; | |
96 | if ($dao->find(TRUE)) { | |
97 | $dao->delete(); | |
98 | $result = TRUE; | |
99 | } | |
100 | return $result; | |
101 | } | |
102 | ||
28abbcb0 | 103 | } |