This commit is contained in:
mkm 2024-01-24 11:03:55 +08:00
parent 8ca1f287ea
commit acfa705c90

View File

@ -730,7 +730,7 @@ class StoreOrderRepository extends BaseRepository
$where['activity_type'] = $product_type;
if ($source == 103) {
$where['activity_type'] = [0, 98];
$where['source'] = [0, 2, 103];
$where['source'] = [0, 2, 103,105];
}
$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();