mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
125 lines
3.2 KiB
PHP
125 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace App\Repos;
|
|
|
|
use App\Library\Paginator\Adapter\QueryBuilder as PagerQueryBuilder;
|
|
use App\Models\Refund as RefundModel;
|
|
use App\Models\RefundStatus as RefundStatusModel;
|
|
use App\Models\Task as TaskModel;
|
|
use Phalcon\Mvc\Model;
|
|
use Phalcon\Mvc\Model\Resultset;
|
|
use Phalcon\Mvc\Model\ResultsetInterface;
|
|
|
|
class Refund extends Repository
|
|
{
|
|
|
|
public function paginate($where = [], $sort = 'latest', $page = 1, $limit = 15)
|
|
{
|
|
$builder = $this->modelsManager->createBuilder();
|
|
|
|
$builder->from(RefundModel::class);
|
|
|
|
$builder->where('1 = 1');
|
|
|
|
if (!empty($where['owner_id'])) {
|
|
$builder->andWhere('owner_id = :owner_id:', ['owner_id' => $where['owner_id']]);
|
|
}
|
|
|
|
if (!empty($where['order_id'])) {
|
|
$builder->andWhere('order_id = :order_id:', ['order_id' => $where['order_id']]);
|
|
}
|
|
|
|
if (!empty($where['status'])) {
|
|
$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) {
|
|
default:
|
|
$orderBy = 'id DESC';
|
|
break;
|
|
}
|
|
|
|
$builder->orderBy($orderBy);
|
|
|
|
$pager = new PagerQueryBuilder([
|
|
'builder' => $builder,
|
|
'page' => $page,
|
|
'limit' => $limit,
|
|
]);
|
|
|
|
return $pager->paginate();
|
|
}
|
|
|
|
/**
|
|
* @param int $id
|
|
* @return RefundModel|Model|bool
|
|
*/
|
|
public function findById($id)
|
|
{
|
|
return RefundModel::findFirst([
|
|
'conditions' => 'id = :id:',
|
|
'bind' => ['id' => $id],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param string $sn
|
|
* @return RefundModel|Model|bool
|
|
*/
|
|
public function findBySn($sn)
|
|
{
|
|
return RefundModel::findFirst([
|
|
'conditions' => 'sn = :sn:',
|
|
'bind' => ['sn' => $sn],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param array $ids
|
|
* @param array|string $columns
|
|
* @return ResultsetInterface|Resultset|RefundModel[]
|
|
*/
|
|
public function findByIds($ids, $columns = '*')
|
|
{
|
|
return RefundModel::query()
|
|
->columns($columns)
|
|
->inWhere('id', $ids)
|
|
->execute();
|
|
}
|
|
|
|
/**
|
|
* @param int $refundId
|
|
* @return ResultsetInterface|Resultset|RefundStatusModel[]
|
|
*/
|
|
public function findStatusHistory($refundId)
|
|
{
|
|
return RefundStatusModel::query()
|
|
->where('refund_id = :refund_id:', ['refund_id' => $refundId])
|
|
->execute();
|
|
}
|
|
|
|
/**
|
|
* @param int $refundId
|
|
* @return TaskModel|Model|bool
|
|
*/
|
|
public function findLastRefundTask($refundId)
|
|
{
|
|
return TaskModel::findFirst([
|
|
'conditions' => 'item_id = ?1 AND item_type = ?2',
|
|
'bind' => [1 => $refundId, 2 => TaskModel::TYPE_REFUND],
|
|
'order' => 'id DESC',
|
|
]);
|
|
}
|
|
|
|
}
|