Skip to content
Snippets Groups Projects
Unverified Commit c26bb967 authored by Monish Deb's avatar Monish Deb Committed by GitHub
Browse files

Merge pull request #21213 from colemanw/entityBatchRef

EntityBatch - Deprecate del() function (#2757)
parents 975b26b3 99f76265
No related branches found
No related tags found
No related merge requests found
......@@ -29,19 +29,14 @@ class CRM_Batch_BAO_EntityBatch extends CRM_Batch_DAO_EntityBatch {
/**
* Remove entries from entity batch.
* @param array|int $params
* @deprecated
* @return CRM_Batch_DAO_EntityBatch
*/
public static function del($params) {
if (!is_array($params)) {
$params = ['id' => $params];
}
$entityBatch = new CRM_Batch_DAO_EntityBatch();
$entityId = $params['id'] ?? NULL;
CRM_Utils_Hook::pre('delete', 'EntityBatch', $entityId, $params);
$entityBatch->copyValues($params);
$entityBatch->delete();
CRM_Utils_Hook::post('delete', 'EntityBatch', $entityBatch->id, $entityBatch);
return $entityBatch;
return self::deleteRecord($params);
}
}
......@@ -479,7 +479,11 @@ class CRM_Financial_Page_AJAX {
$updated = CRM_Batch_BAO_EntityBatch::create($params);
}
else {
$updated = CRM_Batch_BAO_EntityBatch::del($params);
$delete = \Civi\Api4\EntityBatch::delete(FALSE);
foreach ($params as $field => $val) {
$delete->addWhere($field, '=', $val);
}
$updated = $delete->execute()->count();
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment