91 lines
2.7 KiB
PHP
91 lines
2.7 KiB
PHP
|
<?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\api\logic;
|
|||
|
|
|||
|
use app\common\enum\PayEnum;
|
|||
|
use app\common\logic\BaseLogic;
|
|||
|
use app\common\model\recharge\RechargeOrder;
|
|||
|
use app\common\model\user\User;
|
|||
|
use app\common\service\ConfigService;
|
|||
|
use think\facade\Log;
|
|||
|
|
|||
|
/**
|
|||
|
* 充值逻辑层
|
|||
|
* Class RechargeLogic
|
|||
|
* @package app\shopapi\logic
|
|||
|
*/
|
|||
|
class RechargeLogic extends BaseLogic
|
|||
|
{
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 充值
|
|||
|
* @param array $params
|
|||
|
* @return array|false
|
|||
|
* @author 段誉
|
|||
|
* @date 2023/2/24 10:43
|
|||
|
*/
|
|||
|
public static function recharge(array $params)
|
|||
|
{
|
|||
|
try {
|
|||
|
$data = [
|
|||
|
'sn' => generate_sn(RechargeOrder::class, 'sn'),
|
|||
|
'order_terminal' => $params['terminal'],
|
|||
|
'user_id' => $params['user_id'],
|
|||
|
'pay_status' => PayEnum::UNPAID,
|
|||
|
'order_amount' => $params['money'],
|
|||
|
];
|
|||
|
if(isset($params['task_id']) &&$params['task_id']>0){
|
|||
|
$data['extend']=json_encode(['task_id'=>$params['task_id'],'type'=>1]);
|
|||
|
}
|
|||
|
if(isset($params['type']) &&$params['type']==300){
|
|||
|
$data['change_type']=300;
|
|||
|
}
|
|||
|
$order = RechargeOrder::create($data);
|
|||
|
|
|||
|
return [
|
|||
|
'order_id' => (int)$order['id'],
|
|||
|
'from' => 'recharge'
|
|||
|
];
|
|||
|
} catch (\Exception $e) {
|
|||
|
self::setError($e->getMessage());
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 充值配置
|
|||
|
* @param $userId
|
|||
|
* @return array
|
|||
|
* @author 段誉
|
|||
|
* @date 2023/2/24 16:56
|
|||
|
*/
|
|||
|
public static function config($userId)
|
|||
|
{
|
|||
|
$userMoney = User::where(['id' => $userId])->value('user_money');
|
|||
|
$minAmount = ConfigService::get('recharge', 'min_amount', 0);
|
|||
|
$status = ConfigService::get('recharge', 'status', 0);
|
|||
|
|
|||
|
return [
|
|||
|
'status' => $status,
|
|||
|
'min_amount' => $minAmount,
|
|||
|
'user_money' => $userMoney,
|
|||
|
];
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|