Files
huangjingfen/pro_v3.5.1_副本/app/services/user/member/MemberRightServices.php

175 lines
5.9 KiB
PHP
Raw Normal View History

feat(fsgx): 完成全部24项开发任务 Phase1-7 Phase1 后端核心: - 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess) - SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机) - StoreOrderCreateServices 周期循环佣金计算 - StoreOrderTakeServices 佣金发放后同步冻结积分 - StoreProductServices/StoreProduct 保存 is_queue_goods Phase2 后端接口: - GET /api/hjf/brokerage/progress 佣金周期进度 - GET /api/hjf/assets/overview 资产总览 - HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务 - PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口 - GET /adminapi/hjf/points/release_log 积分日志接口 Phase3 前端清理: - hjfCustom.js 路由精简(仅保留 points/log) - hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口 - pages.json 公排→推荐佣金/佣金记录/佣金规则 Phase4-5 前端改造: - queue/status.vue 推荐佣金进度页整体重写 - 商品详情/订单确认/支付结果页文案与逻辑改造 - 个人中心/资产页/引导页/规则页文案改造 - HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造 - 推广中心嵌入佣金进度摘要 - hjfMockData.js 全量更新(公排字段→佣金字段) Phase6 Admin 增强: - 用户列表新增 frozen_points/available_points 列及不考核操作按钮 - hjfPoints.js USE_MOCK=false 对接真实积分日志接口 Phase7 配置文档: - docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单 Made-with: Cursor
2026-03-23 22:32:19 +08:00
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\services\user\member;
use app\dao\user\member\MemberRightDao;
use app\services\BaseServices;
use crmeb\exceptions\AdminException;
use think\annotation\Inject;
/**
* Class MemberRightServices
* @package app\services\user\member
* @mixin MemberRightDao
*/
class MemberRightServices extends BaseServices
{
/**
* @var MemberRightDao
*/
#[Inject]
protected MemberRightDao $dao;
/**
* 获取会员权益
* @param array $where
* @param array $field
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getSearchList(array $where = [], array $field = ['*'])
{
[$page, $limit] = $this->getPageValue();
$list = $this->dao->getSearchList($where, $page, $limit, $field);
foreach ($list as &$item) {
$item['image'] = set_file_url($item['image']);
}
$count = $this->dao->count($where);
return compact('list', 'count');
}
/**
* 编辑保存
* @param int $id
* @param array $data
*/
public function save(int $id, array $data)
{
if (!$data['right_type']) throw new AdminException("会员权益类型缺失");
if (!$id) throw new AdminException("id参数缺失");
if (!$data['title'] || !$data['show_title']) throw new AdminException("请设置权益名称");
if (!$data['image']) throw new AdminException("请上传会员权益图标");
switch ($data['right_type']) {
case "integral":
if (!$data['number']) throw new AdminException("请设置返还积分倍数");
if ($data['number'] < 0) throw new AdminException("返还积分倍数不能为负数");
$save['number'] = abs($data['number']);
break;
case "express" :
if (!$data['number']) throw new AdminException("请设置运费折扣");
if ($data['number'] < 0) throw new AdminException("运费折扣不能为负数");
$save['number'] = abs($data['number']);
break;
case "sign" :
if (!$data['number']) throw new AdminException("请设置签到积分倍数");
if ($data['number'] < 0) throw new AdminException("签到积分倍数不能为负数");
$save['number'] = abs($data['number']);
break;
case "offline" :
if (!$data['number']) throw new AdminException("请设置线下付款折扣");
if ($data['number'] < 0) throw new AdminException("线下付款不能为负数");
$save['number'] = abs($data['number']);
}
$save['show_title'] = $data['show_title'];
$save['image'] = $data['image'];
$save['status'] = $data['status'];
$save['sort'] = $data['sort'];
$this->dao->update($id, $data);
$right = $this->dao->get($id);
if ($right) {
$this->dao->cacheUpdate($right->toArray());
}
return true;
}
/**
* 添加权益内容
* @param int $id
* @param array $data
* @return bool
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function save_content(int $id, array $data)
{
if (!$id) throw new AdminException("id参数缺失");
if (!$data['content']) throw new AdminException("请添加权益内容");
$this->dao->update($id, $data);
$right = $this->dao->get($id);
if ($right) {
$this->dao->cacheUpdate($right->toArray());
}
return true;
}
/**
* 获取单条信息
* @param array $where
* @param string $field
* @return array|false|\think\Model|null
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getOne(array $where, string $field = '*')
{
if (!$where) return false;
return $this->dao->getOne($where, $field);
}
/**
* 查看某权益是否开启
* @param $rightType
* @return bool
*/
public function getMemberRightStatus($rightType)
{
if (!$rightType) return false;
$status = $this->dao->value(['right_type' => $rightType], 'status');
if ($status) return true;
return false;
}
/**
* 在缓存中查找权益等级
* @param string $rightType
* @return false|mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author 等风来
* @email 136327134@qq.com
* @date 2022/11/10
*/
public function getMemberRightCache(string $rightType)
{
$list = $this->dao->cacheList();
if ($list === null || (is_array($list) && !$list)) {
$list = $this->dao->getSearchList(['status' => 1]);
$this->dao->cacheCreate($list);
}
foreach ($list as $item) {
if ($rightType == $item['right_type']) {
return $item;
}
}
return false;
}
}