public function getAvailability()

in Model/Product/Feed/Builder/Inventory.php [97:102]


    public function getAvailability()
    {
        return $this->productStock && $this->productStock->getIsInStock()
            && ($this->getInventory() - $this->systemConfig->getOutOfStockThreshold() > 0)
            ? self::STATUS_IN_STOCK : self::STATUS_OUT_OF_STOCK;
    }