You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/app/store/controller/user/Recharge.php

75 lines
2.4 KiB

<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\store\controller\user;
use think\response\Json;
use app\store\controller\Controller;
use app\store\model\recharge\Order as OrderModel;
/**
* 余额记录
* Class Recharge
* @package app\store\controller\user
*/
class Recharge extends Controller
{
/**
* 充值记录
* @return Json
*/
public function order(): Json
{
$model = new OrderModel;
$list = $model->getList($this->request->param());
return $this->renderSuccess(compact('list'));
}
/**
* 充值订单详情
* @param int $rechargeOrderId
* @return Json
*/
public function detail(int $rechargeOrderId): Json
{
// 售后单详情
$model = new OrderModel;
$detail = $model->getDetail($rechargeOrderId);
if (!$detail) {
return $this->renderError('未找到该充值记录');
}
$detail->refuse_desc = $detail->refuse_desc ? htmlspecialchars_decode($detail->refuse_desc) : "";
return $this->renderSuccess(compact('detail'));
}
/**
* 商家审核充值
* @param int $rechargeOrderId
* @return Json
*/
public function audit(int $rechargeOrderId): Json
{
// 售后单详情
$model = OrderModel::detail($rechargeOrderId);
if ($model->isEmpty()) {
return $this->renderError('未找到该充值记录');
}
if ($model->audit_status > 0) {
return $this->renderError('已审核');
}
// 确认审核
if ($model->audit($rechargeOrderId, $this->postForm())) {
return $this->renderSuccess('操作成功');
}
return $this->renderError($model->getError() ?: '操作失败');
}
}