Commit 3e5e7f9d authored by Olaf Karsten's avatar Olaf Karsten
Browse files

Issue #3236525 by abdhomsi, mohamed nabawy: Commerce Product Bundle Drupal 9 Support

parent f900361a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
name: Commerce Product Bundle
type: module
description: 'Extends Drupal Commerce with a product bundle functionality.'
core: 8.x
core_version_requirement: ^8 || ^9
package: Commerce Contrib
dependencies:
  - commerce:commerce
+1 −1
Original line number Diff line number Diff line
name: Commerce Product Bundle Cart Integration
type: module
description: Provides commerce cart integration for commerce product bundles.
core: 8.x
core_version_requirement: ^8 || ^9
package: Commerce Product Bundle
dependencies:
  - commerce:commerce_product_bundle
+1 −1
Original line number Diff line number Diff line
name: Commerce Product Bundle Stock
type: module
description: Provides integration between Commerce Product Bundle and Commerce Stock.
core: 8.x
core_version_requirement: ^8 || ^9
package: Commerce Product Bundle
dependencies:
  - commerce:commerce
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ parameters:
    drupal_root: %currentWorkingDirectory%/web
  customRulesetUsed: true
  reportUnmatchedIgnoredErrors: false
  level: 3
  level: 1
  ignoreErrors:
    - '#\Drupal calls should be avoided in classes, use dependency injection instead#'
    - '#\Call to an undefined method Drupal\\Tests\\WebAssert::#'
+7 −0
Original line number Diff line number Diff line
@@ -89,6 +89,13 @@ class BundleItemOrderItem extends CommerceContentEntityBase implements BundleIte
    return $this->get('title')->value;
  }

  /**
   * {@inheritdoc}
   */
  public function setTitle($title) {
    return $this->set('title', $title);
  }

  /**
   * Sets the order item unit price.
   *
Loading