修改购物车数量统计的错误
This commit is contained in:
parent
47f1ea3c32
commit
8d9080f76b
2
.gitignore
vendored
2
.gitignore
vendored
@ -9,4 +9,4 @@ public/static/download/*
|
||||
public/phpExcel/*
|
||||
app/controller/api/Test.php
|
||||
public/protocol.html
|
||||
/runtime
|
||||
/runtime/*
|
||||
|
@ -139,7 +139,7 @@ class StoreCartDao extends BaseDao
|
||||
*/
|
||||
public function getCartCount(int $uid,$product_type)
|
||||
{
|
||||
$data = ($this->getModel()::getDB())->where(['uid' => $uid, 'is_del' => 0, 'is_new' => 0, 'is_pay' => 0,'product_type' => $product_type])->field('SUM(cart_num) as count')->select();
|
||||
$data = ($this->getModel()::getDB())->where(['uid' => $uid, 'is_del' => 0, 'is_new' => 0, 'is_pay' => 0,'product_type' => $product_type])->field('count(*) as count')->select();
|
||||
$data[0]['count'] = $data[0]['count'] ? $data[0]['count'] : 0;
|
||||
return $data;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user