Merge branch 'ticket_9890' into develop
This commit is contained in:
commit
1046fd27f2
@ -41,7 +41,7 @@
|
||||
<p>{l s='Warning :'} {$product.quantity_all_versions} {l s='items in stock'}</p>
|
||||
{/if}
|
||||
</div>
|
||||
{elseif $product.quantity <= $last_qties && $product.quantity > 0}
|
||||
{elseif !isset($product.quantity_all_versions) && $product.quantity <= $last_qties && $product.quantity > 0}
|
||||
<div class="productQuantityAlert">
|
||||
{if $product.quantity == 1}
|
||||
<p>{l s='Warning: 1 item in stock!'}</p>
|
||||
|
@ -70,7 +70,7 @@
|
||||
<p>{l s='Warning :'} {$product.quantity_all_versions} {l s='items in stock'}</p>
|
||||
{/if}
|
||||
</div>
|
||||
{elseif $product.quantity <= $last_qties && $product.quantity > 0}
|
||||
{elseif !isset($product.quantity_all_versions) && $product.quantity <= $last_qties && $product.quantity > 0}
|
||||
<div class="productQuantityAlert">
|
||||
{if $product.quantity == 1}
|
||||
<p>{l s='Warning: 1 item in stock!'}</p>
|
||||
|
@ -36,7 +36,7 @@
|
||||
<p>{l s='Warning :'} {$product.quantity_all_versions} {l s='items in stock'}</p>
|
||||
{/if}
|
||||
</div>
|
||||
{elseif $product.quantity <= $last_qties && $product.quantity > 0}
|
||||
{elseif !isset($product.quantity_all_versions) && $product.quantity <= $last_qties && $product.quantity > 0}
|
||||
<div class="productQuantityAlert">
|
||||
{if $product.quantity == 1}
|
||||
<p>{l s='Warning: 1 item in stock!'}</p>
|
||||
|
@ -64,7 +64,7 @@
|
||||
<p>{l s='Warning :'} {$product.quantity_all_versions} {l s='items in stock'}</p>
|
||||
{/if}
|
||||
</div>
|
||||
{elseif $product.quantity <= $last_qties && $product.quantity > 0}
|
||||
{elseif !isset($product.quantity_all_versions) && $product.quantity <= $last_qties && $product.quantity > 0}
|
||||
<div class="productQuantityAlert">
|
||||
{if $product.quantity == 1}
|
||||
<p>{l s='Warning: 1 item in stock!'}</p>
|
||||
|
Loading…
Reference in New Issue
Block a user