|
@@ -83,7 +83,7 @@ class StoreOrderStoreOrderStatusDao extends BaseDao
|
|
|
*/
|
|
*/
|
|
|
public function getTakeOrderIds(array $where, int $limit = 0)
|
|
public function getTakeOrderIds(array $where, int $limit = 0)
|
|
|
{
|
|
{
|
|
|
- return $this->search($where)->whereIn('refund_type', [0, 3])->field([$this->alias . '.*'])
|
|
|
|
|
|
|
+ return $this->search($where)->whereIn('refund_type', [0, 3])->where('pid', '<>', -1)->field([$this->alias . '.*'])
|
|
|
->when($limit != 0, function ($query) use ($limit) {
|
|
->when($limit != 0, function ($query) use ($limit) {
|
|
|
$query->limit($limit);
|
|
$query->limit($limit);
|
|
|
})->select()->toArray();
|
|
})->select()->toArray();
|