Skip to content

Commit

Permalink
[BUGFIX] Invalid tablename leads to malfunctioning cancellation of order
Browse files Browse the repository at this point in the history
  • Loading branch information
hojalatheef committed May 31, 2024
1 parent fcd0c56 commit 13ea677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Service/CancellationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function cancel(

// Remove with DataHandler
$this->dataHandler->start([], []);
$this->dataHandler->deleteRecord('tx_yourext_domain_model_order', $order->getUid());
$this->dataHandler->deleteRecord('tx_reserve_domain_model_order', $order->getUid());
$this->dataHandler->process_datamap();

CacheUtility::clearPageCachesForPagesWithCurrentFacility($order->getBookedPeriod()->getFacility()->getUid());
Expand Down

0 comments on commit 13ea677

Please sign in to comment.