Don't delete renewed licenses when deleting orders.

Created on 8 April 2020, almost 5 years ago
Updated 20 February 2023, about 2 years ago

As things currently are, when a order is deleted e.g from /admin/commerce/orders, this also deletes associated license. This is not a good behavior if the license is renewable and was renewed, because it can have many orders associated to it...

What about :

@@ -68,13 +69,42 @@ function commerce_license_commerce_order_item_delete(EntityInterface $entity) {
 
+  /** @var \Drupal\commerce_license\Entity\LicenseInterface $license */
   $license = $entity->license->entity;
-  $license->delete();
+
+  // Previous conditions will validate in case of renewed licenses,
+  // because $entity->getOrder() already returns null !
+  // Only act if the license was not renewed yet.
+  if ($license->getRenewedTime()) {
+    return;
+  }

This seems to work fine. We may also add in the same block a message only for admins, such as ?

+    \Drupal::messenger()->addWarning(
+      t('This order is associated to a renewed license (Id : @id), you may check if you wish to delete that license or not.', [
+        "@id" => $license->id(),
+      ])
+    );
πŸ› Bug report
Status

Closed: outdated

Version

2.0

Component

Code

Created by

πŸ‡«πŸ‡·France Kojo Unsui

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡ΈUnited States TomTech

    Current behavior is the license is only deleted if the order is in draft(cart) state.

    If the order was placed, then the license is NOT deleted

Production build 0.71.5 2024