Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Puck Holshuijsen 188 posts 751 karma points
    Apr 11, 2023 @ 06:08
    Puck Holshuijsen
    0

    Thawing prices question

    Hi Matt,

    Just got a quick question about thawing prices. I have a multivariantproduct page, with complex variants.

    If i thaw the prices of the 'master' product, will all the variants' prices also thaw? Or do I need to thaw them individially. This is my piece of code in the PublishedEvent:

     if (node.ContentType.Alias.Equals(DtMultiVariantProductPage.ModelTypeAlias))
                {
                    if (node.WasPropertyDirty("price") || node.WasPropertyDirty("salePrice") || node.WasPropertyDirty("saleActive"))
                    {
                        _priceFreezerService.ThawPrices(partialKey: node.Key.ToString());
                    }
                }
    

    Thanks!

    //Puck

  • Matt Brailsford 4125 posts 22223 karma points MVP 9x c-trib
    Apr 12, 2023 @ 07:00
    Matt Brailsford
    100

    Hi Puck,

    Good question, and I think it should.

    When using product variants with the variants property editor the frozen price key should be in the format

    "{storeId}_{orderId}_{productReference}_{productVariantReference}"
    

    So passing just the productReference of the parent product should indeed thaw the prices of product variants

  • Puck Holshuijsen 188 posts 751 karma points
    Apr 13, 2023 @ 06:13
    Puck Holshuijsen
    0

    Awesome! Thanks :)

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies