X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FContribution.php;h=cb138a484e0af7120db4d18cccb72075b2f70f85;hb=64a155b595059761e3a852be1a44225b29107366;hp=ee3d251e2b1d9896550212b7c36aa14ad6a6d59f;hpb=b59f68f08d7d428cb3622cfdf94b526c4d515928;p=civicrm-core.git diff --git a/api/v3/Contribution.php b/api/v3/Contribution.php index ee3d251e2b..cb138a484e 100644 --- a/api/v3/Contribution.php +++ b/api/v3/Contribution.php @@ -46,6 +46,24 @@ function civicrm_api3_contribution_create(&$params) { _civicrm_api3_custom_format_params($params, $values, 'Contribution'); $params = array_merge($params, $values); + if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) { + if (empty($params['id'])) { + $op = 'add'; + } + else { + if (empty($params['financial_type_id'])) { + $params['financial_type_id'] = civicrm_api3('Contribution', 'getvalue', array( + 'id' => $params['id'], + 'return' => 'financial_type_id', + )); + } + $op = 'edit'; + } + CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($types, $op); + if (!in_array($params['financial_type_id'], array_keys($types))) { + return civicrm_api3_create_error('You do not have permission to create this contribution'); + } + } if (!empty($params['id']) && !empty($params['contribution_status_id'])) { $error = array(); //throw error for invalid status change such as setting completed back to pending @@ -105,21 +123,21 @@ function _civicrm_api3_contribution_create_spec(&$params) { $params['soft_credit_to'] = array( 'name' => 'soft_credit_to', 'title' => 'Soft Credit contact ID (legacy)', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'ID of Contact to be Soft credited to (deprecated - use contribution_soft api)', 'FKClassName' => 'CRM_Contact_DAO_Contact', ); $params['honor_contact_id'] = array( 'name' => 'honor_contact_id', 'title' => 'Honoree contact ID (legacy)', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'ID of honoree contact (deprecated - use contribution_soft api)', 'FKClassName' => 'CRM_Contact_DAO_Contact', ); $params['honor_type_id'] = array( 'name' => 'honor_type_id', 'title' => 'Honoree Type (legacy)', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'Type of honoree contact (deprecated - use contribution_soft api)', 'pseudoconstant' => TRUE, ); @@ -140,9 +158,14 @@ function _civicrm_api3_contribution_create_spec(&$params) { ); $params['batch_id'] = array( 'title' => 'Batch', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'Batch which relevant transactions should be added to', ); + $params['refund_trxn_id'] = array( + 'title' => 'Refund Transaction ID', + 'type' => CRM_Utils_Type::T_STRING, + 'description' => 'Transaction ID specific to the refund taking place', + ); } /** @@ -183,6 +206,15 @@ function _civicrm_api3_contribution_create_legacy_support_45(&$params) { function civicrm_api3_contribution_delete($params) { $contributionID = !empty($params['contribution_id']) ? $params['contribution_id'] : $params['id']; + // First check contribution financial type + $financialType = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionID, 'financial_type_id'); + // Now check permissioned lineitems & permissioned contribution + if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus() + && !CRM_Core_Permission::check('delete contributions of type ' . CRM_Contribute_PseudoConstant::financialType($financialType)) || + !CRM_Financial_BAO_FinancialType::checkPermissionedLineItems($contributionID, 'delete', FALSE) + ) { + return civicrm_api3_create_error('You do not have permission to delete this contribution'); + } if (CRM_Contribute_BAO_Contribution::deleteContribution($contributionID)) { return civicrm_api3_create_success(array($contributionID => 1)); } @@ -214,18 +246,29 @@ function _civicrm_api3_contribution_delete_spec(&$params) { function civicrm_api3_contribution_get($params) { $mode = CRM_Contact_BAO_Query::MODE_CONTRIBUTE; - list($dao, $query) = _civicrm_api3_get_query_object($params, $mode, 'Contribution'); - - $contribution = array(); - while ($dao->fetch()) { - //CRM-8662 - $contribution_details = $query->store($dao); - $softContribution = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($dao->contribution_id, TRUE); - $contribution[$dao->contribution_id] = array_merge($contribution_details, $softContribution); + $returnProperties = CRM_Contribute_BAO_Query::defaultReturnProperties($mode); + + $contributions = _civicrm_api3_get_using_query_object('Contribution', $params, array(), NULL, $mode, $returnProperties); + + foreach ($contributions as $id => $contribution) { + $softContribution = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($id, TRUE); + $contributions[$id] = array_merge($contribution, $softContribution); // format soft credit for backward compatibility - _civicrm_api3_format_soft_credit($contribution[$dao->contribution_id]); + _civicrm_api3_format_soft_credit($contributions[$id]); } - return civicrm_api3_create_success($contribution, $params, 'Contribution', 'get', $dao); + return civicrm_api3_create_success($contributions, $params, 'Contribution', 'get'); +} + +/** + * Get number of contacts matching the supplied criteria. + * + * @param array $params + * + * @return int + */ +function civicrm_api3_contribution_getcount($params) { + $count = _civicrm_api3_get_using_query_object('Contribution', $params, array(), TRUE, CRM_Contact_BAO_Query::MODE_CONTRIBUTE); + return (int) $count; } /** @@ -473,6 +516,11 @@ function _civicrm_api3_contribution_completetransaction_spec(&$params) { 'description' => 'If a fee has been charged then the amount', 'type' => CRM_Utils_Type::T_FLOAT, ); + $params['trxn_date'] = array( + 'title' => 'Transaction Date', + 'description' => 'Date this transaction occurred', + 'type' => CRM_Utils_Type::T_DATE, + ); } /** @@ -548,6 +596,9 @@ function _ipn_process_transaction(&$params, $contribution, $input, $ids, $firstC if (isset($params['is_email_receipt'])) { $input['is_email_receipt'] = $params['is_email_receipt']; } + if (!empty($params['trxn_date'])) { + $input['trxn_date'] = $params['trxn_date']; + } if (empty($contribution->contribution_page_id)) { static $domainFromName; static $domainFromEmail;