修改购物车数量统计的错误

This commit is contained in:
root 2023-05-16 15:01:07 +08:00
parent 47f1ea3c32
commit 8d9080f76b
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -9,4 +9,4 @@ public/static/download/*
public/phpExcel/* public/phpExcel/*
app/controller/api/Test.php app/controller/api/Test.php
public/protocol.html public/protocol.html
/runtime /runtime/*

View File

@ -139,7 +139,7 @@ class StoreCartDao extends BaseDao
*/ */
public function getCartCount(int $uid,$product_type) 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; $data[0]['count'] = $data[0]['count'] ? $data[0]['count'] : 0;
return $data; return $data;
} }