mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-01 10:48:12 +00:00
120 lines
3.1 KiB
PHP
120 lines
3.1 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | Niucloud-admin 企业快速开发的多应用管理平台
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网址:https://www.niucloud.com
|
||
// +----------------------------------------------------------------------
|
||
// | niucloud团队 版权所有 开源版本可自由商用
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Niucloud Team
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace addon\recharge\app\adminapi\controller;
|
||
|
||
use addon\recharge\app\service\admin\RechargeOrderRefundService;
|
||
use addon\recharge\app\service\admin\RechargeOrderService;
|
||
use core\base\BaseAdminController;
|
||
use think\Response;
|
||
|
||
class Order extends BaseAdminController
|
||
{
|
||
/**
|
||
* 充值订单列表
|
||
* @return Response
|
||
*/
|
||
public function lists()
|
||
{
|
||
$data = $this->request->params([
|
||
[ 'order_no', '' ],
|
||
[ 'order_status', '' ],
|
||
[ 'order_from', '' ],
|
||
[ 'create_time', [] ],
|
||
[ 'pay_time', [] ],
|
||
[ 'member_id', '' ],
|
||
[ 'start_money', 0 ],
|
||
[ 'end_money', 0 ]
|
||
]);
|
||
return success(( new RechargeOrderService() )->getPage($data));
|
||
}
|
||
|
||
/**
|
||
* 充值订单详情
|
||
* @param int $order_id
|
||
* @return Response
|
||
*/
|
||
public function detail(int $order_id)
|
||
{
|
||
return success(( new RechargeOrderService() )->getDetail($order_id));
|
||
}
|
||
|
||
public function status()
|
||
{
|
||
return success(( new RechargeOrderService() )->getStatus());
|
||
}
|
||
|
||
public function refund($order_id)
|
||
{
|
||
$res = ( new RechargeOrderRefundService() )->create($order_id);
|
||
if ($res === true) return success();
|
||
return fail($res);
|
||
}
|
||
|
||
/**
|
||
* 退款列表
|
||
* @return Response
|
||
*/
|
||
public function refundLists()
|
||
{
|
||
$data = $this->request->params([
|
||
[ 'create_time', [] ],
|
||
[ 'member_id', '' ],
|
||
[ 'refund_no', '' ],
|
||
[ 'status', '' ],
|
||
[ 'keywords', '' ],
|
||
[ 'order_no', '' ],
|
||
]);
|
||
return success(( new RechargeOrderRefundService() )->getPage($data));
|
||
}
|
||
|
||
/**
|
||
* 退款详情
|
||
* @param int $refund_id
|
||
* @return Response
|
||
*/
|
||
public function refundDetail(int $refund_id)
|
||
{
|
||
return success(( new RechargeOrderRefundService() )->getDetail($refund_id));
|
||
}
|
||
|
||
/**
|
||
* 查询退款状态
|
||
* @return Response
|
||
*/
|
||
public function refundStatus()
|
||
{
|
||
return success(( new RechargeOrderRefundService() )->getStatus());
|
||
}
|
||
|
||
/**
|
||
* 退款统计
|
||
*/
|
||
public function refundStat()
|
||
{
|
||
return success(( new RechargeOrderRefundService() )->stat());
|
||
}
|
||
|
||
/**
|
||
* 充值统计
|
||
*/
|
||
public function stat()
|
||
{
|
||
$data = $this->request->params([
|
||
[ 'member_id', '' ],
|
||
]);
|
||
$res = ( new RechargeOrderService() )->stat($data);
|
||
return success($res);
|
||
}
|
||
|
||
|
||
}
|