BEE and Permission by Term problem with SalespriceResolver.php

Created on 30 December 2020, over 4 years ago
Updated 2 January 2024, over 1 year ago

Problem/Motivation

I installed BEE in a clean Drupal 8.9.11 install and everything worked until I tryed to install Permission by Term.
The class SalepriceResolver implements PriceResolverInterface broke the install.

Steps to reproduce

Just install BEE with Permission by Term.

Proposed resolution

As the function does not checks if commerce module is installed it will break.

So I changed the code as follows:

 if ($entity->bundle() == 'bee' && $entity->bundle() == 'commerce') {
    $store = $context->getStore();

    if ($cart = \Drupal::service('commerce_cart.cart_provider')->getCart('default', $store)) {
      $order_items = $cart->getItems();
      foreach ($order_items as $order_item) {
        if ($order_item->bundle() == 'bee') {
          return $order_item->getUnitPrice();
        }
      }
    }
    } else {
    return;
    }

Remaining tasks

We need to test this with a commerce install.

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Closed: outdated

Version

1.2

Component

Code

Created by

🇩🇪Germany designwork

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