| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?php
- // +----------------------------------------------------------------------
- // | likeadmin快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
- // | github下载:https://github.com/likeshop-github/likeadmin
- // | 访问官网:https://www.likeadmin.cn
- // | likeadmin团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeadminTeam
- // +----------------------------------------------------------------------
- namespace app\adminapi\lists\finance;
- use app\adminapi\lists\BaseAdminDataLists;
- use app\common\enum\RefundEnum;
- use app\common\lists\ListsExtendInterface;
- use app\common\lists\ListsSearchInterface;
- use app\common\model\refund\RefundRecord;
- use app\common\service\FileService;
- /**
- * 退款记录列表
- * Class RefundRecordLists
- * @package app\adminapi\lists\product
- */
- class RefundRecordLists extends BaseAdminDataLists implements ListsSearchInterface, ListsExtendInterface
- {
- /**
- * @notes 查询条件
- * @return \string[][]
- * @author 段誉
- * @date 2023/3/1 9:51
- */
- public function setSearch(): array
- {
- return [
- '=' => ['r.sn', 'r.order_sn', 'r.refund_type'],
- ];
- }
- /**
- * @notes 查询条件
- * @param bool $flag
- * @return array
- * @author 段誉
- * @date 2023/3/1 9:51
- */
- public function queryWhere($flag = true)
- {
- $where = [];
- if (!empty($this->params['user_info'])) {
- $where[] = ['u.sn|u.nickname|u.mobile|u.account', 'like', '%' . $this->params['user_info'] . '%'];
- }
- if (!empty($this->params['start_time'])) {
- $where[] = ['r.create_time', '>=', strtotime($this->params['start_time'])];
- }
- if (!empty($this->params['end_time'])) {
- $where[] = ['r.create_time', '<=', strtotime($this->params['end_time'])];
- }
- if ($flag == true) {
- if (isset($this->params['refund_status']) && $this->params['refund_status'] != '') {
- $where[] = ['r.refund_status', '=', $this->params['refund_status']];
- }
- }
- return $where;
- }
- /**
- * @notes 获取列表
- * @return array
- * @author 段誉
- * @date 2023/3/1 9:51
- */
- public function lists(): array
- {
- $lists = (new RefundRecord())->alias('r')
- ->field('r.*,u.nickname,u.avatar')
- ->join('user u', 'u.id = r.user_id')
- ->order(['r.id' => 'desc'])
- ->where($this->searchWhere)
- ->where($this->queryWhere())
- ->limit($this->limitOffset, $this->limitLength)
- ->append(['refund_type_text', 'refund_status_text', 'refund_way_text'])
- ->select()
- ->toArray();
- foreach ($lists as &$item) {
- $item['avatar'] = FileService::getFileUrl($item['avatar']);
- }
- return $lists;
- }
- /**
- * @notes 获取数量
- * @return int
- * @author 段誉
- * @date 2023/3/1 9:51
- */
- public function count(): int
- {
- return (new RefundRecord())->alias('r')
- ->join('user u', 'u.id = r.user_id')
- ->where($this->searchWhere)
- ->where($this->queryWhere())
- ->count();
- }
- /**
- * @notes 额外参数
- * @return mixed|null
- * @author 段誉
- * @date 2023/3/1 9:51
- */
- public function extend()
- {
- $count = (new RefundRecord())->alias('r')
- ->join('user u', 'u.id = r.user_id')
- ->field([
- 'count(r.id) as total',
- 'count(if(r.refund_status='.RefundEnum::REFUND_ING.', true, null)) as ing',
- 'count(if(r.refund_status='.RefundEnum::REFUND_SUCCESS.', true, null)) as success',
- 'count(if(r.refund_status='.RefundEnum::REFUND_ERROR.', true, null)) as error',
- ])
- ->where($this->searchWhere)
- ->where($this->queryWhere(false))
- ->select()->toArray();
- return array_shift($count);
- }
- }
|