// Stock Available : bug fix
This commit is contained in:
@@ -392,7 +392,7 @@ class StockAvailableCore extends ObjectModel
|
||||
* @param int $id_shop Optional : gets context if null @see Context::getContext()
|
||||
* @return bool : depends on stock @see $depends_on_stock
|
||||
*/
|
||||
public function outOfStock($id_product, $id_shop = null)
|
||||
public static function outOfStock($id_product, $id_shop = null)
|
||||
{
|
||||
if (is_null($id_shop))
|
||||
$id_shop = Context::getContext()->shop->getID(true);
|
||||
|
||||
@@ -3219,7 +3219,7 @@ class AdminProductsController extends AdminController
|
||||
if (Tools::getValue('id_product_attribute') === false)
|
||||
return Tools::jsonEncode(array('error' => 'Undefined id product attribute'));
|
||||
// @todo : Product class should handle that
|
||||
$stock_available = new StockAvailable(StockAvailable::getIdStockAvailableByProductId($product->id, (int)Tools::getValue('id_product_attribute')));
|
||||
$stock_available = new StockAvailable(StockAvailable::getStockAvailableIdByProductId($product->id, (int)Tools::getValue('id_product_attribute')));
|
||||
if (!$stock_available->id)
|
||||
{
|
||||
$stock_available->id_product = $product->id;
|
||||
|
||||
Reference in New Issue
Block a user