修改用户订单数量统计

This commit is contained in:
luofei 2024-03-06 10:52:19 +08:00
parent e7d04893a7
commit 535177563a

View File

@ -597,7 +597,7 @@ class StoreOrderRepository extends BaseRepository
$where['activity_type'] = $product_type;
if ($source == 103) {
$where['activity_type'] = [0, 2, 98];
$where['source'] = [0, 2, 103,105];
$where['source'] = [0, 2, 103,105, 999];
}
$noComment = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(4))->where($where)->where('StoreOrder.is_del', 0)->count();
$noPay = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(1))->whereRaw("(StoreOrder.paid=0 and StoreOrder.pay_type!=8) or (StoreOrder.paid=1 and StoreOrder.pay_type=8 and StoreOrder.status=2)")->where($where)->where('StoreOrder.is_del', 0)->count();