How to set default price in variation product?

Created on 18 March 2025, 17 days ago

Problem/Motivation

Hi, is there any way or can you help me to alter the commerce product variation form? And to be able to insert the default price? it would be the following values:

- price: - number: '1,00'
         - currency_code: ARS
💬 Support request
Status

Active

Version

3.0

Component

Price

Created by

🇦🇷Argentina OPtii

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

Comments & Activities

  • 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'));
        }
      }
    
    }
    
    
  • 🇦🇷Argentina OPtii

    @jsacksick Perfect, thx bro <3

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024