本文整理匯總了PHP中ProductSale::getNbrSales方法的典型用法代碼示例。如果您正苦於以下問題:PHP ProductSale::getNbrSales方法的具體用法?PHP ProductSale::getNbrSales怎麽用?PHP ProductSale::getNbrSales使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ProductSale
的用法示例。
在下文中一共展示了ProductSale::getNbrSales方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: removeProductSale
public static function removeProductSale($id_product, $qty = 1)
{
$total_sales = ProductSale::getNbrSales($id_product);
if ($total_sales > 1) {
return Db::getInstance()->execute('
UPDATE ' . _DB_PREFIX_ . 'product_sale
SET `quantity` = `quantity` - ' . (int) $qty . ', `sale_nbr` = `sale_nbr` - 1, `date_upd` = NOW()
WHERE `id_product` = ' . (int) $id_product);
} elseif ($total_sales == 1) {
return Db::getInstance()->delete('product_sale', 'id_product = ' . (int) $id_product);
}
return true;
}