Error updating cart items when anonymous

Created on 1 December 2019, over 5 years ago
Updated 8 January 2025, 3 months ago

In mailchimp_ecommerce/modules/mailchimp_ecommerce_commerce/src/EventSubscriber/CartEventSubscriber.php, we have:

  public function cartAdd(CartEntityAddEvent $event) {
    /** @var \Drupal\commerce_order\Entity\Order $order */
    $order = $event->getCart();

    $customer['email_address'] = $order->getEmail();

    if (empty($customer['email_address'])) {
      // Cannot create or add an item to a cart with no customer email address.
      return;
    }

Which checks if there is a customer email before doing any cart / order handling. However, there is no check in cartItemUpdate() nor cartItemRemove(). This results in an error when an anonymous shopper views the cart and updates a quantity or removes an item.

Adding:

    $customer['email_address'] = $order->getEmail();

    if (empty($customer['email_address'])) {
      // Cannot create or add an item to a cart with no customer email address.
      return;
    }

To each function after $order = $event->getCart(); eliminates the error. I'll see if I can create a quick patch.

πŸ› Bug report
Status

Closed: duplicate

Version

2.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States scottsawyer Atlanta

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.

Production build 0.71.5 2024