What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hi Guys, i have the same problem as in

USZ0X9ZB9
USZ0X9ZB9 Posts: 13 🧑🏻‍🚀 - Cadet

Hi Guys, i have the same problem as in https://sprykercommunity.slack.com/archives/CH2HA71C5/p1623750376116800. The QuoteValidatorPlugins are executed but the result is completely ignored in this line: https://github.com/spryker/cart/blob/master/src/Spryker/Zed/Cart/Business/Model/Operation.php#L327

Comments

  • UK7KBE2JW
    UK7KBE2JW Posts: 463 🧑🏻‍🚀 - Cadet

    I think you can handle this on other ways too. For cart you can try to create a plugin from interface QuoteChangeObserverPluginInterface and for checkout from interface CheckoutPreCheckPluginInterface

  • USZ0X9ZB9
    USZ0X9ZB9 Posts: 13 🧑🏻‍🚀 - Cadet

    Thx, that was our first approach, but then we would have to write a lot of logic e.g. adding a new property like the “isQuoteValid” in the QuoteTransfer and handling all of that stuff, which is already there - but currently not working. The QuoteValidation seems to be just in the right places where we need it.

  • UK7KBE2JW
    UK7KBE2JW Posts: 463 🧑🏻‍🚀 - Cadet

    Ah ok sorry. Do not know your case in detail. For some cases you also can use CartPreCheckPluginInterface. I use it in cart too for validation stuff and add error messages

  • UK7KBE2JW
    UK7KBE2JW Posts: 463 🧑🏻‍🚀 - Cadet

    Some time ago i also had struggles to pass my stuff to cart. But with the named three interfaces i was able to pass it