modelsManager->createBuilder(); $builder->from(OrderModel::class); $builder->where('1 = 1'); if (!empty($where['id'])) { $builder->andWhere('id = :id:', ['id' => $where['id']]); } if (!empty($where['sn'])) { $builder->andWhere('sn = :sn:', ['sn' => $where['sn']]); } if (!empty($where['owner_id'])) { $builder->andWhere('owner_id = :owner_id:', ['owner_id' => $where['owner_id']]); } if (!empty($where['item_id'])) { $builder->andWhere('item_id = :item_id:', ['item_id' => $where['item_id']]); } if (!empty($where['item_type'])) { if (is_array($where['item_type'])) { $builder->inWhere('item_type', $where['item_type']); } else { $builder->andWhere('item_type = :item_type:', ['item_type' => $where['item_type']]); } } if (!empty($where['promotion_type'])) { if (is_array($where['promotion_type'])) { $builder->inWhere('promotion_type', $where['promotion_type']); } else { $builder->andWhere('promotion_type = :promotion_type:', ['promotion_type' => $where['promotion_type']]); } } if (!empty($where['status'])) { if (is_array($where['status'])) { $builder->inWhere('status', $where['status']); } else { $builder->andWhere('status = :status:', ['status' => $where['status']]); } } if (isset($where['deleted'])) { $builder->andWhere('deleted = :deleted:', ['deleted' => $where['deleted']]); } if (!empty($where['start_time']) && !empty($where['end_time'])) { $startTime = strtotime($where['start_time']); $endTime = strtotime($where['end_time']); $builder->betweenWhere('create_time', $startTime, $endTime); } switch ($sort) { case 'oldest': $orderBy = 'id ASC'; break; default: $orderBy = 'id DESC'; break; } $builder->orderBy($orderBy); $pager = new PagerQueryBuilder([ 'builder' => $builder, 'page' => $page, 'limit' => $limit, ]); return $pager->paginate(); } /** * @param int $id * @return OrderModel|Model|bool */ public function findById($id) { return OrderModel::findFirst([ 'conditions' => 'id = :id:', 'bind' => ['id' => $id], ]); } /** * @param string $sn * @return OrderModel|Model|bool */ public function findBySn($sn) { return OrderModel::findFirst([ 'conditions' => 'sn = :sn:', 'bind' => ['sn' => $sn], ]); } /** * @param int $userId * @param string $itemId * @param string $itemType * @return OrderModel|Model|bool */ public function findUserLastPendingOrder($userId, $itemId, $itemType) { $status = OrderModel::STATUS_PENDING; return $this->findUserLastStatusOrder($userId, $itemId, $itemType, $status); } /** * @param int $userId * @param string $itemId * @param string $itemType * @return OrderModel|Model|bool */ public function findUserLastDeliveringOrder($userId, $itemId, $itemType) { $status = OrderModel::STATUS_DELIVERING; return $this->findUserLastStatusOrder($userId, $itemId, $itemType, $status); } /** * @param int $userId * @param string $itemId * @param string $itemType * @return OrderModel|Model|bool */ public function findUserLastFinishedOrder($userId, $itemId, $itemType) { $status = OrderModel::STATUS_FINISHED; return $this->findUserLastStatusOrder($userId, $itemId, $itemType, $status); } /** * @param int $userId * @param string $itemId * @param string $itemType * @param int $status * @return OrderModel|Model|bool */ public function findUserLastStatusOrder($userId, $itemId, $itemType, $status) { return OrderModel::findFirst([ 'conditions' => 'owner_id = ?1 AND item_id = ?2 AND item_type = ?3 AND status = ?4', 'bind' => [1 => $userId, 2 => $itemId, 3 => $itemType, 4 => $status], 'order' => 'id DESC', ]); } /** * @param array $ids * @param array|string $columns * @return ResultsetInterface|Resultset|OrderModel[] */ public function findByIds($ids, $columns = '*') { return OrderModel::query() ->columns($columns) ->inWhere('id', $ids) ->execute(); } /** * @param int $orderId * @return ResultsetInterface|Resultset|TradeModel[] */ public function findTrades($orderId) { return TradeModel::query() ->where('order_id = :order_id:', ['order_id' => $orderId]) ->andWhere('deleted = 0') ->execute(); } /** * @param int $orderId * @return ResultsetInterface|Resultset|RefundModel[] */ public function findRefunds($orderId) { return RefundModel::query() ->where('order_id = :order_id:', ['order_id' => $orderId]) ->andWhere('deleted = 0') ->execute(); } /** * @param int $orderId * @return ResultsetInterface|Resultset|OrderStatusModel[] */ public function findStatusHistory($orderId) { return OrderStatusModel::query() ->where('order_id = :order_id:', ['order_id' => $orderId]) ->execute(); } /** * @param int $orderId * @return TradeModel|Model|bool */ public function findLastTrade($orderId) { return TradeModel::findFirst([ 'conditions' => 'order_id = :order_id:', 'bind' => ['order_id' => $orderId], 'order' => 'id DESC', ]); } /** * @param int $orderId * @return RefundModel|Model|bool */ public function findLastRefund($orderId) { return RefundModel::findFirst([ 'conditions' => 'order_id = :order_id:', 'bind' => ['order_id' => $orderId], 'order' => 'id DESC', ]); } public function countOrders() { return (int)OrderModel::count(['conditions' => 'deleted = 0']); } }