131 lines
4.9 KiB
PHP
131 lines
4.9 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
+--------------------------------------------------------------------+
|
||
|
| CiviCRM version 4.7 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| This file is a part of CiviCRM. |
|
||
|
| |
|
||
|
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||
|
| under the terms of the GNU Affero General Public License |
|
||
|
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||
|
| |
|
||
|
| CiviCRM is distributed in the hope that it will be useful, but |
|
||
|
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||
|
| See the GNU Affero General Public License for more details. |
|
||
|
| |
|
||
|
| You should have received a copy of the GNU Affero General Public |
|
||
|
| License and the CiviCRM Licensing Exception along |
|
||
|
| with this program; if not, contact CiviCRM LLC |
|
||
|
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||
|
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||
|
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||
|
+--------------------------------------------------------------------+
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @package CRM
|
||
|
* @copyright CiviCRM LLC (c) 2004-2017
|
||
|
* $Id$
|
||
|
*
|
||
|
*/
|
||
|
class CRM_Event_BAO_ParticipantPayment extends CRM_Event_DAO_ParticipantPayment {
|
||
|
|
||
|
/**
|
||
|
* Creates or updates a participant payment record.
|
||
|
*
|
||
|
* @param array $params
|
||
|
* of values to initialize the record with.
|
||
|
* @param array $ids
|
||
|
* with one values of id for this participantPayment record (for update).
|
||
|
*
|
||
|
* @return object
|
||
|
* the partcipant payment record
|
||
|
*/
|
||
|
public static function create(&$params, &$ids) {
|
||
|
if (isset($ids['id'])) {
|
||
|
CRM_Utils_Hook::pre('edit', 'ParticipantPayment', $ids['id'], $params);
|
||
|
}
|
||
|
else {
|
||
|
CRM_Utils_Hook::pre('create', 'ParticipantPayment', NULL, $params);
|
||
|
}
|
||
|
|
||
|
$participantPayment = new CRM_Event_BAO_ParticipantPayment();
|
||
|
$participantPayment->copyValues($params);
|
||
|
if (isset($ids['id'])) {
|
||
|
$participantPayment->id = CRM_Utils_Array::value('id', $ids);
|
||
|
}
|
||
|
else {
|
||
|
$participantPayment->find(TRUE);
|
||
|
}
|
||
|
$participantPayment->save();
|
||
|
|
||
|
if (isset($ids['id'])) {
|
||
|
CRM_Utils_Hook::post('edit', 'ParticipantPayment', $ids['id'], $participantPayment);
|
||
|
}
|
||
|
else {
|
||
|
CRM_Utils_Hook::post('create', 'ParticipantPayment', NULL, $participantPayment);
|
||
|
}
|
||
|
|
||
|
//generally if people are creating participant_payments via the api they won't be setting the line item correctly - we can't help them if they are doing complex transactions
|
||
|
// but if they have a single line item for the contribution we can assume it should refer to the participant line
|
||
|
$lineItemCount = CRM_Core_DAO::singleValueQuery("select count(*) FROM civicrm_line_item WHERE contribution_id = %1", array(
|
||
|
1 => array(
|
||
|
$participantPayment->contribution_id,
|
||
|
'Integer',
|
||
|
),
|
||
|
));
|
||
|
if ($lineItemCount == 1) {
|
||
|
$sql = "UPDATE civicrm_line_item li
|
||
|
SET entity_table = 'civicrm_participant', entity_id = %1
|
||
|
WHERE contribution_id = %2 AND entity_table = 'civicrm_contribution'";
|
||
|
CRM_Core_DAO::executeQuery($sql, array(
|
||
|
1 => array($participantPayment->participant_id, 'Integer'),
|
||
|
2 => array($participantPayment->contribution_id, 'Integer'),
|
||
|
));
|
||
|
}
|
||
|
|
||
|
return $participantPayment;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Delete the record that are associated with this ParticipantPayment.
|
||
|
* Also deletes the associated contribution for this participant
|
||
|
*
|
||
|
* @param array $params
|
||
|
* Associative array whose values match the record to be deleted.
|
||
|
*
|
||
|
* @return bool
|
||
|
* true if deleted false otherwise
|
||
|
*/
|
||
|
public static function deleteParticipantPayment($params) {
|
||
|
$participantPayment = new CRM_Event_DAO_ParticipantPayment();
|
||
|
|
||
|
$valid = FALSE;
|
||
|
foreach ($params as $field => $value) {
|
||
|
if (!empty($value)) {
|
||
|
$participantPayment->$field = $value;
|
||
|
$valid = TRUE;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (!$valid) {
|
||
|
CRM_Core_Error::fatal();
|
||
|
}
|
||
|
|
||
|
if ($participantPayment->find(TRUE)) {
|
||
|
CRM_Utils_Hook::pre('delete', 'ParticipantPayment', $participantPayment->id, $params);
|
||
|
CRM_Contribute_BAO_Contribution::deleteContribution($participantPayment->contribution_id);
|
||
|
$participantPayment->delete();
|
||
|
CRM_Utils_Hook::post('delete', 'ParticipantPayment', $participantPayment->id, $participantPayment);
|
||
|
return $participantPayment;
|
||
|
}
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
}
|