You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having a group that has a discount amount customersGroup.
When I display a product in the frontend, the price is displayed with its discount, and the old price in red.
Then, when the onCheckProductStock event is triggered, the price's partial is refreshed
I'm having a group that has a discount amount
customersGroup
.When I display a product in the frontend, the price is displayed with its discount, and the old price in red.
Then, when the
onCheckProductStock
event is triggered, the price's partial is refreshedoc-mall-plugin/components/Product.php
Line 773 in 3e45399
but the old price no longer appears.
In the price's partial, price is set with
{% set price = price|default(item.price()) %}
At the windows load :
a
OFFLINE\Mall\Models\ProductPrice
model is used with official property.At the
onCheckProductStock
event :a
OFFLINE\Mall\Models\Price
model is used with no (set to null) official property.Can somebody confirm this behavior?
The text was updated successfully, but these errors were encountered: