Files
huangjingfen/pro_v3.5.1/app/services/pay/IntegralPayServices.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

88 lines
2.7 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\services\pay;
use app\services\BaseServices;
use app\services\user\UserBillServices;
use app\services\user\UserServices;
use think\exception\ValidateException;
/**
* 积分支付
* Class IntegralPayServices
* @package app\services\pay
*/
class IntegralPayServices extends BaseServices
{
/**
* 验证积分支付
* @param int $uid
* @param array $orderInfo
* @param $userInfo
* @return bool
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function checkIntegralPay(int $uid, array $orderInfo, $userInfo = [])
{
if (!$uid) {
throw new ValidateException('缺少参数');
}
if (!$orderInfo) {
throw new ValidateException('订单不存在');
}
if ($orderInfo['paid']) {
throw new ValidateException('该订单已支付!');
}
if (!$userInfo) {
/** @var UserServices $userServices */
$userServices = app()->make(UserServices::class);
$userInfo = $userServices->getUserInfo($uid);
}
if (!$userInfo) {
throw new ValidateException('用户信息不存在');
}
if ($userInfo['integral'] < $orderInfo['pay_integral']) {
throw new ValidateException('积分不足' . intval($orderInfo['pay_integral']));
}
return true;
}
/**
* 使用积分
* @param int $uid
* @param array $orderInfo
* @param $userInfo
* @return bool
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function integralOrderPay(int $uid, array $orderInfo, $userInfo)
{
$this->checkIntegralPay($uid, $orderInfo, $userInfo);
$priceIntegral = $orderInfo['pay_integral'];
$res = true;
if ($userInfo['integral'] > 0) {
/** @var UserServices $userServices */
$userServices = app()->make(UserServices::class);
if ($userInfo['integral'] > $priceIntegral) {
$integral = bcsub((string)$userInfo['integral'], (string)$priceIntegral);
} else {
$integral = 0;
}
$res = $userServices->update($uid, ['integral' => $integral]);
/** @var UserBillServices $userBillServices */
$userBillServices = app()->make(UserBillServices::class);
$res = $res && false !== $userBillServices->income('storeIntegral_use_integral', $uid, (int)$priceIntegral, (int)$integral, $orderInfo['id']);
}
return $res;
}
}