Hello
There is a little bug on stock level indication. When the stock level goes under 0 products on stock, it indicates low stock level, not out off stock.
Very simple solution....
administrator/components/com_vituemart/models/product.php (line 1835 for VM2.0.12, public function getStockIndicator)
change line
if ($stock_level == 0) {
to
if ($stock_level <= 0) {
Hello
Thanks.
Fixed for the next version.