- Issue created by @OPtii
- 🇮🇱Israel jsacksick
Something like the following:
namespace Drupal\my_module\EventSubscriber; use Drupal\commerce_price\Price; use Drupal\commerce_product\Event\ProductEvents; use Drupal\commerce_product\Event\ProductVariationEvent; use Symfony\Component\EventDispatcher\EventSubscriberInterface; /** * Provides a subscriber to the Product events. */ class ProductVariationSubscriber implements EventSubscriberInterface { /** * {@inheritdoc} */ public static function getSubscribedEvents(): array { return [ ProductEvents::PRODUCT_VARIATION_CREATE => 'onCreate', ]; } /** * When a variation is created, set a de fault price * * @param \Drupal\commerce_product\Event\ProductVariationEvent $event * The product variation event. */ public function onCreate(ProductVariationEvent $event) { $variation = $event->getProductVariation(); if (empty($variation->getPrice()) { $variation->setPrice(new Price('1', 'ARS')); } } }
Automatically closed - issue fixed for 2 weeks with no activity.