This question has been flagged

Hello,

I'm trying to inform people that they chose more products than we have in stock. What i made now is that they can see if product is available or not by text under the add to cart button. It was easy in cart because product quantity is taken from order line. Problem is in product page. Quantity on this page is held by add_qty input. I don't know how to use this value in "t-if".

My code:

<span t-if="product.virtual_available &gt; 0"><br/><strong>Product available</strong></span>

<span t-if="product.virtual_available &lt;= 0"><br/><strong>Product not available</strong></span>


Avatar
Discard

Did you ever solved this? I'm looking for the same