mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
去除 data 模块代码
This commit is contained in:
parent
ffca5f8524
commit
a344db0b14
@ -1,95 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\command;
|
||||
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\model\ShopOrderItem;
|
||||
use app\data\service\OrderService;
|
||||
use think\admin\Command;
|
||||
use think\admin\Exception;
|
||||
use think\console\Input;
|
||||
use think\console\Output;
|
||||
use think\Model;
|
||||
|
||||
/**
|
||||
* 商城订单自动清理
|
||||
* Class OrderClean
|
||||
* @package app\data\command
|
||||
*/
|
||||
class OrderClean extends Command
|
||||
{
|
||||
protected function configure()
|
||||
{
|
||||
$this->setName('xdata:OrderClean');
|
||||
$this->setDescription('批量清理商城订单数据');
|
||||
}
|
||||
|
||||
/**
|
||||
* 业务指令执行
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @return void
|
||||
* @throws Exception
|
||||
*/
|
||||
protected function execute(Input $input, Output $output)
|
||||
{
|
||||
$this->_autoCancelOrder();
|
||||
$this->_autoRemoveOrder();
|
||||
}
|
||||
|
||||
/**
|
||||
* 自动取消30分钟未支付的订单
|
||||
* @throws Exception
|
||||
*/
|
||||
private function _autoCancelOrder()
|
||||
{
|
||||
try {
|
||||
$map = [['status', '<', 3], ['payment_status', '=', 0]];
|
||||
$map[] = ['create_at', '<', date('Y-m-d H:i:s', strtotime('-30 minutes'))];
|
||||
[$count, $total] = [0, ($result = ShopOrder::mk()->where($map)->select())->count()];
|
||||
$result->map(function (Model $item) use ($total, &$count) {
|
||||
$this->queue->message($total, ++$count, "开始取消未支付的订单 {$item['order_no']}");
|
||||
$item->save(['status' => 0, 'cancel_status' => 1, 'cancel_datetime' => date('Y-m-d H:i:s'), 'cancel_remark' => '自动取消30分钟未完成支付']);
|
||||
OrderService::stock($item['order_no']);
|
||||
$this->queue->message($total, $count, "完成取消未支付的订单 {$item['order_no']}", 1);
|
||||
});
|
||||
} catch (\Exception $exception) {
|
||||
$this->queue->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 自动清理已经取消的订单
|
||||
* @throws Exception
|
||||
*/
|
||||
private function _autoRemoveOrder()
|
||||
{
|
||||
try {
|
||||
$map = [['status', '=', 0], ['payment_status', '=', 0]];
|
||||
$map[] = ['create_at', '<', date('Y-m-d H:i:s', strtotime('-3 days'))];
|
||||
[$count, $total] = [0, ($result = ShopOrder::mk()->where($map)->select())->count()];
|
||||
$result->map(function (Model $item) use ($total, &$count) {
|
||||
$this->queue->message($total, ++$count, "开始清理已取消的订单 {$item['order_no']}");
|
||||
ShopOrder::mk()->where(['order_no' => $item['order_no']])->delete();
|
||||
ShopOrderItem::mk()->where(['order_no' => $item['order_no']])->delete();
|
||||
$this->queue->message($total, $count, "完成清理已取消的订单 {$item['order_no']}", 1);
|
||||
});
|
||||
} catch (\Exception $exception) {
|
||||
$this->queue->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
@ -1,93 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\command;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\service\UserUpgradeService;
|
||||
use think\admin\Command;
|
||||
use think\console\Input;
|
||||
use think\console\input\Argument;
|
||||
use think\console\Output;
|
||||
|
||||
/**
|
||||
* 更新用户代理关系
|
||||
* Class UserAgent
|
||||
* @package app\data\command
|
||||
*/
|
||||
class UserAgent extends Command
|
||||
{
|
||||
protected function configure()
|
||||
{
|
||||
$this->setName('xdata:UserAgent');
|
||||
$this->addArgument('uuid', Argument::OPTIONAL, '目标用户', '');
|
||||
$this->addArgument('puid', Argument::OPTIONAL, '上级代理', '');
|
||||
$this->setDescription('重新设置用户上级代理, 参数:UUID PUID');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @return void
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function execute(Input $input, Output $output)
|
||||
{
|
||||
[$uuid, $puid] = [$input->getArgument('uuid'), $input->getArgument('puid')];
|
||||
if (empty($uuid)) $this->setQueueError("参数UID无效,请传入正确的参数!");
|
||||
if (empty($puid)) $this->setQueueError("参数PID无效,请传入正确的参数!");
|
||||
|
||||
// 检查当前用户资料
|
||||
$user = DataUser::mk()->where(['id' => $uuid])->find();
|
||||
if (empty($user)) $this->setQueueError("读取用户数据失败!");
|
||||
|
||||
// 检查上级代理用户
|
||||
$parant = DataUser::mk()->where(['id' => $puid])->find();
|
||||
if (empty($parant)) $this->setQueueError('读取代理数据失败!');
|
||||
|
||||
// 检查异常关系处理
|
||||
if (stripos($parant['path'], "-{$user['id']}-")) {
|
||||
$this->setQueueError('不能把下级设置为代理!');
|
||||
}
|
||||
|
||||
// 更新自己的代理关系
|
||||
$path1 = rtrim($parant['path'] ?: '-', '-') . "-{$parant['id']}-";
|
||||
DataUser::mk()->where(['id' => $user['id']])->update([
|
||||
'path' => $path1, 'layer' => substr_count($path1, '-'),
|
||||
'pid0' => $parant['id'], 'pid1' => $parant['id'], 'pid2' => $parant['pid1'],
|
||||
]);
|
||||
UserUpgradeService::upgrade($user['id'], true);
|
||||
$this->setQueueMessage(1, 1, "更新指定用户[{$user['id']}]代理绑定成功!");
|
||||
|
||||
// 更新下级的代理关系
|
||||
$path2 = "{$user['path']}{$user['id']}-";
|
||||
[$total, $count] = [DataUser::mk()->whereLike('path', "{$path2}%")->count(), 0];
|
||||
foreach (DataUser::mk()->whereLike('path', "{$path2}%")->order('layer desc')->select() as $vo) {
|
||||
$this->setQueueMessage($total, ++$count, "开始更新下级用户[{$vo['id']}]代理绑定!");
|
||||
// 更新下级用户代理数据
|
||||
$path3 = preg_replace("#^{$path2}#", "{$path1}{$user['id']}-", $vo['path']);
|
||||
$attrs = array_reverse(str2arr($path3, '-'));
|
||||
DataUser::mk()->where(['id' => $vo['id']])->update([
|
||||
'path' => $path3, 'layer' => substr_count($path3, '-'),
|
||||
'pid0' => $attrs[0] ?? 0, 'pid1' => $attrs[0] ?? 0, 'pid2' => $attrs[1] ?? 0,
|
||||
]);
|
||||
$this->setQueueMessage($total, $count, "完成更新下级用户[{$vo['id']}]代理绑定!", 1);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\command;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\service\UserBalanceService;
|
||||
use app\data\service\UserRebateService;
|
||||
use think\admin\Command;
|
||||
use think\admin\Exception;
|
||||
use think\console\Input;
|
||||
use think\console\Output;
|
||||
|
||||
/**
|
||||
* 用户余额及返利重算处理
|
||||
* Class UserBalance
|
||||
* @package app\data\command
|
||||
*/
|
||||
class UserAmount extends Command
|
||||
{
|
||||
protected function configure()
|
||||
{
|
||||
$this->setName('xdata:UserAmount');
|
||||
$this->setDescription('批量重新计算余额返利');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @return void
|
||||
* @throws Exception
|
||||
*/
|
||||
protected function execute(Input $input, Output $output)
|
||||
{
|
||||
[$total, $count, $error] = [DataUser::mk()->count(), 0, 0];
|
||||
foreach (DataUser::mk()->field('id')->cursor() as $user) try {
|
||||
$this->queue->message($total, ++$count, "刷新用户 [{$user['id']}] 余额及返利开始");
|
||||
UserRebateService::amount($user['id']) && UserBalanceService::amount($user['id']);
|
||||
$this->queue->message($total, $count, "刷新用户 [{$user['id']}] 余额及返利完成", 1);
|
||||
} catch (\Exception $exception) {
|
||||
$error++;
|
||||
$this->queue->message($total, $count, "刷新用户 [{$user['id']}] 余额及返利失败, {$exception->getMessage()}", 1);
|
||||
}
|
||||
$this->setQueueSuccess("此次共处理 {$total} 个刷新操作, 其中有 {$error} 个刷新失败。");
|
||||
}
|
||||
}
|
@ -1,276 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\command;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserTransfer;
|
||||
use app\data\service\UserRebateService;
|
||||
use think\admin\Command;
|
||||
use think\admin\Exception;
|
||||
use think\admin\storage\LocalStorage;
|
||||
use think\console\Input;
|
||||
use think\console\Output;
|
||||
use WePay\Transfers;
|
||||
use WePay\TransfersBank;
|
||||
|
||||
/**
|
||||
* 用户提现处理
|
||||
* Class UserTransfer
|
||||
* @package app\data\command
|
||||
*/
|
||||
class UserTransfer extends Command
|
||||
{
|
||||
protected function configure()
|
||||
{
|
||||
$this->setName('xdata:UserTransfer');
|
||||
$this->setDescription('批量执行线上打款操作');
|
||||
}
|
||||
|
||||
/**
|
||||
* 执行微信提现操作
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @return void
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
protected function execute(Input $input, Output $output)
|
||||
{
|
||||
$map = [['type', 'in', ['wechat_banks', 'wechat_wallet']], ['status', 'in', [3, 4]]];
|
||||
[$total, $count, $error] = [DataUserTransfer::mk()->where($map)->count(), 0, 0];
|
||||
foreach (DataUserTransfer::mk()->where($map)->cursor() as $vo) try {
|
||||
$this->queue->message($total, ++$count, "开始处理订单 {$vo['code']} 提现");
|
||||
if ($vo['status'] === 3) {
|
||||
$this->queue->message($total, $count, "尝试处理订单 {$vo['code']} 打款", 1);
|
||||
if ($vo['type'] === 'wechat_banks') {
|
||||
[$config, $result] = $this->createTransferBank($vo);
|
||||
} else {
|
||||
[$config, $result] = $this->createTransferWallet($vo);
|
||||
}
|
||||
if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
|
||||
DataUserTransfer::mk()->where(['code' => $vo['code']])->update([
|
||||
'status' => 4,
|
||||
'appid' => $config['appid'],
|
||||
'openid' => $config['openid'],
|
||||
'trade_no' => $result['partner_trade_no'],
|
||||
'trade_time' => $result['payment_time'] ?? date('Y-m-d H:i:s'),
|
||||
'change_time' => date('Y-m-d H:i:s'),
|
||||
'change_desc' => '创建微信提现成功',
|
||||
]);
|
||||
} else {
|
||||
DataUserTransfer::mk()->where(['code' => $vo['code']])->update([
|
||||
'change_time' => date('Y-m-d H:i:s'), 'change_desc' => $result['err_code_des'] ?? '线上提现失败',
|
||||
]);
|
||||
}
|
||||
} elseif ($vo['status'] === 4) {
|
||||
$this->queue->message($total, $count, "刷新提现订单 {$vo['code']} 状态", 1);
|
||||
if ($vo['type'] === 'wechat_banks') {
|
||||
$this->queryTransferBank($vo);
|
||||
} else {
|
||||
$this->queryTransferWallet($vo);
|
||||
}
|
||||
}
|
||||
} catch (\Exception $exception) {
|
||||
$error++;
|
||||
$this->queue->message($total, $count, "处理提现订单 {$vo['code']} 失败, {$exception->getMessage()}", 1);
|
||||
DataUserTransfer::mk()->where(['code' => $vo['code']])->update([
|
||||
'change_time' => date('Y-m-d H:i:s'), 'change_desc' => $exception->getMessage(),
|
||||
]);
|
||||
}
|
||||
$this->setQueueSuccess("此次共处理 {$total} 笔提现操作, 其中有 {$error} 笔处理失败。");
|
||||
}
|
||||
|
||||
/**
|
||||
* 尝试提现转账到银行卡
|
||||
* @param array $item
|
||||
* @return array [config, result]
|
||||
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function createTransferBank(array $item): array
|
||||
{
|
||||
$config = $this->getConfig($item['uuid']);
|
||||
return [$config, TransfersBank::instance($config)->create([
|
||||
'partner_trade_no' => $item['code'],
|
||||
'enc_bank_no' => $item['bank_code'],
|
||||
'enc_true_name' => $item['bank_user'],
|
||||
'bank_code' => $item['bank_wseq'],
|
||||
'amount' => intval($item['amount'] - $item['charge_amount']) * 100,
|
||||
'desc' => '微信银行卡提现',
|
||||
])];
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取微信提现参数
|
||||
* @param int $uuid
|
||||
* @return array
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function getConfig(int $uuid): array
|
||||
{
|
||||
$data = sysdata('TransferWxpay');
|
||||
if (empty($data)) throw new Exception('未配置微信提现商户');
|
||||
// 商户证书文件处理
|
||||
$local = LocalStorage::instance();
|
||||
if (!$local->has($file1 = "{$data['wechat_mch_id']}_key.pem", true)) {
|
||||
$local->set($file1, $data['wechat_mch_key_text'], true);
|
||||
}
|
||||
if (!$local->has($file2 = "{$data['wechat_mch_id']}_cert.pem", true)) {
|
||||
$local->set($file2, $data['wechat_mch_cert_text'], true);
|
||||
}
|
||||
// 获取用户支付信息
|
||||
$result = $this->getWechatInfo($uuid, $data['wechat_type']);
|
||||
if (empty($result)) throw new Exception('无法读取打款数据');
|
||||
return [
|
||||
'appid' => $result[0],
|
||||
'openid' => $result[1],
|
||||
'mch_id' => $data['wechat_mch_id'],
|
||||
'mch_key' => $data['wechat_mch_key'],
|
||||
'ssl_key' => $local->path($file1, true),
|
||||
'ssl_cer' => $local->path($file2, true),
|
||||
'cache_path' => $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'wechat',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据配置获取用户OPENID
|
||||
* @param int $uuid
|
||||
* @param string $type
|
||||
* @return mixed|null
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function getWechatInfo(int $uuid, string $type): ?array
|
||||
{
|
||||
$user = DataUser::mk()->where(['id' => $uuid])->find();
|
||||
if (empty($user)) return null;
|
||||
$appid1 = sysconf('data.wxapp_appid');
|
||||
if (strtolower(sysconf('wechat.type')) === 'api') {
|
||||
$appid2 = sysconf('wechat.appid');
|
||||
} else {
|
||||
$appid2 = sysconf('wechat.thr_appid');
|
||||
}
|
||||
if ($type === 'normal') {
|
||||
if (!empty($user['openid1'])) return [$appid1, $user['openid1']];
|
||||
if (!empty($user['openid2'])) return [$appid2, $user['openid2']];
|
||||
}
|
||||
if ($type === 'wxapp' && !empty($user['openid1'])) {
|
||||
return [$appid1, $user['openid1']];
|
||||
}
|
||||
if ($type === 'wechat' && !empty($user['openid2'])) {
|
||||
return [$appid2, $user['openid2']];
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* 尝试提现转账到微信钱包
|
||||
* @param array $item
|
||||
* @return array [config, result]
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function createTransferWallet(array $item): array
|
||||
{
|
||||
$config = $this->getConfig($item['uuid']);
|
||||
return [$config, Transfers::instance($config)->create([
|
||||
'openid' => $config['openid'],
|
||||
'amount' => intval($item['amount'] - $item['charge_amount']) * 100,
|
||||
'partner_trade_no' => $item['code'],
|
||||
'spbill_create_ip' => '127.0.0.1',
|
||||
'check_name' => 'NO_CHECK',
|
||||
'desc' => '微信余额提现',
|
||||
])];
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询更新提现打款状态
|
||||
* @param array $item
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function queryTransferBank(array $item)
|
||||
{
|
||||
$config = $this->getConfig($item['uuid']);
|
||||
[$config['appid'], $config['openid']] = [$item['appid'], $item['openid']];
|
||||
$result = TransfersBank::instance($config)->query($item['trade_no']);
|
||||
if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
|
||||
if ($result['status'] === 'SUCCESS') {
|
||||
DataUserTransfer::mk()->where(['code' => $item['code']])->update([
|
||||
'status' => 5,
|
||||
'appid' => $config['appid'],
|
||||
'openid' => $config['openid'],
|
||||
'trade_time' => $result['pay_succ_time'] ?: date('Y-m-d H:i:s'),
|
||||
'change_time' => date('Y-m-d H:i:s'),
|
||||
'change_desc' => '微信提现打款成功',
|
||||
]);
|
||||
}
|
||||
if (in_array($result['status'], ['FAILED', 'BANK_FAIL'])) {
|
||||
DataUserTransfer::mk()->where(['code' => $item['code']])->update([
|
||||
'status' => 0,
|
||||
'change_time' => date('Y-m-d H:i:s'),
|
||||
'change_desc' => '微信提现打款失败',
|
||||
]);
|
||||
// 刷新用户可提现余额
|
||||
UserRebateService::amount($item['uuid']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询更新提现打款状态
|
||||
* @param array $item
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function queryTransferWallet(array $item)
|
||||
{
|
||||
$config = $this->getConfig($item['uuid']);
|
||||
[$config['appid'], $config['openid']] = [$item['appid'], $item['openid']];
|
||||
$result = Transfers::instance($config)->query($item['trade_no']);
|
||||
if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
|
||||
DataUserTransfer::mk()->where(['code' => $item['code']])->update([
|
||||
'status' => 5,
|
||||
'appid' => $config['appid'],
|
||||
'openid' => $config['openid'],
|
||||
'trade_time' => $result['payment_time'],
|
||||
'change_time' => date('Y-m-d H:i:s'),
|
||||
'change_desc' => '微信提现打款成功',
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,61 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\command;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\service\UserUpgradeService;
|
||||
use think\admin\Command;
|
||||
use think\admin\Exception;
|
||||
use think\console\Input;
|
||||
use think\console\Output;
|
||||
|
||||
/**
|
||||
* 用户等级重算处理
|
||||
* Class UserLevel
|
||||
* @package app\data\command
|
||||
*/
|
||||
class UserUpgrade extends Command
|
||||
{
|
||||
protected function configure()
|
||||
{
|
||||
$this->setName('xdata:UserUpgrade');
|
||||
$this->setDescription('批量重新计算用户等级');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @return void
|
||||
* @throws Exception
|
||||
*/
|
||||
protected function execute(Input $input, Output $output)
|
||||
{
|
||||
try {
|
||||
[$total, $count] = [DataUser::mk()->count(), 0];
|
||||
foreach (DataUser::mk()->field('id')->cursor() as $user) {
|
||||
$this->queue->message($total, ++$count, "正在计算用户 [{$user['id']}] 的等级");
|
||||
UserUpgradeService::upgrade($user['id']);
|
||||
$this->queue->message($total, $count, "完成计算用户 [{$user['id']}] 的等级", 1);
|
||||
}
|
||||
$this->setQueueSuccess("此次共重新计算 {$total} 个用户等级。");
|
||||
} catch (Exception $exception) {
|
||||
throw $exception;
|
||||
} catch (\Exception $exception) {
|
||||
$this->setQueueError($exception->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
@ -1,110 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api;
|
||||
|
||||
use app\data\service\UserAdminService;
|
||||
use app\data\service\UserTokenService;
|
||||
use Exception;
|
||||
use think\admin\Controller;
|
||||
use think\exception\HttpResponseException;
|
||||
|
||||
/**
|
||||
* 接口授权认证基类
|
||||
* Class Auth
|
||||
* @package app\data\controller\api
|
||||
*/
|
||||
abstract class Auth extends Controller
|
||||
{
|
||||
/**
|
||||
* 当前接口请求终端类型
|
||||
* >>>>>>>>>>>>>>>>>>>>>>
|
||||
* >>> api-name 接口类型
|
||||
* >>> api-token 接口认证
|
||||
* >>>>>>>>>>>>>>>>>>>>>>
|
||||
* --- 手机浏览器访问 wap
|
||||
* --- 电脑浏览器访问 web
|
||||
* --- 微信小程序访问 wxapp
|
||||
* --- 微信服务号访问 wechat
|
||||
* --- 苹果应用接口访问 isoapp
|
||||
* --- 安卓应用接口访问 android
|
||||
* @var string
|
||||
*/
|
||||
protected $type;
|
||||
|
||||
/**
|
||||
* 当前用户编号
|
||||
* @var integer
|
||||
*/
|
||||
protected $uuid;
|
||||
|
||||
/**
|
||||
* 当前用户数据
|
||||
* @var array
|
||||
*/
|
||||
protected $user;
|
||||
|
||||
/**
|
||||
* 控制器初始化
|
||||
*/
|
||||
protected function initialize()
|
||||
{
|
||||
// 检查接口类型
|
||||
$this->type = $this->request->header('api-name');
|
||||
if (empty($this->type)) $this->error("接口类型异常!");
|
||||
if (!isset(UserAdminService::TYPES[$this->type])) {
|
||||
$this->error("接口类型[{$this->type}]未定义!");
|
||||
}
|
||||
// 读取用户数据
|
||||
$this->user = $this->getUser();
|
||||
$this->uuid = $this->user['id'] ?? '';
|
||||
if (empty($this->uuid)) {
|
||||
$this->error('用户登录失败!', '{-null-}', 401);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户数据
|
||||
* @return array
|
||||
*/
|
||||
protected function getUser(): array
|
||||
{
|
||||
try {
|
||||
if (empty($this->uuid)) {
|
||||
$token = $this->request->header('api-token');
|
||||
if (empty($token)) $this->error('登录认证不能为空!');
|
||||
[$state, $info, $this->uuid] = UserTokenService::check($this->type, $token);
|
||||
if (empty($state)) $this->error($info, '{-null-}', 401);
|
||||
}
|
||||
return UserAdminService::get($this->uuid, $this->type);
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
trace_file($exception);
|
||||
$this->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示用户禁用提示
|
||||
*/
|
||||
protected function checkUserStatus()
|
||||
{
|
||||
if (empty($this->user['status'])) {
|
||||
$this->error('账户已被冻结!');
|
||||
}
|
||||
}
|
||||
}
|
@ -1,78 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api;
|
||||
|
||||
use app\data\model\BaseUserMessage;
|
||||
use think\admin\Controller;
|
||||
use think\admin\helper\QueryHelper;
|
||||
use think\admin\model\SystemBase;
|
||||
|
||||
/**
|
||||
* 基础数据接口
|
||||
* Class Data
|
||||
* @package app\data\controller\api
|
||||
*/
|
||||
class Data extends Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* 获取指定数据
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
$data = $this->_vali(['name.require' => '数据名称不能为空!']);
|
||||
$extra = ['about', 'slider', 'agreement', 'cropper']; // 其他数据
|
||||
if (in_array($data['name'], $extra) || isset(SystemBase::items('页面内容')[$data['name']])) {
|
||||
$this->success('获取数据对象', sysdata($data['name']));
|
||||
} else {
|
||||
$this->error('获取数据失败', []);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 图片内容数据
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getSlider()
|
||||
{
|
||||
$this->keys = input('keys', '首页图片');
|
||||
if (isset(SystemBase::items('图片内容')[$this->keys])) {
|
||||
$this->success('获取图片内容', sysdata($this->keys));
|
||||
} else {
|
||||
$this->error('获取图片失败', []);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 系统通知数据
|
||||
*/
|
||||
public function getNotify()
|
||||
{
|
||||
BaseUserMessage::mQuery(null, function (QueryHelper $query) {
|
||||
if (($id = input('id')) > 0) {
|
||||
BaseUserMessage::mk()->where(['id' => $id])->inc('num_read')->update([]);
|
||||
}
|
||||
$query->equal('id')->where(['status' => 1, 'deleted' => 0]);
|
||||
$this->success('获取系统通知', $query->order('sort desc,id desc')->page(true, false, false, 20));
|
||||
});
|
||||
}
|
||||
}
|
@ -1,77 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api;
|
||||
|
||||
use app\data\model\ShopGoods;
|
||||
use app\data\model\ShopGoodsCate;
|
||||
use app\data\model\ShopGoodsMark;
|
||||
use app\data\service\ExpressService;
|
||||
use app\data\service\GoodsService;
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 商品数据接口
|
||||
* Class Goods
|
||||
* @package app\data\controller\api
|
||||
*/
|
||||
class Goods extends Controller
|
||||
{
|
||||
/**
|
||||
* 获取分类数据
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getCate()
|
||||
{
|
||||
$this->success('获取分类成功', ShopGoodsCate::treeData());
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取标签数据
|
||||
*/
|
||||
public function getMark()
|
||||
{
|
||||
$this->success('获取标签成功', ShopGoodsMark::items());
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取商品数据
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getGoods()
|
||||
{
|
||||
// 更新访问统计
|
||||
$map = $this->_vali(['code.default' => '']);
|
||||
if ($map['code']) ShopGoods::mk()->where($map)->inc('num_read')->update([]);
|
||||
// 商品数据处理
|
||||
$query = ShopGoods::mQuery()->like('name,marks,cateids,payment')->equal('code,vip_entry');
|
||||
$result = $query->where(['deleted' => 0, 'status' => 1])->order('sort desc,id desc')->page(true, false, false, 10);
|
||||
if (count($result['list']) > 0) GoodsService::bindData($result['list']);
|
||||
$this->success('获取商品数据', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取配送区域
|
||||
*/
|
||||
public function getRegion()
|
||||
{
|
||||
$this->success('获取区域成功', ExpressService::region(3, 1));
|
||||
}
|
||||
}
|
@ -1,123 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\service\MessageService;
|
||||
use app\data\service\UserAdminService;
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 用户登录注册接口
|
||||
* Class Login
|
||||
* @package app\data\controller\api
|
||||
*/
|
||||
class Login extends Controller
|
||||
{
|
||||
/**
|
||||
* 接口认证类型
|
||||
* @var string
|
||||
*/
|
||||
private $type;
|
||||
|
||||
/**
|
||||
* 控制器初始化
|
||||
*/
|
||||
protected function initialize()
|
||||
{
|
||||
// 接收接口类型
|
||||
$this->type = $this->request->request('api');
|
||||
$this->type = $this->type ?: $this->request->header('api-name');
|
||||
$this->type = $this->type ?: $this->request->header('api-type');
|
||||
$this->type = $this->type ?: UserAdminService::API_TYPE_WAP;
|
||||
if (empty(UserAdminService::TYPES[$this->type])) {
|
||||
$this->error("接口支付[{$this->type}]未定义规则!");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户登录接口
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function in()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'phone.mobile' => '手机号码格式错误!',
|
||||
'phone.require' => '手机号码不能为空!',
|
||||
'password.require' => '登录密码不能为空!',
|
||||
]);
|
||||
$map = ['deleted' => 0, 'phone' => $data['phone']];
|
||||
$user = DataUser::mk()->where($map)->findOrEmpty();
|
||||
if ($user->isEmpty()) $this->error('该手机号还没有注册哦!');
|
||||
if (empty($user['status'])) $this->error('该用户账号状态异常!');
|
||||
if (md5($data['password']) === $user['password']) {
|
||||
$this->success('手机登录成功!', UserAdminService::set($map, [], $this->type, true));
|
||||
} else {
|
||||
$this->error('账号登录失败,请稍候再试!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户统一注册入口
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'region_province.default' => '',
|
||||
'region_city.default' => '',
|
||||
'region_area.default' => '',
|
||||
'username.default' => '',
|
||||
'phone.mobile' => '手机格式错误!',
|
||||
'phone.require' => '手机不能为空!',
|
||||
'verify.require' => '验证码不能为空!',
|
||||
'password.require' => '登录密码不能为空!',
|
||||
]);
|
||||
if (!MessageService::instance()->checkVerifyCode($data['verify'], $data['phone'])) {
|
||||
$this->error('手机短信验证失败!');
|
||||
}
|
||||
$map = ['phone' => $data['phone'], 'deleted' => 0];
|
||||
if (DataUser::mk()->where($map)->count() > 0) {
|
||||
$this->error('手机号已注册,请使用其它手机号!');
|
||||
}
|
||||
$data['password'] = md5($data['password']);
|
||||
$user = UserAdminService::set($map, $data, $this->type, true);
|
||||
empty($user) ? $this->error('手机注册失败!') : $this->success('用户注册成功!', $user);
|
||||
}
|
||||
|
||||
/**
|
||||
* 发送短信验证码
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function sendsms()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'phone.mobile' => '手机号格式错误!',
|
||||
'phone.require' => '手机号不能为空!',
|
||||
'secure.require' => '安全码不能为空!',
|
||||
]);
|
||||
if ($data['secure'] !== sysconf('zt.secure_code')) $this->error('接口安全码错误!');
|
||||
[$state, $message, $data] = MessageService::instance()->sendVerifyCode($data['phone']);
|
||||
$state ? $this->success($message, $data) : $this->error($message, $data);
|
||||
}
|
||||
}
|
@ -1,82 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api;
|
||||
|
||||
use app\data\model\DataNewsItem;
|
||||
use app\data\model\DataNewsMark;
|
||||
use app\data\model\DataNewsXCollect;
|
||||
use app\data\service\NewsService;
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 文章接口控制器
|
||||
* Class News
|
||||
* @package app\data\controller\api
|
||||
*/
|
||||
class News extends Controller
|
||||
{
|
||||
/**
|
||||
* 获取文章标签列表
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getMark()
|
||||
{
|
||||
$query = DataNewsMark::mQuery()->like('name');
|
||||
$query->where(['status' => 1, 'deleted' => 0])->withoutField('sort,status,deleted');
|
||||
$this->success('获取文章标签', $query->order('sort desc,id desc')->page(false, false));
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取文章内容列表
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getItem()
|
||||
{
|
||||
if ($code = input('code', '')) {
|
||||
DataNewsItem::mk()->where(['code' => $code])->inc('num_read')->update([]);
|
||||
if (($uuid = input('uuid', 0)) > 0) {
|
||||
$data = ['uuid' => $uuid, 'code' => $code, 'type' => 3, 'status' => 2];
|
||||
DataNewsXCollect::mk()->where($data)->delete();
|
||||
DataNewsXCollect::mk()->insert($data);
|
||||
}
|
||||
}
|
||||
$query = DataNewsItem::mQuery()->like('name,mark')->equal('id,code');
|
||||
$query->where(['deleted' => 0, 'status' => 1])->withoutField('sort,status,deleted');
|
||||
$result = $query->order('sort desc,id desc')->page(true, false, false, 15);
|
||||
NewsService::buildData($result['list'], input('uuid', 0));
|
||||
$this->success('获取文章内容', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取文章评论
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getComment()
|
||||
{
|
||||
$map = $this->_vali(['code.require' => '文章不能为空!']);
|
||||
$query = DataNewsXCollect::mQuery()->where(['type' => 4, 'status' => 2]);
|
||||
$result = $query->where($map)->order('id desc')->page(true, false, false, 15);
|
||||
NewsService::buildListByUidAndCode($result['list']);
|
||||
$this->success('获取评论成功', $result);
|
||||
}
|
||||
}
|
@ -1,78 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api;
|
||||
|
||||
use app\data\service\payment\AlipayPaymentService;
|
||||
use app\data\service\payment\JoinpayPaymentService;
|
||||
use app\data\service\payment\WechatPaymentService;
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 异步通知处理
|
||||
* Class Notify
|
||||
* @package app\data\controller\api
|
||||
*/
|
||||
class Notify extends Controller
|
||||
{
|
||||
/**
|
||||
* 微信支付通知
|
||||
* @param string $scene 支付场景
|
||||
* @param string $param 支付参数
|
||||
* @return string
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
public function wxpay(string $scene = 'order', string $param = ''): string
|
||||
{
|
||||
if (strtolower($scene) === 'order') {
|
||||
return WechatPaymentService::instance($param)->notify();
|
||||
} else {
|
||||
return 'success';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付宝支付通知
|
||||
* @param string $scene 支付场景
|
||||
* @param string $param 支付参数
|
||||
* @return string
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
public function alipay(string $scene = 'order', string $param = ''): string
|
||||
{
|
||||
if (strtolower($scene) === 'order') {
|
||||
return AlipayPaymentService::instance($param)->notify();
|
||||
} else {
|
||||
return 'success';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 汇聚支付通知
|
||||
* @param string $scene 支付场景
|
||||
* @param string $param 支付参数
|
||||
* @return string
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
public function joinpay(string $scene = 'order', string $param = ''): string
|
||||
{
|
||||
if (strtolower($scene) === 'order') {
|
||||
return JoinpayPaymentService::instance($param)->notify();
|
||||
} else {
|
||||
return 'success';
|
||||
}
|
||||
}
|
||||
}
|
@ -1,151 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api;
|
||||
|
||||
use app\data\service\UserAdminService;
|
||||
use app\wechat\service\WechatService;
|
||||
use think\admin\Controller;
|
||||
use think\Response;
|
||||
|
||||
/**
|
||||
* 微信服务号入口
|
||||
* Class Wechat
|
||||
* @package app\data\controller\api
|
||||
* @example 域名请修改为自己的地址,放到网页代码合适位置
|
||||
* <meta name="referrer" content="always">
|
||||
* <script referrerpolicy="unsafe-url" src="https://your.domain.com/data/api.wechat/oauth?mode=1"></script>
|
||||
*
|
||||
* 授权模式支持两种模块,参数 mode=0 时为静默授权,mode=1 时为完整授权
|
||||
* 注意:回跳地址默认从 Header 中的 http_referer 获取,也可以传 source 参数
|
||||
*/
|
||||
class Wechat extends Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* 接口认证类型
|
||||
* @var string
|
||||
*/
|
||||
private $type = UserAdminService::API_TYPE_WECHAT;
|
||||
|
||||
/**
|
||||
* 唯一绑定字段
|
||||
* @var string
|
||||
*/
|
||||
private $field;
|
||||
|
||||
/**
|
||||
* 控制器初始化
|
||||
* @return $this
|
||||
*/
|
||||
protected function initialize(): Wechat
|
||||
{
|
||||
if (empty(UserAdminService::TYPES[$this->type]['auth'])) {
|
||||
$this->error("接口类型[{$this->type}]没有定义规则");
|
||||
} else {
|
||||
$this->field = UserAdminService::TYPES[$this->type]['auth'];
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取 JSSDK 签名
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function jssdk()
|
||||
{
|
||||
$url = input('source') ?: $this->request->server('http_referer');
|
||||
$this->success('获取签名参数', WechatService::instance()->getWebJssdkSign($url));
|
||||
}
|
||||
|
||||
/**
|
||||
* 加载网页授权数据
|
||||
* @return Response
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function oauth(): Response
|
||||
{
|
||||
$source = input('source') ?: $this->request->server('http_referer');
|
||||
[$mode, $script, $wechat] = [input('mode', 1), [], WechatService::instance()];
|
||||
$result = $wechat->getWebOauthInfo($source ?: $this->request->url(true), $mode, false);
|
||||
if (empty($result['openid'])) {
|
||||
$script[] = 'alert("Wechat WebOauth failed.")';
|
||||
} else {
|
||||
$data = $result['fansinfo'] ?? [];
|
||||
$data[$this->field] = $data['openid'];
|
||||
$data['base_sex'] = ['未知', '男', '女'][$data['sex']] ?? '未知';
|
||||
if (isset($result['unionid'])) $data['unionid'] = $result['unionid'];
|
||||
if (isset($data['headimgurl'])) $data['headimg'] = $data['headimgurl'];
|
||||
$map = UserAdminService::getUserUniMap($this->field, $data[$this->field], $data['unionid'] ?? '');
|
||||
$result['userinfo'] = UserAdminService::set($map, array_merge($map, $data), $this->type, true);
|
||||
$script[] = "window.WeChatOpenid='{$result['openid']}'";
|
||||
$script[] = 'window.WeChatFansInfo=' . json_encode($result['fansinfo'], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
|
||||
$script[] = 'window.WeChatUserInfo=' . json_encode($result['userinfo'], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
|
||||
}
|
||||
$script[] = '';
|
||||
return Response::create(join(";\n", $script))->contentType('application/x-javascript');
|
||||
}
|
||||
|
||||
/**
|
||||
* 网页授权测试
|
||||
* 使用网页直接访问此链接
|
||||
* @return string
|
||||
*/
|
||||
public function otest(): string
|
||||
{
|
||||
return <<<EOL
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>微信网页授权测试</title>
|
||||
<meta name="referrer" content="always">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<style>pre{padding:20px;overflow:auto;margin-top:10px;background:#ccc;border-radius:6px;}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>当前链接</div>
|
||||
<pre>{$this->request->scheme()}://{$this->request->host()}/data/api.wechat/oauth?mode=1</pre>
|
||||
|
||||
<div style="margin-top:30px">粉丝数据</div>
|
||||
<pre id="fansdata">待网页授权,加载粉丝数据...</pre>
|
||||
|
||||
<div style="margin-top:30px">用户数据</div>
|
||||
<pre id="userdata">待网页授权,加载用户数据...</pre>
|
||||
|
||||
<script referrerpolicy="unsafe-url" src="//{$this->request->host()}/data/api.wechat/oauth?mode=1"></script>
|
||||
<script>
|
||||
if(typeof window.WeChatFansInfo === 'object'){
|
||||
document.getElementById('fansdata').innerText = JSON.stringify(window.WeChatFansInfo, null, 2);
|
||||
}
|
||||
if(typeof window.WeChatUserInfo === 'object'){
|
||||
document.getElementById('userdata').innerText = JSON.stringify(window.WeChatUserInfo, null, 2);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
EOL;
|
||||
}
|
||||
}
|
@ -1,215 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api;
|
||||
|
||||
use app\data\service\UserAdminService;
|
||||
use Exception;
|
||||
use think\admin\Controller;
|
||||
use think\exception\HttpResponseException;
|
||||
use think\Response;
|
||||
use WeMini\Crypt;
|
||||
use WeMini\Live;
|
||||
use WeMini\Qrcode;
|
||||
|
||||
/**
|
||||
* 微信小程序入口
|
||||
* Class Wxapp
|
||||
* @package app\data\controller\api
|
||||
*/
|
||||
class Wxapp extends Controller
|
||||
{
|
||||
/**
|
||||
* 接口认证类型
|
||||
* @var string
|
||||
*/
|
||||
private $type = UserAdminService::API_TYPE_WXAPP;
|
||||
|
||||
/**
|
||||
* 唯一绑定字段
|
||||
* @var string
|
||||
*/
|
||||
private $field;
|
||||
|
||||
/**
|
||||
* 小程序配置参数
|
||||
* @var array
|
||||
*/
|
||||
private $cfg;
|
||||
|
||||
/**
|
||||
* 接口服务初始化
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function initialize()
|
||||
{
|
||||
$opt = sysdata('wxapp');
|
||||
$this->cfg = [
|
||||
'appid' => $opt['appid'] ?? '',
|
||||
'appsecret' => $opt['appkey'] ?? '',
|
||||
'cache_path' => $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'wechat',
|
||||
];
|
||||
if (empty(UserAdminService::TYPES[$this->type]['auth'])) {
|
||||
$this->error("接口类型[{$this->type}]没有定义规则");
|
||||
} else {
|
||||
$this->field = UserAdminService::TYPES[$this->type]['auth'];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 授权Code换取会话信息
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public function session()
|
||||
{
|
||||
$input = $this->_vali(['code.require' => '登录凭证CODE不能为空!']);
|
||||
[$openid, $unionid, $session] = $this->applySessionKey($input['code']);
|
||||
$map = UserAdminService::getUserUniMap($this->field, $openid, $unionid);
|
||||
$data = [$this->field => $openid, 'session_key' => $session];
|
||||
if (!empty($unionid)) $data['unionid'] = $unionid;
|
||||
$this->success('授权换取成功!', UserAdminService::set($map, $data, $this->type, true));
|
||||
}
|
||||
|
||||
/**
|
||||
* 小程序数据解密
|
||||
*/
|
||||
public function decode()
|
||||
{
|
||||
try {
|
||||
$input = $this->_vali([
|
||||
'iv.require' => '解密向量不能为空!',
|
||||
'code.require' => '授权CODE不能为空!',
|
||||
'encrypted.require' => '加密内容不能为空!',
|
||||
]);
|
||||
[$openid, $unionid, $input['session_key']] = $this->applySessionKey($input['code']);
|
||||
$result = Crypt::instance($this->cfg)->decode($input['iv'], $input['session_key'], $input['encrypted']);
|
||||
if (is_array($result) && isset($result['avatarUrl']) && isset($result['nickName'])) {
|
||||
$data = [$this->field => $openid, 'nickname' => $result['nickName'], 'headimg' => $result['avatarUrl']];
|
||||
$data['base_sex'] = ['-', '男', '女'][$result['gender']] ?? '-';
|
||||
if (!empty($unionid)) $data['unionid'] = $unionid;
|
||||
$map = UserAdminService::getUserUniMap($this->field, $openid, $unionid);
|
||||
$this->success('数据解密成功!', UserAdminService::set($map, $data, $this->type, true));
|
||||
} elseif (is_array($result)) {
|
||||
$this->success('数据解密成功!', $result);
|
||||
} else {
|
||||
$this->error('数据处理失败,请稍候再试!');
|
||||
}
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
trace_file($exception);
|
||||
$this->error("数据处理失败,{$exception->getMessage()}");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 授权CODE换取会话信息
|
||||
* @param string $code 换取授权CODE
|
||||
* @return array [openid, sessionkey]
|
||||
*/
|
||||
private function applySessionKey(string $code): array
|
||||
{
|
||||
try {
|
||||
$cache = $this->app->cache->get($code, []);
|
||||
if (isset($cache['openid']) && isset($cache['session_key'])) {
|
||||
return [$cache['openid'], $cache['unionid'] ?? '', $cache['session_key']];
|
||||
}
|
||||
$result = Crypt::instance($this->cfg)->session($code);
|
||||
if (isset($result['openid']) && isset($result['session_key'])) {
|
||||
$this->app->cache->set($code, $result, 60);
|
||||
return [$result['openid'], $result['unionid'] ?? '', $result['session_key']];
|
||||
} elseif (isset($result['errmsg'])) {
|
||||
$this->error($result['errmsg']);
|
||||
} else {
|
||||
$this->error("授权换取失败,请稍候再试!");
|
||||
}
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
trace_file($exception);
|
||||
$this->error("授权换取失败,{$exception->getMessage()}");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取小程序码
|
||||
*/
|
||||
public function qrcode(): Response
|
||||
{
|
||||
try {
|
||||
$data = $this->_vali([
|
||||
'size.default' => 430,
|
||||
'type.default' => 'base64',
|
||||
'path.require' => '跳转路径不能为空!',
|
||||
]);
|
||||
$result = Qrcode::instance($this->cfg)->createMiniPath($data['path'], $data['size']);
|
||||
if ($data['type'] === 'base64') {
|
||||
$this->success('生成小程序码成功!', [
|
||||
'base64' => 'data:image/png;base64,' . base64_encode($result),
|
||||
]);
|
||||
} else {
|
||||
return response($result)->contentType('image/png');
|
||||
}
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
trace_file($exception);
|
||||
$this->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取直播列表
|
||||
*/
|
||||
public function getLiveList()
|
||||
{
|
||||
try {
|
||||
$data = $this->_vali(['start.default' => 0, 'limit.default' => 10]);
|
||||
$list = Live::instance($this->cfg)->getLiveList($data['start'], $data['limit']);
|
||||
$this->success('获取直播列表成功!', $list);
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
trace_file($exception);
|
||||
$this->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取回放源视频
|
||||
*/
|
||||
public function getLiveInfo()
|
||||
{
|
||||
try {
|
||||
$data = $this->_vali([
|
||||
'start.default' => 0,
|
||||
'limit.default' => 10,
|
||||
'action.default' => 'get_replay',
|
||||
'room_id.require' => '直播间不能为空',
|
||||
]);
|
||||
$result = Live::instance($this->cfg)->getLiveInfo($data);
|
||||
$this->success('获取回放视频成功!', $result);
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
trace_file($exception);
|
||||
$this->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
@ -1,148 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api\auth;
|
||||
|
||||
use app\data\controller\api\Auth;
|
||||
use app\data\model\DataUserAddress;
|
||||
use think\admin\extend\CodeExtend;
|
||||
|
||||
/**
|
||||
* 用户收货地址管理
|
||||
* Class Address
|
||||
* @package app\data\controller\api\auth
|
||||
*/
|
||||
class Address extends Auth
|
||||
{
|
||||
/**
|
||||
* 添加收货地址
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function set()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'type.default' => 0,
|
||||
'code.default' => '',
|
||||
'idcode.default' => '', // 身份证号码
|
||||
'idimg1.default' => '', // 身份证正面
|
||||
'idimg2.default' => '', // 身份证反面
|
||||
'type.in:0,1' => '地址状态不在范围!',
|
||||
'name.require' => '收货姓名不能为空!',
|
||||
'phone.mobile' => '收货手机格式错误!',
|
||||
'phone.require' => '收货手机不能为空!',
|
||||
'province.require' => '地址省份不能为空!',
|
||||
'city.require' => '地址城市不能为空!',
|
||||
'area.require' => '地址区域不能为空!',
|
||||
'address.require' => '详情地址不能为空!',
|
||||
'deleted.value' => 0,
|
||||
]);
|
||||
if (empty($data['code'])) {
|
||||
unset($data['code']);
|
||||
$count = DataUserAddress::mk()->where($data)->count();
|
||||
if ($count > 0) $this->error('抱歉,该地址已经存在!');
|
||||
$data['code'] = CodeExtend::uniqidDate(20, 'A');
|
||||
if (DataUserAddress::mk()->insert($data) === false) {
|
||||
$this->error('添加地址失败!');
|
||||
}
|
||||
} else {
|
||||
$map = ['uuid' => $this->uuid, 'code' => $data['code']];
|
||||
$addr = DataUserAddress::mk()->where($map)->find();
|
||||
if (empty($addr)) $this->error('修改地址不存在!');
|
||||
DataUserAddress::mk()->where($map)->update($data);
|
||||
}
|
||||
// 去除其它默认选项
|
||||
if (isset($data['type']) && $data['type'] > 0) {
|
||||
$map = [['uuid', '=', $this->uuid], ['code', '<>', $data['code']]];
|
||||
DataUserAddress::mk()->where($map)->update(['type' => 0]);
|
||||
}
|
||||
$this->success('地址保存成功!', $this->getAddress($data['code']));
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取收货地址
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function get()
|
||||
{
|
||||
$query = DataUserAddress::mQuery()->withoutField('deleted');
|
||||
$query->equal('code')->where(['uuid' => $this->uuid, 'deleted' => 0]);
|
||||
$result = $query->order('type desc,id desc')->page(false, false, false, 15);
|
||||
$this->success('获取地址数据!', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改地址状态
|
||||
* @return void
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'type.in:0,1' => '地址状态不在范围!',
|
||||
'type.require' => '地址状态不能为空!',
|
||||
'code.require' => '地址编号不能为空!',
|
||||
]);
|
||||
// 检查地址是否存在
|
||||
$map = ['uuid' => $data['uuid'], 'code' => $data['code']];
|
||||
if (DataUserAddress::mk()->where($map)->count() < 1) {
|
||||
$this->error('修改的地址不存在!');
|
||||
}
|
||||
// 更新默认地址状态
|
||||
$data['type'] = intval($data['type']);
|
||||
DataUserAddress::mk()->where($map)->update(['type' => $data['type']]);
|
||||
// 去除其它默认选项
|
||||
if ($data['type'] > 0) {
|
||||
$map = [['uuid', '=', $this->uuid], ['code', '<>', $data['code']]];
|
||||
DataUserAddress::mk()->where($map)->update(['type' => 0]);
|
||||
}
|
||||
$this->success('默认设置成功!', $this->getAddress($data['code']));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除收货地址
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
$map = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'code.require' => '地址不能为空!',
|
||||
]);
|
||||
$item = DataUserAddress::mk()->where($map)->findOrEmpty();
|
||||
if ($item->isEmpty()) $this->error('需要删除的地址不存在!');
|
||||
if ($item->save(['deleted' => 1]) !== false) {
|
||||
$this->success('删除地址成功!');
|
||||
} else {
|
||||
$this->error('删除地址失败!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取指定的地址
|
||||
* @param string $code
|
||||
* @return null|array
|
||||
*/
|
||||
private function getAddress(string $code): array
|
||||
{
|
||||
$map = ['code' => $code, 'uuid' => $this->uuid, 'deleted' => 0];
|
||||
return DataUserAddress::mk()->withoutField('deleted')->where($map)->findOrEmpty()->toArray();
|
||||
}
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api\auth;
|
||||
|
||||
use app\data\controller\api\Auth;
|
||||
use app\data\model\DataUserBalance;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 用户余额转账
|
||||
* Class Balance
|
||||
* @package app\data\controller\api\auth
|
||||
*/
|
||||
class Balance extends Auth
|
||||
{
|
||||
/**
|
||||
* 获取用户余额记录
|
||||
*/
|
||||
public function get()
|
||||
{
|
||||
DataUserBalance::mQuery(null, function (QueryHelper $query) {
|
||||
$query->withoutField('deleted,create_by');
|
||||
$query->where(['uuid' => $this->uuid, 'deleted' => 0])->like('create_at#date');
|
||||
$this->success('获取数据成功', $query->order('id desc')->page(true, false, false, 10));
|
||||
});
|
||||
}
|
||||
}
|
@ -1,165 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api\auth;
|
||||
|
||||
use app\data\controller\api\Auth;
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\service\UserAdminService;
|
||||
use app\data\service\UserUpgradeService;
|
||||
use Exception;
|
||||
use think\admin\Storage;
|
||||
use think\exception\HttpResponseException;
|
||||
|
||||
/**
|
||||
* 用户资料管理
|
||||
* Class Center
|
||||
* @package app\data\controller\api\auth
|
||||
*/
|
||||
class Center extends Auth
|
||||
{
|
||||
/**
|
||||
* 更新用户资料
|
||||
*/
|
||||
public function set()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'headimg.default' => '',
|
||||
'username.default' => '',
|
||||
'base_age.default' => '',
|
||||
'base_sex.default' => '',
|
||||
'base_height.default' => '',
|
||||
'base_weight.default' => '',
|
||||
'base_birthday.default' => '',
|
||||
]);
|
||||
foreach ($data as $key => $vo) if ($vo === '') unset($data[$key]);
|
||||
if (empty($data)) $this->error('没有修改的数据!');
|
||||
if (DataUser::mk()->where(['id' => $this->uuid])->update($data) !== false) {
|
||||
$this->success('更新资料成功!', $this->getUser());
|
||||
} else {
|
||||
$this->error('更新资料失败!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户资料
|
||||
*/
|
||||
public function get()
|
||||
{
|
||||
$this->success('获取用户资料', $this->getUser());
|
||||
}
|
||||
|
||||
/**
|
||||
* Base64 图片上传
|
||||
*/
|
||||
public function image()
|
||||
{
|
||||
try {
|
||||
$data = $this->_vali(['base64.require' => '图片内容不为空!']);
|
||||
if (preg_match($preg = '|^data:image/(.*?);base64,|i', $data['base64'])) {
|
||||
[$ext, $img] = explode('|||', preg_replace($preg, '$1|||', $data['base64']));
|
||||
if (empty($ext) || !in_array(strtolower($ext), ['png', 'jpg', 'jpeg'])) {
|
||||
$this->error('图片格式异常!');
|
||||
}
|
||||
$name = Storage::name($img, $ext, 'image/');
|
||||
$info = Storage::instance()->set($name, base64_decode($img));
|
||||
$this->success('图片上传成功!', ['url' => $info['url']]);
|
||||
} else {
|
||||
$this->error('解析内容失败!');
|
||||
}
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
trace_file($exception);
|
||||
$this->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 二进制文件上传
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function upload()
|
||||
{
|
||||
$file = $this->request->file('file');
|
||||
if (empty($file)) $this->error('文件上传异常!');
|
||||
$extension = strtolower($file->getOriginalExtension());
|
||||
if (in_array($extension, ['php', 'sh'])) $this->error('禁止上传此类文件!');
|
||||
$bina = file_get_contents($file->getRealPath());
|
||||
$name = Storage::name($file->getPathname(), $extension, '', 'md5_file');
|
||||
$info = Storage::instance()->set($name, $bina, false, $file->getOriginalName());
|
||||
if (is_array($info) && isset($info['url'])) {
|
||||
$this->success('文件上传成功!', $info);
|
||||
} else {
|
||||
$this->error('文件上传失败!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户等级
|
||||
*/
|
||||
public function levels()
|
||||
{
|
||||
$levels = BaseUserUpgrade::items();
|
||||
$this->success('获取用户等级', array_values($levels));
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取我邀请的朋友
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getFrom()
|
||||
{
|
||||
$map = [];
|
||||
$map[] = ['deleted', '=', 0];
|
||||
$map[] = ['path', 'like', "%-{$this->uuid}-%"];
|
||||
// 查询邀请的朋友
|
||||
$query = DataUser::mQuery()->like('nickname|username#nickname')->equal('vip_code,pids,pid1,id#uuid');
|
||||
$query->field('id,pid0,pid1,pid2,pids,username,nickname,headimg,order_amount_total,teams_amount_total,teams_amount_direct,teams_amount_indirect,teams_users_total,teams_users_direct,teams_users_indirect,rebate_total,rebate_used,rebate_lock,create_at');
|
||||
$result = $query->where($map)->order('id desc')->page(true, false, false, 15);
|
||||
// 统计当前用户所有下属数
|
||||
$total = DataUser::mk()->where($map)->count();
|
||||
// 统计当前用户本月下属数
|
||||
$map[] = ['create_at', 'like', date('Y-m-%')];
|
||||
$month = DataUser::mk()->where($map)->count();
|
||||
// 返回结果列表数据及统计
|
||||
$result['total'] = ['user_total' => $total, 'user_month' => $month];
|
||||
$this->success('获取我邀请的朋友', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 绑定用户邀请人
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function bindFrom()
|
||||
{
|
||||
$data = $this->_vali(['from.require' => '邀请人不能为空']);
|
||||
[$state, $message] = UserUpgradeService::bindAgent($this->uuid, $data['from'], 0);
|
||||
if ($state) {
|
||||
$this->success($message, UserAdminService::total($this->uuid));
|
||||
} else {
|
||||
$this->error($message, UserAdminService::total($this->uuid));
|
||||
}
|
||||
}
|
||||
}
|
@ -1,223 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api\auth;
|
||||
|
||||
use app\data\controller\api\Auth;
|
||||
use app\data\model\DataNewsXCollect;
|
||||
use app\data\service\NewsService;
|
||||
|
||||
/**
|
||||
* 文章评论内容
|
||||
* Class News
|
||||
* @package app\data\controller\api\auth
|
||||
*/
|
||||
class News extends Auth
|
||||
{
|
||||
|
||||
/**
|
||||
* 用户评论内容
|
||||
*/
|
||||
public function addComment()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'type.value' => 4,
|
||||
'status.value' => 1,
|
||||
'code.require' => '文章不能为空!',
|
||||
'reply.require' => '评论不能为空!',
|
||||
]);
|
||||
if (DataNewsXCollect::mk()->insert($data) !== false) {
|
||||
NewsService::syncNewsTotal($data['code']);
|
||||
$this->success('添加评论成功!');
|
||||
} else {
|
||||
$this->error('添加评论失败!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取我的评论
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getComment()
|
||||
{
|
||||
$query = DataNewsXCollect::mQuery()->where(['uuid' => $this->uuid, 'type' => 4]);
|
||||
$result = $query->whereIn('status', [1, 2])->order('id desc')->page(true, false);
|
||||
NewsService::buildListByUidAndCode($result);
|
||||
$this->success('获取评论列表成功', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除内容评论
|
||||
*/
|
||||
public function delComment()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'type.value' => 4,
|
||||
'id.require' => '评论编号不能为空!',
|
||||
'code.require' => '文章编号不能为空!',
|
||||
]);
|
||||
if (DataNewsXCollect::mk()->where($data)->delete() !== false) {
|
||||
$this->success('评论删除成功!');
|
||||
} else {
|
||||
$this->error('认证删除失败!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加内容收藏
|
||||
*/
|
||||
public function addCollect()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'type.value' => 1,
|
||||
'status.value' => 2,
|
||||
'code.require' => '文章编号不能为空!',
|
||||
]);
|
||||
if (DataNewsXCollect::mk()->where($data)->count() > 0) {
|
||||
$this->success('您已收藏!');
|
||||
}
|
||||
if (DataNewsXCollect::mk()->insert($data) !== false) {
|
||||
NewsService::syncNewsTotal($data['code']);
|
||||
$this->success('收藏成功!');
|
||||
} else {
|
||||
$this->error('收藏失败!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 取消收藏文章
|
||||
*/
|
||||
public function delCollect()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'type.value' => 1,
|
||||
'code.require' => '文章编号不能为空!',
|
||||
]);
|
||||
if (DataNewsXCollect::mk()->where($data)->delete() !== false) {
|
||||
NewsService::syncNewsTotal($data['code']);
|
||||
$this->success('取消收藏成功!');
|
||||
} else {
|
||||
$this->error('取消收藏失败!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户收藏的资讯
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getCollect()
|
||||
{
|
||||
$map = ['uuid' => $this->uuid, 'type' => 1];
|
||||
$query = DataNewsXCollect::mQuery()->where($map);
|
||||
$result = $query->order('id desc')->page(true, false, false, 15);
|
||||
NewsService::buildListByUidAndCode($result['list']);
|
||||
$this->success('获取收藏记录成功!', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加内容点赞
|
||||
*/
|
||||
public function addLike()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'type.value' => 2,
|
||||
'status.value' => 2,
|
||||
'code.require' => '文章编号不能为空!',
|
||||
]);
|
||||
if (DataNewsXCollect::mk()->where($data)->count() > 0) {
|
||||
$this->success('您已点赞!');
|
||||
}
|
||||
if (DataNewsXCollect::mk()->insert($data) !== false) {
|
||||
NewsService::syncNewsTotal($data['code']);
|
||||
$this->success('点赞成功!');
|
||||
} else {
|
||||
$this->error('点赞失败!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 取消内容点赞
|
||||
*/
|
||||
public function delLike()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'type.value' => 2,
|
||||
'code.require' => '文章编号不能为空!',
|
||||
]);
|
||||
if (DataNewsXCollect::mk()->where($data)->delete() !== false) {
|
||||
NewsService::syncNewsTotal($data['code']);
|
||||
$this->success('取消点赞成功!');
|
||||
} else {
|
||||
$this->error('取消点赞失败!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户收藏的资讯
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getLike()
|
||||
{
|
||||
$query = DataNewsXCollect::mQuery();
|
||||
$query->where(['uuid' => $this->uuid, 'type' => 2, 'status' => 2]);
|
||||
$result = $query->order('id desc')->page(true, false, false, 15);
|
||||
NewsService::buildListByUidAndCode($result['list']);
|
||||
$this->success('获取点赞记录成功!', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加用户的浏览历史
|
||||
*/
|
||||
public function addHistory()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'type.value' => 2,
|
||||
'status.value' => 2,
|
||||
'code.require' => '文章编号不能为空!',
|
||||
]);
|
||||
DataNewsXCollect::mk()->where($data)->delete();
|
||||
DataNewsXCollect::mk()->insert($data);
|
||||
$this->success('添加浏览历史成功!');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户的浏览历史
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getHistory()
|
||||
{
|
||||
$query = DataNewsXCollect::mQuery();
|
||||
$query->where(['uuid' => $this->uuid, 'type' => 3, 'status' => 2]);
|
||||
$result = $query->order('id desc')->page(true, false, false, 15);
|
||||
NewsService::buildListByUidAndCode($result['list']);
|
||||
$this->success('获取浏览历史成功!', $result);
|
||||
}
|
||||
}
|
@ -1,513 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api\auth;
|
||||
|
||||
use app\data\controller\api\Auth;
|
||||
use app\data\model\BaseUserPayment;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserAddress;
|
||||
use app\data\model\ShopGoods;
|
||||
use app\data\model\ShopGoodsItem;
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\model\ShopOrderItem;
|
||||
use app\data\model\ShopOrderSend;
|
||||
use app\data\service\ExpressService;
|
||||
use app\data\service\GoodsService;
|
||||
use app\data\service\OrderService;
|
||||
use app\data\service\PaymentService;
|
||||
use app\data\service\UserAdminService;
|
||||
use Exception;
|
||||
use stdClass;
|
||||
use think\admin\extend\CodeExtend;
|
||||
use think\exception\HttpResponseException;
|
||||
|
||||
/**
|
||||
* 用户订单数据接口
|
||||
* Class Order
|
||||
* @package app\data\controller\api\auth
|
||||
*/
|
||||
class Order extends Auth
|
||||
{
|
||||
/**
|
||||
* 控制器初始化
|
||||
*/
|
||||
protected function initialize()
|
||||
{
|
||||
parent::initialize();
|
||||
if (empty($this->user['status'])) {
|
||||
$this->error('账户已被冻结,不能操作订单数据哦!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取订单列表
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function get()
|
||||
{
|
||||
$map = ['uuid' => $this->uuid, 'deleted_status' => 0];
|
||||
$query = ShopOrder::mQuery()->in('status')->equal('order_no');
|
||||
$result = $query->where($map)->order('id desc')->page(true, false, false, 20);
|
||||
if (count($result['list']) > 0) OrderService::buildData($result['list']);
|
||||
$this->success('获取订单数据成功!', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户创建订单
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
// 检查用户状态
|
||||
$this->checkUserStatus();
|
||||
// 商品规则
|
||||
$rules = $this->request->post('items', '');
|
||||
if (empty($rules)) $this->error('商品不能为空');
|
||||
// 订单数据
|
||||
[$items, $order, $truckType, $allowPayments] = [[], [], -1, null];
|
||||
$order['uuid'] = $this->uuid;
|
||||
$order['order_no'] = CodeExtend::uniqidDate(18, 'N');
|
||||
// 代理处理
|
||||
$order['puid1'] = input('from', $this->user['pid1']);
|
||||
if ($order['puid1'] == $this->uuid) $order['puid1'] = 0;
|
||||
if ($order['puid1'] > 0) {
|
||||
$map = ['id' => $order['puid1'], 'status' => 1];
|
||||
$order['puid2'] = DataUser::mk()->where($map)->value('pid2');
|
||||
if (is_null($order['puid2'])) $this->error('代理异常');
|
||||
}
|
||||
// 订单商品处理
|
||||
foreach (explode('||', $rules) as $rule) {
|
||||
[$code, $spec, $count] = explode('@', $rule);
|
||||
// 商品信息检查
|
||||
$goodsInfo = ShopGoods::mk()->where(['code' => $code, 'status' => 1, 'deleted' => 0])->find();
|
||||
$goodsItem = ShopGoodsItem::mk()->where(['status' => 1, 'goods_code' => $code, 'goods_spec' => $spec])->find();
|
||||
if (empty($goodsInfo) || empty($goodsItem)) $this->error('商品查询异常');
|
||||
// 商品类型检查
|
||||
if ($truckType < 0) $truckType = $goodsInfo['truck_type'];
|
||||
if ($truckType !== $goodsInfo['truck_type']) $this->error('不能混合下单');
|
||||
// 限制购买数量
|
||||
if (isset($goodsInfo['limit_max_num']) && $goodsInfo['limit_max_num'] > 0) {
|
||||
$map = [['a.uuid', '=', $this->uuid], ['a.status', 'in', [2, 3, 4, 5]], ['b.goods_code', '=', $goodsInfo['code']]];
|
||||
$table = ShopOrderItem::mk()->getTable();
|
||||
$buys = ShopOrder::mk()->alias('a')->join("{$table} b", 'a.order_no=b.order_no')->where($map)->sum('b.stock_sales');
|
||||
if ($buys + $count > $goodsInfo['limit_max_num']) $this->error('超过限购数量');
|
||||
}
|
||||
// 限制购买身份
|
||||
if ($goodsInfo['limit_low_vip'] > $this->user['vip_code']) $this->error('用户等级不够');
|
||||
// 商品库存检查
|
||||
if ($goodsItem['stock_sales'] + $count > $goodsItem['stock_total']) $this->error('商品库存不足');
|
||||
// 支付支付处理
|
||||
$_allowPayments = [];
|
||||
foreach (str2arr($goodsInfo['payment']) as $code) {
|
||||
if (is_null($allowPayments) || in_array($code, $allowPayments)) $_allowPayments[] = $code;
|
||||
}
|
||||
if (empty($_allowPayments)) {
|
||||
$this->error('订单无法统一支付');
|
||||
} else {
|
||||
$allowPayments = $_allowPayments;
|
||||
}
|
||||
// 商品折扣处理
|
||||
[$discountId, $discountRate] = OrderService::discount($goodsInfo['discount_id'], $this->user['vip_code']);
|
||||
// 订单详情处理
|
||||
$items[] = [
|
||||
'uuid' => $order['uuid'],
|
||||
'order_no' => $order['order_no'],
|
||||
// 商品信息字段
|
||||
'goods_name' => $goodsInfo['name'],
|
||||
'goods_cover' => $goodsInfo['cover'],
|
||||
'goods_payment' => $goodsInfo['payment'],
|
||||
'goods_sku' => $goodsItem['goods_sku'],
|
||||
'goods_code' => $goodsItem['goods_code'],
|
||||
'goods_spec' => $goodsItem['goods_spec'],
|
||||
// 库存数量处理
|
||||
'stock_sales' => $count,
|
||||
// 快递发货数据
|
||||
'truck_type' => $goodsInfo['truck_type'],
|
||||
'truck_code' => $goodsInfo['truck_code'],
|
||||
'truck_number' => $goodsInfo['rebate_type'] > 0 ? $goodsItem['number_express'] * $count : 0,
|
||||
// 商品费用字段
|
||||
'price_market' => $goodsItem['price_market'],
|
||||
'price_selling' => $goodsItem['price_selling'],
|
||||
'total_market' => $goodsItem['price_market'] * $count,
|
||||
'total_selling' => $goodsItem['price_selling'] * $count,
|
||||
// 奖励金额积分
|
||||
'reward_balance' => $goodsItem['reward_balance'] * $count,
|
||||
'reward_integral' => $goodsItem['reward_integral'] * $count,
|
||||
// 绑定用户等级
|
||||
'vip_name' => $this->user['vip_name'],
|
||||
'vip_code' => $this->user['vip_code'],
|
||||
// 是否入会礼包
|
||||
'vip_entry' => $goodsInfo['vip_entry'],
|
||||
'vip_upgrade' => $goodsInfo['vip_upgrade'],
|
||||
// 是否参与返利
|
||||
'rebate_type' => $goodsInfo['rebate_type'],
|
||||
'rebate_amount' => $goodsInfo['rebate_type'] > 0 ? $goodsItem['price_selling'] * $count : 0,
|
||||
// 等级优惠方案
|
||||
'discount_id' => $discountId,
|
||||
'discount_rate' => $discountRate,
|
||||
'discount_amount' => $discountRate * $goodsItem['price_selling'] * $count / 100,
|
||||
];
|
||||
}
|
||||
try {
|
||||
$order['payment_allow'] = arr2str($allowPayments);
|
||||
$order['rebate_amount'] = array_sum(array_column($items, 'rebate_amount'));
|
||||
$order['reward_balance'] = array_sum(array_column($items, 'reward_balance'));
|
||||
|
||||
// 订单发货类型
|
||||
$order['status'] = $truckType ? 1 : 2;
|
||||
$order['truck_type'] = $truckType;
|
||||
// 统计商品数量
|
||||
$order['number_goods'] = array_sum(array_column($items, 'stock_sales'));
|
||||
$order['number_express'] = array_sum(array_column($items, 'truck_number'));
|
||||
// 统计商品金额
|
||||
$order['amount_goods'] = array_sum(array_column($items, 'total_selling'));
|
||||
// 优惠后的金额
|
||||
$order['amount_discount'] = array_sum(array_column($items, 'discount_amount'));
|
||||
// 订单随机免减
|
||||
$order['amount_reduct'] = OrderService::getReduct();
|
||||
if ($order['amount_reduct'] > $order['amount_goods']) {
|
||||
$order['amount_reduct'] = $order['amount_goods'];
|
||||
}
|
||||
// 统计订单金额
|
||||
$order['amount_real'] = $order['amount_discount'] - $order['amount_reduct'];
|
||||
$order['amount_total'] = $order['amount_goods'];
|
||||
// 写入商品数据
|
||||
$this->app->db->transaction(function () use ($order, $items) {
|
||||
ShopOrder::mk()->insert($order);
|
||||
ShopOrderItem::mk()->insertAll($items);
|
||||
});
|
||||
// 同步商品库存销量
|
||||
foreach (array_unique(array_column($items, 'goods_code')) as $code) {
|
||||
GoodsService::stock($code);
|
||||
}
|
||||
// 触发订单创建事件
|
||||
$this->app->event->trigger('ShopOrderCreate', $order['order_no']);
|
||||
// 组装订单商品数据
|
||||
$order['items'] = $items;
|
||||
// 返回处理成功数据
|
||||
$this->success('商品下单成功', $order);
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
$this->error("商品下单失败,{$exception->getMessage()}");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户折扣
|
||||
*/
|
||||
public function discount()
|
||||
{
|
||||
$data = $this->_vali(['discount.require' => '折扣编号不能为空!']);
|
||||
[, $rate] = OrderService::discount(intval($data['discount']), $this->user['vip_code']);
|
||||
$this->success('获取用户折扣', ['rate' => $rate]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 模拟计算订单运费
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function express()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'code.require' => '地址不能为空',
|
||||
'order_no.require' => '单号不能为空',
|
||||
]);
|
||||
|
||||
// 用户收货地址
|
||||
$map = ['uuid' => $this->uuid, 'code' => $data['code']];
|
||||
$addr = DataUserAddress::mk()->where($map)->find();
|
||||
if (empty($addr)) $this->error('收货地址异常');
|
||||
|
||||
// 订单状态检查
|
||||
$map = ['uuid' => $this->uuid, 'order_no' => $data['order_no']];
|
||||
$tCount = ShopOrderItem::mk()->where($map)->sum('truck_number');
|
||||
|
||||
// 根据地址计算运费
|
||||
$map = ['status' => 1, 'deleted' => 0, 'order_no' => $data['order_no']];
|
||||
$tCode = ShopOrderItem::mk()->where($map)->column('truck_code');
|
||||
[$amount, , , $remark] = ExpressService::amount($tCode, $addr['province'], $addr['city'], $tCount);
|
||||
$this->success('计算运费成功', ['amount' => $amount, 'remark' => $remark]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单信息完成
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function perfect()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'code.require' => '地址不能为空',
|
||||
'order_no.require' => '单号不能为空',
|
||||
]);
|
||||
|
||||
// 用户收货地址
|
||||
$map = ['uuid' => $this->uuid, 'code' => $data['code'], 'deleted' => 0];
|
||||
$addr = DataUserAddress::mk()->where($map)->find();
|
||||
if (empty($addr)) $this->error('收货地址异常');
|
||||
|
||||
// 订单状态检查
|
||||
$map1 = ['uuid' => $this->uuid, 'order_no' => $data['order_no']];
|
||||
$order = ShopOrder::mk()->where($map1)->whereIn('status', [1, 2])->find();
|
||||
if (empty($order)) $this->error('不能修改地址');
|
||||
if (empty($order['truck_type'])) $this->success('无需快递配送', ['order_no' => $order['order_no']]);
|
||||
|
||||
// 根据地址计算运费
|
||||
$map2 = ['status' => 1, 'deleted' => 0, 'order_no' => $data['order_no']];
|
||||
$tCount = ShopOrderItem::mk()->where($map1)->sum('truck_number');
|
||||
$tCodes = ShopOrderItem::mk()->where($map2)->column('truck_code');
|
||||
[$amount, $tCount, $tCode, $remark] = ExpressService::amount($tCodes, $addr['province'], $addr['city'], $tCount);
|
||||
|
||||
// 创建订单发货信息
|
||||
$express = [
|
||||
'template_code' => $tCode, 'template_count' => $tCount, 'uuid' => $this->uuid,
|
||||
'template_remark' => $remark, 'template_amount' => $amount, 'status' => 1,
|
||||
];
|
||||
$express['order_no'] = $data['order_no'];
|
||||
$express['address_code'] = $data['code'];
|
||||
$express['address_datetime'] = date('Y-m-d H:i:s');
|
||||
|
||||
// 收货人信息
|
||||
$express['address_name'] = $addr['name'];
|
||||
$express['address_phone'] = $addr['phone'];
|
||||
$express['address_idcode'] = $addr['idcode'];
|
||||
$express['address_idimg1'] = $addr['idimg1'];
|
||||
$express['address_idimg2'] = $addr['idimg2'];
|
||||
|
||||
// 收货地址信息
|
||||
$express['address_province'] = $addr['province'];
|
||||
$express['address_city'] = $addr['city'];
|
||||
$express['address_area'] = $addr['area'];
|
||||
$express['address_content'] = $addr['address'];
|
||||
|
||||
ShopOrderSend::mUpdate($express, 'order_no');
|
||||
data_save(ShopOrderSend::class, $express, 'order_no');
|
||||
// 组装更新订单数据
|
||||
$update = ['status' => 2, 'amount_express' => $express['template_amount']];
|
||||
// 重新计算订单金额
|
||||
$update['amount_real'] = $order['amount_discount'] + $amount - $order['amount_reduct'];
|
||||
$update['amount_total'] = $order['amount_goods'] + $amount;
|
||||
// 支付金额不能为零
|
||||
if ($update['amount_real'] <= 0) $update['amount_real'] = 0.00;
|
||||
if ($update['amount_total'] <= 0) $update['amount_total'] = 0.00;
|
||||
// 更新用户订单数据
|
||||
$map = ['uuid' => $this->uuid, 'order_no' => $data['order_no']];
|
||||
if (ShopOrder::mk()->where($map)->update($update) !== false) {
|
||||
// 触发订单确认事件
|
||||
$this->app->event->trigger('ShopOrderPerfect', $order['order_no']);
|
||||
// 返回处理成功数据
|
||||
$this->success('订单确认成功', ['order_no' => $order['order_no']]);
|
||||
} else {
|
||||
$this->error('订单确认失败');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取支付支付数据
|
||||
*/
|
||||
public function channel()
|
||||
{
|
||||
$data = $this->_vali(['uuid.value' => $this->uuid, 'order_no.require' => '单号不能为空']);
|
||||
$payments = ShopOrder::mk()->where($data)->value('payment_allow');
|
||||
if (empty($payments)) $this->error('获取订单支付参数失败');
|
||||
// 读取支付通道配置
|
||||
$query = BaseUserPayment::mk()->where(['status' => 1, 'deleted' => 0]);
|
||||
$query->whereIn('code', str2arr($payments))->whereIn('type', PaymentService::getTypeApi($this->type));
|
||||
$result = $query->order('sort desc,id desc')->column('type,code,name,cover,content,remark', 'code');
|
||||
foreach ($result as &$vo) $vo['content'] = ['voucher_qrcode' => json_decode($vo['content'])->voucher_qrcode ?? ''];
|
||||
$this->success('获取支付参数数据', array_values($result));
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取订单支付状态
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public function payment()
|
||||
{
|
||||
$data = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'order_no.require' => '单号不能为空',
|
||||
'order_remark.default' => '',
|
||||
'payment_code.require' => '支付不能为空',
|
||||
'payment_back.default' => '', # 支付回跳地址
|
||||
'payment_image.default' => '', # 支付凭证图片
|
||||
]);
|
||||
[$map, $order] = $this->getOrderData();
|
||||
if ($order['status'] !== 2) $this->error('不能发起支付');
|
||||
if ($order['payment_status'] > 0) $this->error('已经完成支付');
|
||||
// 更新订单备注
|
||||
if (!empty($data['order_remark'])) {
|
||||
ShopOrder::mk()->where($map)->update([
|
||||
'order_remark' => $data['order_remark'],
|
||||
]);
|
||||
}
|
||||
// 自动处理用户字段
|
||||
$openid = '';
|
||||
if (in_array($this->type, [UserAdminService::API_TYPE_WXAPP, UserAdminService::API_TYPE_WECHAT])) {
|
||||
$openid = $this->user[UserAdminService::TYPES[$this->type]['auth']] ?? '';
|
||||
if (empty($openid)) $this->error("发起支付失败");
|
||||
}
|
||||
try {
|
||||
// 返回订单数据及支付发起参数
|
||||
$type = $order['amount_real'] <= 0 ? 'empty' : $data['payment_code'];
|
||||
$param = PaymentService::instance($type)->create($openid, $order['order_no'], $order['amount_real'], '商城订单支付', '', $data['payment_back'], $data['payment_image']);
|
||||
$this->success('获取支付参数', ['order' => ShopOrder::mk()->where($map)->find() ?: new stdClass(), 'param' => $param]);
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
$this->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 主动取消未支付的订单
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function cancel()
|
||||
{
|
||||
[$map, $order] = $this->getOrderData();
|
||||
if (in_array($order['status'], [1, 2, 3])) {
|
||||
$result = ShopOrder::mk()->where($map)->update([
|
||||
'status' => 0,
|
||||
'cancel_status' => 1,
|
||||
'cancel_remark' => '用户主动取消订单',
|
||||
'cancel_datetime' => date('Y-m-d H:i:s'),
|
||||
]);
|
||||
if ($result !== false && OrderService::stock($order['order_no'])) {
|
||||
// 触发订单取消事件
|
||||
$this->app->event->trigger('ShopOrderCancel', $order['order_no']);
|
||||
// 返回处理成功数据
|
||||
$this->success('订单取消成功');
|
||||
} else {
|
||||
$this->error('订单取消失败');
|
||||
}
|
||||
} else {
|
||||
$this->error('订单不可取消');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户主动删除已取消的订单
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
[$map, $order] = $this->getOrderData();
|
||||
if (empty($order)) $this->error('读取订单失败');
|
||||
if ($order['status'] == 0) {
|
||||
$result = ShopOrder::mk()->where($map)->update([
|
||||
'status' => 0,
|
||||
'deleted_status' => 1,
|
||||
'deleted_remark' => '用户主动删除订单',
|
||||
'deleted_datetime' => date('Y-m-d H:i:s'),
|
||||
]);
|
||||
if ($result !== false) {
|
||||
// 触发订单删除事件
|
||||
$this->app->event->trigger('ShopOrderRemove', $order['order_no']);
|
||||
// 返回处理成功数据
|
||||
$this->success('订单删除成功');
|
||||
} else {
|
||||
$this->error('订单删除失败');
|
||||
}
|
||||
} else {
|
||||
$this->error('订单不可删除');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单确认收货
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public function confirm()
|
||||
{
|
||||
[$map, $order] = $this->getOrderData();
|
||||
if ($order['status'] == 5) {
|
||||
if (ShopOrder::mk()->where($map)->update(['status' => 6]) !== false) {
|
||||
// 触发订单确认事件
|
||||
$this->app->event->trigger('ShopOrderConfirm', $order['order_no']);
|
||||
// 返回处理成功数据
|
||||
$this->success('订单确认成功');
|
||||
} else {
|
||||
$this->error('订单确认失败');
|
||||
}
|
||||
} else {
|
||||
$this->error('订单确认失败');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取输入订单
|
||||
* @return array [map, order]
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function getOrderData(): array
|
||||
{
|
||||
$map = $this->_vali([
|
||||
'uuid.value' => $this->uuid,
|
||||
'order_no.require' => '单号不能为空',
|
||||
]);
|
||||
$order = ShopOrder::mk()->where($map)->find();
|
||||
if (empty($order)) $this->error('读取订单失败');
|
||||
return [$map, $order];
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态统计
|
||||
*/
|
||||
public function total()
|
||||
{
|
||||
$data = ['t0' => 0, 't1' => 0, 't2' => 0, 't3' => 0, 't4' => 0, 't5' => 0, 't6' => 0];
|
||||
$query = ShopOrder::mk()->where(['uuid' => $this->uuid, 'deleted_status' => 0]);
|
||||
foreach ($query->field('status,count(1) count')->group('status')->cursor() as $item) {
|
||||
$data["t{$item['status']}"] = $item['count'];
|
||||
}
|
||||
$this->success('获取订单统计', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 物流追踪查询
|
||||
*/
|
||||
public function track()
|
||||
{
|
||||
try {
|
||||
$data = $this->_vali([
|
||||
'code.require' => '快递不能为空',
|
||||
'number.require' => '单号不能为空'
|
||||
]);
|
||||
$result = ExpressService::query($data['code'], $data['number']);
|
||||
empty($result['code']) ? $this->error($result['info']) : $this->success('快递追踪信息', $result);
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
$this->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
@ -1,72 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api\auth;
|
||||
|
||||
use app\data\controller\api\Auth;
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\model\DataUserRebate;
|
||||
use app\data\service\RebateService;
|
||||
|
||||
/**
|
||||
* 用户返利管理
|
||||
* Class Rebate
|
||||
* @package app\data\controller\api\auth
|
||||
*/
|
||||
class Rebate extends Auth
|
||||
{
|
||||
/**
|
||||
* 获取用户返利记录
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function get()
|
||||
{
|
||||
$date = trim(input('date', date('Y-m')), '-');
|
||||
[$map, $year] = [['uuid' => $this->uuid], substr($date, 0, 4)];
|
||||
$query = DataUserRebate::mQuery()->where($map)->equal('type,status')->whereLike('date', "{$date}%");
|
||||
$this->success('获取返利统计', array_merge($query->order('id desc')->page(true, false, false, 10), [
|
||||
'total' => [
|
||||
'年度' => DataUserRebate::mQuery()->where($map)->equal('type,status')->whereLike('date', "{$year}%")->db()->sum('amount'),
|
||||
'月度' => DataUserRebate::mQuery()->where($map)->equal('type,status')->whereLike('date', "{$date}%")->db()->sum('amount'),
|
||||
],
|
||||
]));
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取我的奖励
|
||||
*/
|
||||
public function prize()
|
||||
{
|
||||
[$map, $data] = [['number' => $this->user['vip_code']], []];
|
||||
$prizes = DataUserRebate::mk()->group('name')->column('name');
|
||||
$rebate = BaseUserUpgrade::mk()->where($map)->value('rebate_rule', '');
|
||||
$codemap = array_merge($prizes, str2arr($rebate));
|
||||
foreach (RebateService::PRIZES as $prize) {
|
||||
if (in_array($prize['code'], $codemap)) $data[] = $prize;
|
||||
}
|
||||
$this->success('获取我的奖励', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取奖励配置
|
||||
*/
|
||||
public function prizes()
|
||||
{
|
||||
$this->success('获取系统奖励', array_values(RebateService::PRIZES));
|
||||
}
|
||||
}
|
@ -1,176 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\api\auth;
|
||||
|
||||
use app\data\controller\api\Auth;
|
||||
use app\data\model\DataUserTransfer;
|
||||
use app\data\service\UserRebateService;
|
||||
use app\data\service\UserTransferService;
|
||||
use think\admin\extend\CodeExtend;
|
||||
|
||||
/**
|
||||
* 用户提现接口
|
||||
* Class Transfer
|
||||
* @package app\data\controller\api\auth
|
||||
*/
|
||||
class Transfer extends Auth
|
||||
{
|
||||
/**
|
||||
* 提交提现处理
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
// 检查用户状态
|
||||
$this->checkUserStatus();
|
||||
// 接收输入数据
|
||||
$data = $this->_vali([
|
||||
'type.require' => '提现方式不能为空!',
|
||||
'amount.require' => '提现金额不能为空!',
|
||||
'remark.default' => '用户提交提现申请!',
|
||||
]);
|
||||
$state = UserTransferService::config('status');
|
||||
if (empty($state)) $this->error('提现还没有开启!');
|
||||
$transfers = UserTransferService::config('transfer');
|
||||
if (empty($transfers[$data['type']]['state'])) $this->error('提现方式已停用!');
|
||||
// 提现数据补充
|
||||
$data['uuid'] = $this->uuid;
|
||||
$data['date'] = date('Y-m-d');
|
||||
$data['code'] = CodeExtend::uniqidDate(20, 'T');
|
||||
// 提现状态处理
|
||||
if (empty($transfers[$data['type']]['state']['audit'])) {
|
||||
$data['status'] = 1;
|
||||
$data['audit_status'] = 0;
|
||||
} else {
|
||||
$data['status'] = 3;
|
||||
$data['audit_status'] = 1;
|
||||
$data['audit_remark'] = '提现免审核';
|
||||
$data['audit_datetime'] = date('Y-m-d H:i:s');
|
||||
}
|
||||
// 扣除手续费
|
||||
$chargeRate = floatval(UserTransferService::config('charge'));
|
||||
$data['charge_rate'] = $chargeRate;
|
||||
$data['charge_amount'] = $chargeRate * $data['amount'] / 100;
|
||||
// 检查可提现余额
|
||||
[$total, $count] = UserRebateService::amount($this->uuid);
|
||||
if ($total - $count < $data['amount']) $this->error('可提现余额不足!');
|
||||
// 提现方式处理
|
||||
if ($data['type'] == 'alipay_account') {
|
||||
$data = array_merge($data, $this->_vali([
|
||||
'alipay_user.require' => '开户姓名不能为空!',
|
||||
'alipay_code.require' => '支付账号不能为空!',
|
||||
]));
|
||||
} elseif (in_array($data['type'], ['wechat_qrcode', 'alipay_qrcode'])) {
|
||||
$data = array_merge($data, $this->_vali([
|
||||
'qrcode.require' => '收款码不能为空!',
|
||||
]));
|
||||
} elseif (in_array($data['type'], ['wechat_banks', 'transfer_banks'])) {
|
||||
$data = array_merge($data, $this->_vali([
|
||||
'bank_wseq.require' => '银行编号不能为空!',
|
||||
'bank_name.require' => '银行名称不能为空!',
|
||||
'bank_user.require' => '开户账号不能为空!',
|
||||
'bank_bran.require' => '银行分行不能为空!',
|
||||
'bank_code.require' => '银行卡号不能为空!',
|
||||
]));
|
||||
} elseif ($data['type'] != 'wechat_wallet') {
|
||||
$this->error('转账方式不存在!');
|
||||
}
|
||||
// 当日提现次数限制
|
||||
$map = ['uuid' => $this->uuid, 'type' => $data['type'], 'date' => $data['date']];
|
||||
$count = DataUserTransfer::mk()->where($map)->count();
|
||||
if ($count >= $transfers[$data['type']]['dayNumber']) $this->error("当日提现次数受限");
|
||||
// 提现金额范围控制
|
||||
if ($transfers[$data['type']]['minAmount'] > $data['amount']) {
|
||||
$this->error("不能少于{$transfers[$data['type']]['minAmount']}元");
|
||||
}
|
||||
if ($transfers[$data['type']]['maxAmount'] < $data['amount']) {
|
||||
$this->error("不能大于{$transfers[$data['type']]['maxAmount']}元");
|
||||
}
|
||||
// 写入用户提现数据
|
||||
if (DataUserTransfer::mk()->insert($data) !== false) {
|
||||
UserRebateService::amount($this->uuid);
|
||||
$this->success('提现申请成功');
|
||||
} else {
|
||||
$this->error('提现申请失败');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户提现记录
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function get()
|
||||
{
|
||||
$query = DataUserTransfer::mQuery()->where(['uuid' => $this->uuid]);
|
||||
$result = $query->like('date,code')->in('status')->order('id desc')->page(true, false, false, 10);
|
||||
// 统计历史数据
|
||||
$map = [['uuid', '=', $this->uuid], ['status', '>', 0]];
|
||||
[$total, $count, $locks] = UserRebateService::amount($this->uuid);
|
||||
$this->success('获取提现成功', array_merge($result, [
|
||||
'total' => [
|
||||
'锁定' => $locks,
|
||||
'可提' => $total - $count,
|
||||
'上月' => DataUserTransfer::mk()->where($map)->whereLike('date', date("Y-m-%", strtotime('last day of -1 month')))->sum('amount'),
|
||||
'本月' => DataUserTransfer::mk()->where($map)->whereLike('date', date("Y-m-%"))->sum('amount'),
|
||||
'全年' => DataUserTransfer::mk()->where($map)->whereLike('date', date("Y-%"))->sum('amount'),
|
||||
],
|
||||
]));
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户取消提现
|
||||
*/
|
||||
public function cancel()
|
||||
{
|
||||
$data = $this->_vali(['uuid.value' => $this->uuid, 'code.require' => '单号不能为空!']);
|
||||
DataUserTransfer::mk()->where($data)->whereIn('status', [1, 2, 3])->update([
|
||||
'status' => 0, 'change_time' => date("Y-m-d H:i:s"), 'change_desc' => '用户主动取消提现',
|
||||
]);
|
||||
UserRebateService::amount($this->uuid);
|
||||
$this->success('取消提现成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户确认提现
|
||||
*/
|
||||
public function confirm()
|
||||
{
|
||||
$data = $this->_vali(['uuid.value' => $this->uuid, 'code.require' => '单号不能为空!']);
|
||||
DataUserTransfer::mk()->where($data)->whereIn('status', [4])->update([
|
||||
'status' => 5, 'change_time' => date("Y-m-d H:i:s"), 'change_desc' => '用户主动确认收款',
|
||||
]);
|
||||
UserRebateService::amount($this->uuid);
|
||||
$this->success('确认收款成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户提现配置
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function config()
|
||||
{
|
||||
$data = UserTransferService::config();
|
||||
$data['banks'] = UserTransferService::instance()->banks();
|
||||
$this->success('获取用户提现配置', $data);
|
||||
}
|
||||
}
|
@ -1,86 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\base;
|
||||
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 应用参数配置
|
||||
* Class Config
|
||||
* @package app\data\controller\base
|
||||
*/
|
||||
class Config extends Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* 微信小程序配置
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function wxapp()
|
||||
{
|
||||
$this->skey = 'wxapp';
|
||||
$this->title = '微信小程序配置';
|
||||
$this->__sysdata('wxapp');
|
||||
}
|
||||
|
||||
/**
|
||||
* 邀请二维码设置
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function cropper()
|
||||
{
|
||||
$this->skey = 'cropper';
|
||||
$this->title = '邀请二维码设置';
|
||||
$this->__sysdata('cropper');
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示并保存数据
|
||||
* @param string $template 模板文件
|
||||
* @param string $history 跳转处理
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function __sysdata(string $template, string $history = '')
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$this->data = sysdata($this->skey);
|
||||
$this->fetch($template);
|
||||
}
|
||||
if ($this->request->isPost()) {
|
||||
if (is_string(input('data'))) {
|
||||
$data = json_decode(input('data'), true) ?: [];
|
||||
} else {
|
||||
$data = $this->request->post();
|
||||
}
|
||||
if (sysdata($this->skey, $data) !== false) {
|
||||
$this->success('内容保存成功!', $history);
|
||||
} else {
|
||||
$this->error('内容保存失败,请稍候再试!');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,106 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\base;
|
||||
|
||||
use app\data\model\BaseUserDiscount;
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use think\admin\Controller;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 折扣方案管理
|
||||
* Class Discount
|
||||
* @package app\data\controller\base
|
||||
*/
|
||||
class Discount extends Controller
|
||||
{
|
||||
/**
|
||||
* 折扣方案管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
BaseUserDiscount::mQuery()->layTable(function () {
|
||||
$this->title = '折扣方案管理';
|
||||
}, function (QueryHelper $query) {
|
||||
$query->where(['status' => intval($this->type === 'index'), 'deleted' => 0]);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加折扣方案
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
BaseUserDiscount::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑折扣方案
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
BaseUserDiscount::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $vo
|
||||
*/
|
||||
protected function _form_filter(array &$vo)
|
||||
{
|
||||
if ($this->request->isPost()) {
|
||||
$rule = [];
|
||||
foreach ($vo as $k => $v) if (stripos($k, '_level_') !== false) {
|
||||
[, $level] = explode('_level_', $k);
|
||||
$rule[] = ['level' => $level, 'discount' => $v];
|
||||
}
|
||||
$vo['items'] = json_encode($rule, JSON_UNESCAPED_UNICODE);
|
||||
} else {
|
||||
$this->levels = BaseUserUpgrade::items();
|
||||
if (empty($this->levels)) $this->error('未配置用户等级!');
|
||||
foreach ($vo['items'] ?? [] as $item) {
|
||||
$vo["_level_{$item['level']}"] = $item['discount'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改折扣方案状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
BaseUserDiscount::mSave();
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除折扣方案配置
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
BaseUserDiscount::mDelete();
|
||||
}
|
||||
}
|
@ -1,99 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\base;
|
||||
|
||||
use app\data\model\BaseUserMessage;
|
||||
use think\admin\Controller;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 系统通知管理
|
||||
* Class Notify
|
||||
* @package app\data\controller\base
|
||||
*/
|
||||
class Message extends Controller
|
||||
{
|
||||
/**
|
||||
* 系统通知管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
BaseUserMessage::mQuery()->layTable(function () {
|
||||
$this->title = '系统通知管理';
|
||||
}, function (QueryHelper $query) {
|
||||
$query->where(['deleted' => 0]);
|
||||
$query->like('name')->equal('status')->dateBetween('create_at');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加系统通知
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->title = '添加系统通知';
|
||||
BaseUserMessage::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑系统通知
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->title = '编辑系统通知';
|
||||
BaseUserMessage::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param boolean $state
|
||||
*/
|
||||
protected function _form_result(bool $state)
|
||||
{
|
||||
if ($state) {
|
||||
$this->success('内容保存成功!', 'javascript:history.back()');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改通知状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
BaseUserMessage::mSave($this->_vali([
|
||||
'status.in:0,1' => '状态值范围异常!',
|
||||
'status.require' => '状态值不能为空!',
|
||||
]));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除系统通知
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
BaseUserMessage::mDelete();
|
||||
}
|
||||
}
|
@ -1,101 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\base;
|
||||
|
||||
use think\admin\Controller;
|
||||
use think\admin\model\SystemBase;
|
||||
|
||||
/**
|
||||
* 页面内容管理
|
||||
* Class Pager
|
||||
* @package app\data\controller\base
|
||||
*/
|
||||
class Pager extends Controller
|
||||
{
|
||||
/**
|
||||
* 字典类型
|
||||
* @var string
|
||||
*/
|
||||
protected $type = '页面内容';
|
||||
|
||||
/**
|
||||
* 页面类型
|
||||
* @var array
|
||||
*/
|
||||
protected $types = [];
|
||||
|
||||
/**
|
||||
* 控制器初始化
|
||||
* @return void
|
||||
*/
|
||||
protected function initialize()
|
||||
{
|
||||
$this->types = SystemBase::mk()->items($this->type);
|
||||
}
|
||||
|
||||
/**
|
||||
* 内容页面管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '内容页面管理';
|
||||
$this->fetch();
|
||||
}
|
||||
|
||||
/**
|
||||
* 内容页面编辑
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->skey = input('get.type', '');
|
||||
$this->base = $this->types[$this->skey] ?? [];
|
||||
if (empty($this->base)) $this->error('未配置基础数据!');
|
||||
$this->title = "编辑{$this->base['name']}";
|
||||
$this->sysdata();
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示并保存数据
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function sysdata()
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$this->data = sysdata($this->skey);
|
||||
$this->fetch('form');
|
||||
} elseif ($this->request->isPost()) {
|
||||
if (is_string(input('data'))) {
|
||||
$data = json_decode(input('data'), true) ?: [];
|
||||
} else {
|
||||
$data = $this->request->post();
|
||||
}
|
||||
if (sysdata($this->skey, $data) !== false) {
|
||||
$this->success('内容保存成功!', 'javascript:history.back()');
|
||||
} else {
|
||||
$this->error('内容保存失败,请稍候再试!');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,148 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\base;
|
||||
|
||||
use app\data\model\BaseUserPayment;
|
||||
use app\data\service\PaymentService;
|
||||
use app\data\service\UserAdminService;
|
||||
use think\admin\Controller;
|
||||
use think\admin\extend\CodeExtend;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 支付通道管理
|
||||
* Class Payment
|
||||
* @package app\data\controller\base
|
||||
*/
|
||||
class Payment extends Controller
|
||||
{
|
||||
/**
|
||||
* 支付通道类型
|
||||
* @var array
|
||||
*/
|
||||
protected $types = PaymentService::TYPES;
|
||||
|
||||
/**
|
||||
* 支付通道管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
BaseUserPayment::mQuery()->layTable(function () {
|
||||
$this->title = '支付通道管理';
|
||||
}, function (QueryHelper $query) {
|
||||
$query->where(['status' => intval($this->type === 'index'), 'deleted' => 0]);
|
||||
$query->like('name,code')->equal('status,type#ptype')->dateBetween('create_at');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取支付名称
|
||||
* @param array $data
|
||||
* @return void
|
||||
*/
|
||||
protected function _page_filter(array &$data)
|
||||
{
|
||||
foreach ($data as &$vo) {
|
||||
$vo['ntype'] = $this->types[$vo['type']]['name'] ?? $vo['type'];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加支付通道
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->title = '添加支付通道';
|
||||
BaseUserPayment::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑支付通道
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->title = '编辑支付通道';
|
||||
BaseUserPayment::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 数据表单处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _form_filter(array &$data)
|
||||
{
|
||||
if (empty($data['code'])) {
|
||||
$data['code'] = CodeExtend::uniqidNumber(20, 'M');
|
||||
}
|
||||
if ($this->request->isGet()) {
|
||||
$this->payments = [];
|
||||
foreach ($this->types as $k => $vo) {
|
||||
$allow = [];
|
||||
foreach ($vo['bind'] as $api) if (isset(UserAdminService::TYPES[$api])) {
|
||||
$allow[$api] = UserAdminService::TYPES[$api]['name'];
|
||||
}
|
||||
if (empty($allow)) continue;
|
||||
$this->payments[$k] = array_merge($vo, ['allow' => join('、', $allow)]);
|
||||
}
|
||||
$data['content'] = json_decode($data['content'] ?? '[]', true) ?: [];
|
||||
} else {
|
||||
if (empty($data['type'])) $this->error('请选择支付通道并配置参数!');
|
||||
if (empty($data['cover'])) $this->error('请上传支付方式图标!');
|
||||
$data['content'] = json_encode($this->request->post() ?: [], JSON_UNESCAPED_UNICODE);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param boolean $state
|
||||
*/
|
||||
protected function _form_result(bool $state)
|
||||
{
|
||||
if ($state) {
|
||||
$this->success('支付通道保存成功!', 'javascript:history.back()');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改通道状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
BaseUserPayment::mSave($this->_vali([
|
||||
'status.in:0,1' => '状态值范围异常!',
|
||||
'status.require' => '状态值不能为空!',
|
||||
]));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除支付通道
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
BaseUserPayment::mDelete();
|
||||
}
|
||||
}
|
@ -1,116 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\base;
|
||||
|
||||
use think\admin\Controller;
|
||||
use think\admin\model\SystemBase;
|
||||
|
||||
/**
|
||||
* 图片内容管理
|
||||
* Class Slider
|
||||
* @package app\data\controller\base
|
||||
*/
|
||||
class Slider extends Controller
|
||||
{
|
||||
/**
|
||||
* 跳转规则定义
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rules = [
|
||||
'#' => ['name' => '不跳转'],
|
||||
'LK' => ['name' => '自定义链接'],
|
||||
'NL' => ['name' => '新闻资讯列表'],
|
||||
'NS' => ['name' => '新闻资讯详情', 'node' => 'data/news.item/select'],
|
||||
];
|
||||
|
||||
/**
|
||||
* 数据类型
|
||||
* @var string
|
||||
*/
|
||||
protected $type = '图片内容';
|
||||
|
||||
/**
|
||||
* 页面类型
|
||||
* @var array
|
||||
*/
|
||||
protected $types = [];
|
||||
|
||||
/**
|
||||
* 控制器初始化
|
||||
* @return void
|
||||
*/
|
||||
protected function initialize()
|
||||
{
|
||||
$this->types = SystemBase::mk()->items($this->type);
|
||||
foreach ($this->types as &$type) {
|
||||
if (preg_match('/^(.*?)#(\d+)$/', $type['name'], $matches)) {
|
||||
$type['name'] = $matches[1];
|
||||
$type['number'] = $matches[2];
|
||||
} else {
|
||||
$type['number'] = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 图片内容管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '图片内容管理';
|
||||
$this->fetch();
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑图片内容
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->skey = input('get.type', '');
|
||||
$this->base = $this->types[$this->skey] ?? [];
|
||||
if (empty($this->base)) $this->error('未配置基础数据!');
|
||||
$this->number = $this->base['number'];
|
||||
$this->sysdata();
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存图片内容
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function sysdata()
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$this->data = sysdata($this->skey);
|
||||
$this->title = "{$this->base['name']}管理";
|
||||
$this->fetch('form');
|
||||
} else {
|
||||
if (sysdata($this->skey, json_decode(input('data'), true))) {
|
||||
$this->success("{$this->base['name']}保存成功!");
|
||||
} else {
|
||||
$this->error("{$this->base['name']}保存失败,请稍候再试!");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,170 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\base;
|
||||
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\service\RebateService;
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 用户等级管理
|
||||
* Class Upgrade
|
||||
* @package app\data\controller\base
|
||||
*/
|
||||
class Upgrade extends Controller
|
||||
{
|
||||
/**
|
||||
* 用户等级管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '用户等级管理';
|
||||
BaseUserUpgrade::mQuery()->like('name')->equal('status')->dateBetween('create_at')->layTable();
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加用户等级
|
||||
* @auth true
|
||||
* @return void
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->max = BaseUserUpgrade::maxNumber() + 1;
|
||||
BaseUserUpgrade::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑用户等级
|
||||
* @auth true
|
||||
* @return void
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->max = BaseUserUpgrade::maxNumber();
|
||||
BaseUserUpgrade::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $vo
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
protected function _form_filter(array &$vo)
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$this->prizes = RebateService::PRIZES;
|
||||
$vo['number'] = $vo['number'] ?? BaseUserUpgrade::maxNumber();
|
||||
} else {
|
||||
$vo['utime'] = time();
|
||||
// 用户升级条件开关
|
||||
$vo['goods_vip_status'] = isset($vo['goods_vip_status']) ? 1 : 0;
|
||||
$vo['teams_users_status'] = isset($vo['teams_users_status']) ? 1 : 0;
|
||||
$vo['teams_direct_status'] = isset($vo['teams_direct_status']) ? 1 : 0;
|
||||
$vo['teams_indirect_status'] = isset($vo['teams_indirect_status']) ? 1 : 0;
|
||||
$vo['order_amount_status'] = isset($vo['order_amount_status']) ? 1 : 0;
|
||||
// 默认等级去除条件
|
||||
if (empty($vo['number'])) {
|
||||
$vo['rebate_rule'] = [];
|
||||
foreach ($vo as $k => &$v) if (is_numeric(stripos($k, '_status'))) $v = 0;
|
||||
}
|
||||
// 根据数量判断状态
|
||||
$vo['teams_users_status'] = intval($vo['teams_users_status'] && $vo['teams_users_number'] > 0);
|
||||
$vo['teams_direct_status'] = intval($vo['teams_direct_status'] && $vo['teams_direct_number'] > 0);
|
||||
$vo['teams_indirect_status'] = intval($vo['teams_indirect_status'] && $vo['teams_indirect_number'] > 0);
|
||||
$vo['order_amount_status'] = intval($vo['order_amount_status'] && $vo['order_amount_number'] > 0);
|
||||
// 检查升级条件配置
|
||||
$count = 0;
|
||||
foreach ($vo as $k => $v) if (is_numeric(stripos($k, '_status'))) $count += $v;
|
||||
if (empty($count) && $vo['number'] > 0) $this->error('升级条件不能为空!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param boolean $state
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function _form_result(bool $state)
|
||||
{
|
||||
if ($state) {
|
||||
$isasc = input('old_number', 0) <= input('number', 0);
|
||||
$order = $isasc ? 'number asc,utime asc' : 'number asc,utime desc';
|
||||
foreach (BaseUserUpgrade::mk()->order($order)->select() as $number => $upgrade) {
|
||||
$upgrade->save(['number' => $number]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 重算用户等级
|
||||
* @auth true
|
||||
*/
|
||||
public function sync()
|
||||
{
|
||||
$this->_queue('重新计算所有用户等级', 'xdata:UserUpgrade');
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改等级状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
BaseUserUpgrade::mSave();
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除用户等级
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
BaseUserUpgrade::mDelete();
|
||||
}
|
||||
|
||||
/**
|
||||
* 状态变更处理
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _save_result()
|
||||
{
|
||||
$this->_form_result(true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除结果处理
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _delete_result()
|
||||
{
|
||||
$this->_form_result(true);
|
||||
}
|
||||
}
|
@ -1,130 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\base\postage;
|
||||
|
||||
use app\data\model\BasePostageCompany;
|
||||
use app\data\service\ExpressService;
|
||||
use Exception;
|
||||
use think\admin\Controller;
|
||||
use think\admin\helper\QueryHelper;
|
||||
use think\exception\HttpResponseException;
|
||||
|
||||
/**
|
||||
* 快递公司管理
|
||||
* Class Company
|
||||
* @package app\data\controller\base\postage
|
||||
*/
|
||||
class Company extends Controller
|
||||
{
|
||||
/**
|
||||
* 快递公司管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
BasePostageCompany::mQuery()->layTable(function () {
|
||||
$this->title = '快递公司管理';
|
||||
}, function (QueryHelper $query) {
|
||||
$query->where(['deleted' => 0, 'status' => intval($this->type === 'index')]);
|
||||
$query->like('name,code_1|code_3#code')->equal('status')->dateBetween('create_at');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加快递公司
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->title = '添加快递公司';
|
||||
BasePostageCompany::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑快递公司
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->title = '编辑快递公司';
|
||||
BasePostageCompany::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 同步字段编号
|
||||
* @param array $data
|
||||
* @return void
|
||||
*/
|
||||
protected function _form_filter(array &$data)
|
||||
{
|
||||
if ($this->request->isPost()) {
|
||||
if (empty($data['code_2'])) {
|
||||
$data['code_2'] = $data['code_3'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改快递公司状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
BasePostageCompany::mSave($this->_vali([
|
||||
'status.in:0,1' => '状态值范围异常!',
|
||||
'status.require' => '状态值不能为空!',
|
||||
]));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除快递公司
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
BasePostageCompany::mDelete();
|
||||
}
|
||||
|
||||
/**
|
||||
* 同步快递公司
|
||||
* @auth true
|
||||
*/
|
||||
public function sync()
|
||||
{
|
||||
try {
|
||||
$result = ExpressService::company();
|
||||
if (empty($result['code'])) $this->error($result['info']);
|
||||
foreach ($result['data'] as $vo) BasePostageCompany::mUpdate([
|
||||
'name' => $vo['title'],
|
||||
'code_1' => $vo['code_1'],
|
||||
'code_2' => $vo['code_2'],
|
||||
'code_3' => $vo['code_3'],
|
||||
'deleted' => 0,
|
||||
], 'code_1');
|
||||
$this->success('同步快递公司成功!');
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
$this->error('同步快递公司数据失败!');
|
||||
}
|
||||
}
|
||||
}
|
@ -1,140 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\base\postage;
|
||||
|
||||
use app\data\model\BasePostageTemplate;
|
||||
use app\data\service\ExpressService;
|
||||
use think\admin\Controller;
|
||||
use think\admin\extend\CodeExtend;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 邮费模板管理
|
||||
* Class Template
|
||||
* @package app\data\controller\base\postage
|
||||
*/
|
||||
class Template extends Controller
|
||||
{
|
||||
/**
|
||||
* 快递邮费模板
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = $this->get['type'] ?? 'index';;
|
||||
BasePostageTemplate::mQuery()->layTable(function () {
|
||||
$this->title = '快递邮费模板';
|
||||
}, function (QueryHelper $query) {
|
||||
$query->where(['deleted' => 0, 'status' => intval($this->type === 'index')]);
|
||||
$query->like('code,name')->equal('status')->dateBetween('create_at');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 配送区域管理
|
||||
* @auth true
|
||||
* @return void
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function region()
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$this->title = '配送区域管理';
|
||||
$this->citys = ExpressService::region();
|
||||
$this->fetch('form_region');
|
||||
} else {
|
||||
$data = $this->_vali(['nos.default' => '']);
|
||||
sysdata('data.NotRegion', str2arr($data['nos']));
|
||||
$this->success('修改配送区域成功!', 'javascript:history.back()');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加配送邮费模板
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->title = '添加配送邮费模板';
|
||||
BasePostageTemplate::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑配送邮费模板
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->title = '编辑配送邮费模板';
|
||||
BasePostageTemplate::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _form_filter(array &$data)
|
||||
{
|
||||
if (empty($data['code'])) {
|
||||
$data['code'] = CodeExtend::uniqidDate(12, 'T');
|
||||
}
|
||||
if ($this->request->isGet()) {
|
||||
$this->citys = ExpressService::region(2, 1);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param boolean $result
|
||||
*/
|
||||
protected function _form_result(bool $result)
|
||||
{
|
||||
if ($result && $this->request->isPost()) {
|
||||
$this->success('邮费模板保存成功!', 'javascript:history.back()');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 启用或禁用邮费模板
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
BasePostageTemplate::mSave($this->_vali([
|
||||
'status.in:0,1' => '状态值范围异常!',
|
||||
'status.require' => '状态值不能为空!',
|
||||
]));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除邮费模板
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
BasePostageTemplate::mDelete();
|
||||
}
|
||||
}
|
@ -1,147 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\news;
|
||||
|
||||
use app\data\model\DataNewsItem;
|
||||
use app\data\model\DataNewsMark;
|
||||
use app\data\service\NewsService;
|
||||
use think\admin\Controller;
|
||||
use think\admin\extend\CodeExtend;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 文章内容管理
|
||||
* Class Item
|
||||
* @package app\data\controller\news
|
||||
*/
|
||||
class Item extends Controller
|
||||
{
|
||||
/**
|
||||
* 文章内容管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
DataNewsItem::mQuery($this->get)->layTable(function () {
|
||||
$this->title = '文章内容管理';
|
||||
$this->marks = DataNewsMark::items();
|
||||
}, function (QueryHelper $query) {
|
||||
$query->like('code,name')->like('mark', ',')->dateBetween('create_at');
|
||||
$query->where(['status' => intval($this->type === 'index'), 'deleted' => 0]);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表数据处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _page_filter(array &$data)
|
||||
{
|
||||
NewsService::buildData($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加文章内容
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->title = '添加文章内容';
|
||||
DataNewsItem::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑文章内容
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->title = '编辑文章内容';
|
||||
DataNewsItem::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _form_filter(array &$data)
|
||||
{
|
||||
if (empty($data['code'])) {
|
||||
$data['code'] = CodeExtend::uniqidNumber(20, 'A');
|
||||
}
|
||||
if ($this->request->isGet()) {
|
||||
$model = DataNewsMark::mk()->where(['status' => 1, 'deleted' => 0]);
|
||||
$this->marks = $model->order('sort desc,id desc')->select()->toArray();
|
||||
$data['mark'] = str2arr($data['mark'] ?? '');
|
||||
} else {
|
||||
$data['mark'] = arr2str($data['mark'] ?? []);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param boolean $state
|
||||
*/
|
||||
protected function _form_result(bool $state)
|
||||
{
|
||||
if ($state) {
|
||||
$this->success('文章保存成功!', 'javascript:history.back()');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改文章状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
DataNewsItem::mSave($this->_vali([
|
||||
'status.in:0,1' => '状态值范围异常!',
|
||||
'status.require' => '状态值不能为空!',
|
||||
]));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除文章内容
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
DataNewsItem::mDelete();
|
||||
}
|
||||
|
||||
/**
|
||||
* 文章内容选择
|
||||
* @login true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function select()
|
||||
{
|
||||
$this->get['status'] = 1;
|
||||
$this->index();
|
||||
}
|
||||
}
|
@ -1,95 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\news;
|
||||
|
||||
use app\data\model\DataNewsMark;
|
||||
use think\admin\Controller;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 文章标签管理
|
||||
* Class Mark
|
||||
* @package app\data\controller\news
|
||||
*/
|
||||
class Mark extends Controller
|
||||
{
|
||||
/**
|
||||
* 文章标签管理
|
||||
* @auth true
|
||||
* @return void
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
DataNewsMark::mQuery()->layTable(function () {
|
||||
$this->title = '文章标签管理';
|
||||
}, function (QueryHelper $query) {
|
||||
$query->where(['deleted' => 0]);
|
||||
$query->like('name')->equal('status')->dateBetween('create_at');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加文章标签
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
DataNewsMark::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑文章标签
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
DataNewsMark::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param bool $state
|
||||
* @return void
|
||||
*/
|
||||
protected function _form_result(bool $state)
|
||||
{
|
||||
if ($state) {
|
||||
$this->success('修改标签成功', "javascript:$('#TagsData').trigger('reload')");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改文章标签状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
DataNewsMark::mSave();
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除文章标签
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
DataNewsMark::mDelete();
|
||||
}
|
||||
}
|
@ -1,119 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\shop;
|
||||
|
||||
use app\data\model\ShopGoodsCate;
|
||||
use think\admin\Controller;
|
||||
use think\admin\extend\DataExtend;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 商品分类管理
|
||||
* Class Cate
|
||||
* @package app\data\controller\shop
|
||||
*/
|
||||
class Cate extends Controller
|
||||
{
|
||||
/**
|
||||
* 最大级别
|
||||
* @var integer
|
||||
*/
|
||||
protected $maxLevel = 5;
|
||||
|
||||
/**
|
||||
* 商品分类管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
ShopGoodsCate::mQuery()->layTable(function () {
|
||||
$this->title = "商品分类管理";
|
||||
}, function (QueryHelper $query) {
|
||||
$query->where(['deleted' => 0]);
|
||||
$query->like('name')->equal('status')->dateBetween('create_at');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表数据处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _index_page_filter(array &$data)
|
||||
{
|
||||
$data = DataExtend::arr2table($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加商品分类
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
ShopGoodsCate::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑商品分类
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
ShopGoodsCate::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _form_filter(array &$data)
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$data['pid'] = intval($data['pid'] ?? input('pid', '0'));
|
||||
$this->cates = ShopGoodsCate::getParentData($this->maxLevel, $data, [
|
||||
'id' => '0', 'pid' => '-1', 'name' => '顶部分类',
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改商品分类状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
ShopGoodsCate::mSave($this->_vali([
|
||||
'status.in:0,1' => '状态值范围异常!',
|
||||
'status.require' => '状态值不能为空!',
|
||||
]));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除商品分类
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
ShopGoodsCate::mDelete();
|
||||
}
|
||||
}
|
@ -1,268 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\shop;
|
||||
|
||||
use app\data\model\BaseUserDiscount;
|
||||
use app\data\model\BaseUserPayment;
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\model\ShopGoods;
|
||||
use app\data\model\ShopGoodsCate;
|
||||
use app\data\model\ShopGoodsItem;
|
||||
use app\data\model\ShopGoodsMark;
|
||||
use app\data\model\ShopGoodsStock;
|
||||
use app\data\service\ExpressService;
|
||||
use app\data\service\GoodsService;
|
||||
use think\admin\Controller;
|
||||
use think\admin\extend\CodeExtend;
|
||||
|
||||
/**
|
||||
* 商品数据管理
|
||||
* Class Goods
|
||||
* @package app\data\controller\shop
|
||||
*/
|
||||
class Goods extends Controller
|
||||
{
|
||||
/**
|
||||
* 商品数据管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '商品数据管理';
|
||||
|
||||
$query = ShopGoods::mQuery();
|
||||
// 加载对应数据
|
||||
$this->type = $this->request->get('type', 'index');
|
||||
if ($this->type === 'index') $query->where(['deleted' => 0]);
|
||||
elseif ($this->type === 'recycle') $query->where(['deleted' => 1]);
|
||||
else $this->error("无法加载 {$this->type} 数据列表!");
|
||||
|
||||
// 列表排序并显示
|
||||
$query->like('code|name#name')->like('marks,cateids', ',');
|
||||
$query->equal('status,vip_entry,truck_type,rebate_type')->order('sort desc,id desc')->page();
|
||||
}
|
||||
|
||||
/**
|
||||
* 商品选择器
|
||||
* @login true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function select()
|
||||
{
|
||||
$query = ShopGoods::mQuery();
|
||||
$query->equal('status')->like('code,name,marks')->in('cateids');
|
||||
$query->where(['deleted' => 0])->order('sort desc,id desc')->page();
|
||||
}
|
||||
|
||||
/**
|
||||
* 数据列表处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _page_filter(array &$data)
|
||||
{
|
||||
$this->marks = ShopGoodsMark::items();
|
||||
$this->cates = ShopGoodsCate::treeTable();
|
||||
GoodsService::bindData($data, false);
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加商品数据
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->mode = 'add';
|
||||
$this->title = '添加商品数据';
|
||||
ShopGoods::mForm('form', 'code');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑商品数据
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->mode = 'edit';
|
||||
$this->title = '编辑商品数据';
|
||||
ShopGoods::mForm('form', 'code');
|
||||
}
|
||||
|
||||
/**
|
||||
* 复制编辑商品
|
||||
* @auth true
|
||||
*/
|
||||
public function copy()
|
||||
{
|
||||
$this->mode = 'copy';
|
||||
$this->title = '复制编辑商品';
|
||||
ShopGoods::mForm('form', 'code');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _copy_form_filter(array &$data)
|
||||
{
|
||||
if ($this->request->isPost()) {
|
||||
$data['code'] = CodeExtend::uniqidNumber(20, 'G');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _form_filter(array &$data)
|
||||
{
|
||||
if (empty($data['code'])) {
|
||||
$data['code'] = CodeExtend::uniqidNumber(20, 'G');
|
||||
}
|
||||
if ($this->request->isGet()) {
|
||||
$data['marks'] = str2arr($data['marks'] ?? '');
|
||||
$data['payment'] = str2arr($data['payment'] ?? '');
|
||||
$data['cateids'] = str2arr($data['cateids'] ?? '');
|
||||
// 其他表单数据
|
||||
$this->marks = ShopGoodsMark::items();
|
||||
$this->cates = ShopGoodsCate::treeTable(true);
|
||||
$this->trucks = ExpressService::templates();
|
||||
$this->upgrades = BaseUserUpgrade::items();
|
||||
$this->payments = BaseUserPayment::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->column('type,code,name', 'code');
|
||||
$this->discounts = BaseUserDiscount::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->column('id,name,items', 'id');
|
||||
// 商品规格处理
|
||||
$fields = 'goods_sku `sku`,goods_code,goods_spec `key`,price_selling `selling`,price_market `market`,number_virtual `virtual`,number_express `express`,reward_balance `balance`,reward_integral `integral`,status';
|
||||
$data['data_items'] = json_encode(ShopGoodsItem::mk()->where(['goods_code' => $data['code']])->column($fields, 'goods_spec'), JSON_UNESCAPED_UNICODE);
|
||||
} elseif ($this->request->isPost()) {
|
||||
if (empty($data['cover'])) $this->error('商品图片不能为空!');
|
||||
if (empty($data['slider'])) $this->error('轮播图片不能为空!');
|
||||
if (empty($data['payment'])) $this->error('支付方式不能为空!');
|
||||
// 商品规格保存
|
||||
[$data['price_market'], $data['price_selling']] = [0, 0];
|
||||
[$count, $items] = [0, array_column(json_decode($data['data_items'], true), 0)];
|
||||
foreach ($items as $item) if ($item['status'] > 0) {
|
||||
if ($data['price_market'] === 0 || $data['price_market'] > $item['market']) $data['price_market'] = $item['market'];
|
||||
if ($data['price_selling'] === 0 || $data['price_selling'] > $item['selling']) $data['price_selling'] = $item['selling'];
|
||||
$count++;
|
||||
}
|
||||
if (empty($count)) $this->error('无效的的商品价格信息!');
|
||||
$data['marks'] = arr2str($data['marks'] ?? []);
|
||||
$data['payment'] = arr2str($data['payment'] ?? []);
|
||||
ShopGoodsItem::mk()->where(['goods_code' => $data['code']])->update(['status' => 0]);
|
||||
foreach ($items as $item) data_save(ShopGoodsItem::class, [
|
||||
'goods_sku' => $item['sku'],
|
||||
'goods_spec' => $item['key'],
|
||||
'goods_code' => $data['code'],
|
||||
'price_market' => $item['market'],
|
||||
'price_selling' => $item['selling'],
|
||||
'number_virtual' => $item['virtual'],
|
||||
'number_express' => $item['express'],
|
||||
'reward_balance' => $item['balance'],
|
||||
'reward_integral' => $item['integral'],
|
||||
'status' => $item['status'] ? 1 : 0,
|
||||
], 'goods_spec', [
|
||||
'goods_code' => $data['code'],
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param boolean $result
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _form_result(bool $result)
|
||||
{
|
||||
if ($result && $this->request->isPost()) {
|
||||
GoodsService::stock(input('code'));
|
||||
$this->success('商品编辑成功!', 'javascript:history.back()');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 商品库存入库
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function stock()
|
||||
{
|
||||
$map = $this->_vali(['code.require' => '商品编号不能为空哦!']);
|
||||
if ($this->request->isGet()) {
|
||||
$list = ShopGoods::mk()->where($map)->select()->toArray();
|
||||
if (empty($list)) $this->error('无效的商品数据,请稍候再试!');
|
||||
[$this->vo] = GoodsService::bindData($list);
|
||||
$this->fetch();
|
||||
} else {
|
||||
[$data, $post, $batch] = [[], $this->request->post(), CodeExtend::uniqidDate(12, 'B')];
|
||||
if (isset($post['goods_code']) && is_array($post['goods_code'])) {
|
||||
foreach (array_keys($post['goods_code']) as $key) {
|
||||
if ($post['goods_stock'][$key] > 0) $data[] = [
|
||||
'batch_no' => $batch,
|
||||
'goods_code' => $post['goods_code'][$key],
|
||||
'goods_spec' => $post['goods_spec'][$key],
|
||||
'goods_stock' => $post['goods_stock'][$key],
|
||||
];
|
||||
}
|
||||
if (!empty($data)) {
|
||||
ShopGoodsStock::mk()->insertAll($data);
|
||||
GoodsService::stock($map['code']);
|
||||
$this->success('商品数据入库成功!');
|
||||
}
|
||||
}
|
||||
$this->error('没有需要商品入库的数据!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 商品上下架
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
ShopGoods::mSave($this->_vali([
|
||||
'status.in:0,1' => '状态值范围异常!',
|
||||
'status.require' => '状态值不能为空!',
|
||||
]), 'code');
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除商品数据
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
ShopGoods::mSave($this->_vali([
|
||||
'deleted.in:0,1' => '状态值范围异常!',
|
||||
'deleted.require' => '状态值不能为空!',
|
||||
]), 'code');
|
||||
}
|
||||
}
|
@ -1,81 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\shop;
|
||||
|
||||
use app\data\model\ShopGoodsMark;
|
||||
use think\admin\Controller;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 商品标签管理
|
||||
* Class Mark
|
||||
* @package app\data\controller\shop
|
||||
*/
|
||||
class Mark extends Controller
|
||||
{
|
||||
/**
|
||||
* 商品标签管理
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
ShopGoodsMark::mQuery()->layTable(function () {
|
||||
$this->title = '商品标签管理';
|
||||
}, function (QueryHelper $query) {
|
||||
$query->like('name')->equal('status')->dateBetween('create_at');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加商品标签
|
||||
* @auth true
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
ShopGoodsMark::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑商品标签
|
||||
* @auth true
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
ShopGoodsMark::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改商品标签状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
ShopGoodsMark::mSave();
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除商品标签
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
ShopGoodsMark::mDelete();
|
||||
}
|
||||
}
|
@ -1,207 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\shop;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\model\ShopOrderSend;
|
||||
use app\data\service\OrderService;
|
||||
use app\data\service\PaymentService;
|
||||
use app\data\service\UserAdminService;
|
||||
use Exception;
|
||||
use think\admin\Controller;
|
||||
use think\admin\extend\CodeExtend;
|
||||
use think\exception\HttpResponseException;
|
||||
|
||||
/**
|
||||
* 订单数据管理
|
||||
* Class Order
|
||||
* @package app\data\controller\shop
|
||||
*/
|
||||
class Order extends Controller
|
||||
{
|
||||
/**
|
||||
* 支付方式
|
||||
* @var array
|
||||
*/
|
||||
protected $payments = [];
|
||||
|
||||
/**
|
||||
* 控制器初始化
|
||||
*/
|
||||
protected function initialize()
|
||||
{
|
||||
parent::initialize();
|
||||
$this->payments = PaymentService::getTypeAll();
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单数据管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '订单数据管理';
|
||||
// 状态数据统计
|
||||
$this->total = ['t0' => 0, 't1' => 0, 't2' => 0, 't3' => 0, 't4' => 0, 't5' => 0, 't6' => 0, 'ta' => 0];
|
||||
foreach (ShopOrder::mk()->field('status,count(1) total')->group('status')->cursor() as $vo) {
|
||||
[$this->total["t{$vo['status']}"] = $vo['total'], $this->total["ta"] += $vo['total']];
|
||||
}
|
||||
|
||||
// 订单列表查询
|
||||
$query = ShopOrder::mQuery();
|
||||
$query->like('order_no,truck_name,truck_phone,truck_province|truck_area|truck_address#address,truck_send_no,truck_send_name');
|
||||
$query->equal('status,payment_type,payment_status')->dateBetween('create_at,payment_datetime,cancel_datetime,truck_datetime,truck_send_datetime');
|
||||
|
||||
// 发货信息搜索
|
||||
$db = ShopOrderSend::mQuery()->like('address_name#truck_address_name,address_phone#truck_address_phone,address_province|address_city|address_area|address_content#truck_address_content')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("order_no in {$db->field('order_no')->buildSql()}");
|
||||
|
||||
// 用户搜索查询
|
||||
$db = DataUser::mQuery()->like('phone|nickname#user_keys')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("uuid in {$db->field('id')->buildSql()}");
|
||||
|
||||
// 代理搜索查询
|
||||
$db = DataUser::mQuery()->like('phone|nickname#from_keys')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("puid1 in {$db->field('id')->buildSql()}");
|
||||
|
||||
// 列表选项卡
|
||||
if (is_numeric($this->type = trim(input('type', 'ta'), 't'))) {
|
||||
$query->where(['status' => $this->type]);
|
||||
}
|
||||
|
||||
// 分页排序处理
|
||||
$query->where(['deleted_status' => 0])->order('id desc')->page();
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单列表处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _index_page_filter(array &$data)
|
||||
{
|
||||
UserAdminService::buildByUid($data);
|
||||
UserAdminService::buildByUid($data, 'puid1', 'from');
|
||||
OrderService::buildData($data);
|
||||
foreach ($data as &$vo) {
|
||||
if (!is_null($vo['payment_type']) and '' != $vo['payment_type']) {
|
||||
$vo['payment_name'] = PaymentService::name($vo['payment_type']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 单据凭证支付审核
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function audit()
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
ShopOrder::mForm('', 'order_no');
|
||||
} else {
|
||||
$data = $this->_vali([
|
||||
'order_no.require' => '订单单号不能为空!',
|
||||
'status.in:0,1' => '审核状态数值异常!',
|
||||
'status.require' => '审核状态不能为空!',
|
||||
'remark.default' => '',
|
||||
]);
|
||||
if (empty($data['status'])) {
|
||||
$data['status'] = 0;
|
||||
$data['cancel_status'] = 1;
|
||||
$data['cancel_remark'] = $data['remark'] ?: '后台审核驳回并取消订单';
|
||||
$data['cancel_datetime'] = date('Y-m-d H:i:s');
|
||||
} else {
|
||||
$data['status'] = 4;
|
||||
$data['payment_code'] = CodeExtend::uniqidDate(20, 'T');
|
||||
$data['payment_status'] = 1;
|
||||
$data['payment_remark'] = $data['remark'] ?: '后台审核支付凭证通过';
|
||||
$data['payment_datetime'] = date('Y-m-d H:i:s');
|
||||
}
|
||||
$order = ShopOrder::mk()->where(['order_no' => $data['order_no']])->find();
|
||||
if (empty($order) || $order['status'] !== 3) $this->error('不允许操作审核!');
|
||||
// 无需发货时的处理
|
||||
if ($data['status'] === 4 && empty($order['truck_type'])) $data['status'] = 6;
|
||||
// 更新订单支付状态
|
||||
$map = ['status' => 3, 'order_no' => $data['order_no']];
|
||||
if (ShopOrder::mk()->strict(false)->where($map)->update($data) !== false) {
|
||||
if (in_array($data['status'], [4, 5, 6])) {
|
||||
$this->app->event->trigger('ShopOrderPayment', $data['order_no']);
|
||||
$this->success('订单审核通过成功!');
|
||||
} else {
|
||||
$this->app->event->trigger('ShopOrderCancel');
|
||||
OrderService::stock($data['order_no']);
|
||||
$this->success('审核驳回并取消成功!');
|
||||
}
|
||||
} else {
|
||||
$this->error('订单审核失败!');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 清理订单数据
|
||||
* @auth true
|
||||
*/
|
||||
public function clean()
|
||||
{
|
||||
$this->_queue('定时清理无效订单数据', "xdata:OrderClean", 0, [], 0, 60);
|
||||
}
|
||||
|
||||
/**
|
||||
* 取消未支付的订单
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function cancel()
|
||||
{
|
||||
$map = $this->_vali(['order_no.require' => '订单号不能为空!',]);
|
||||
$order = ShopOrder::mk()->where($map)->find();
|
||||
if (empty($order)) $this->error('订单查询异常!');
|
||||
if (!in_array($order['status'], [1, 2, 3])) $this->error('订单不能取消!');
|
||||
try {
|
||||
$result = $order->save([
|
||||
'status' => 0,
|
||||
'cancel_status' => 1,
|
||||
'cancel_remark' => '后台取消未支付的订单',
|
||||
'cancel_datetime' => date('Y-m-d H:i:s'),
|
||||
]);
|
||||
if ($result !== false) {
|
||||
OrderService::stock($order['order_no']);
|
||||
$this->app->event->trigger('ShopOrderCancel', $order['order_no']);
|
||||
$this->success('取消未支付的订单成功!');
|
||||
} else {
|
||||
$this->error('取消支付的订单失败!');
|
||||
}
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
$this->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
@ -1,176 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\shop;
|
||||
|
||||
use app\data\model\BasePostageCompany;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\model\ShopOrderSend;
|
||||
use app\data\service\ExpressService;
|
||||
use app\data\service\OrderService;
|
||||
use Exception;
|
||||
use think\admin\Controller;
|
||||
use think\exception\HttpResponseException;
|
||||
|
||||
/**
|
||||
* 订单发货管理
|
||||
* Class Send
|
||||
* @package app\data\controller\shop
|
||||
*/
|
||||
class Send extends Controller
|
||||
{
|
||||
/**
|
||||
* 订单发货管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '订单发货管理';
|
||||
// 发货地址数据
|
||||
$this->address = sysdata('ordersend');
|
||||
// 状态数据统计
|
||||
$this->total = ['t0' => 0, 't1' => 0, 't2' => 0, 'ta' => 0];
|
||||
$db = ShopOrder::mk()->whereIn('status', [4, 5, 6])->where(['truck_type' => 1]);
|
||||
$query = ShopOrderSend::mk()->whereRaw("order_no in {$db->field('order_no')->buildSql()}");
|
||||
foreach ($query->fieldRaw('status,count(1) total')->group('status')->cursor() as $vo) {
|
||||
$this->total["t{$vo['status']}"] = $vo['total'];
|
||||
$this->total["ta"] += $vo['total'];
|
||||
}
|
||||
|
||||
// 订单列表查询
|
||||
$query = ShopOrderSend::mQuery();
|
||||
$query->dateBetween('address_datetime,send_datetime')->equal('status')->like('send_number#truck_number,order_no');
|
||||
$query->like('address_phone,address_name,address_province|address_city|address_area|address_content#address_content');
|
||||
|
||||
// 用户搜索查询
|
||||
$db = DataUser::mQuery()->like('phone|nickname#user_keys')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("uuid in {$db->field('id')->buildSql()}");
|
||||
|
||||
// 订单搜索查询
|
||||
$db = ShopOrder::mk()->whereIn('status', [4, 5, 6])->where(['truck_type' => 1]);
|
||||
$query->whereRaw("order_no in {$db->field('order_no')->buildSql()}");
|
||||
|
||||
// 列表选项卡状态
|
||||
if (is_numeric($this->type = trim(input('type', 'ta'), 't'))) {
|
||||
$query->where(['status' => $this->type]);
|
||||
}
|
||||
|
||||
// 列表排序显示
|
||||
$query->order('id desc')->page();
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单列表处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _index_page_filter(array &$data)
|
||||
{
|
||||
OrderService::buildData($data, false);
|
||||
$orders = array_unique(array_column($data, 'order_no'));
|
||||
$orderList = ShopOrder::mk()->whereIn('order_no', $orders)->column('*', 'order_no');
|
||||
foreach ($data as &$vo) $vo['order'] = $orderList[$vo['order_no']] ?? [];
|
||||
}
|
||||
|
||||
/**
|
||||
* 快递发货地址
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function config()
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$this->vo = sysdata('ordersend');
|
||||
$this->fetch();
|
||||
} else {
|
||||
sysdata('ordersend', $this->request->post());
|
||||
$this->success('发货地址保存成功');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改快递管理
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function truck()
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$query = BasePostageCompany::mk()->where(['deleted' => 0, 'status' => 1]);
|
||||
$this->items = $query->order('sort desc,id desc')->select()->toArray();
|
||||
}
|
||||
ShopOrderSend::mForm('truck_form', 'order_no');
|
||||
}
|
||||
|
||||
/**
|
||||
* 快递表单处理
|
||||
* @param array $vo
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _truck_form_filter(array &$vo)
|
||||
{
|
||||
if ($this->request->isPost()) {
|
||||
$map = ['order_no' => $vo['order_no']];
|
||||
$order = ShopOrder::mk()->where($map)->find();
|
||||
if (empty($order)) $this->error('订单查询异常,请稍候再试!');
|
||||
|
||||
// 配送快递公司填写
|
||||
$map = ['code_1|code_2|code_3' => $vo['company_code']];
|
||||
$company = BasePostageCompany::mk()->where($map)->find();
|
||||
if (empty($company)) $this->error('配送快递公司异常,请重新选择快递公司!');
|
||||
|
||||
$vo['status'] = 2;
|
||||
$vo['company_name'] = $company['name'];
|
||||
$vo['send_datetime'] = $vo['send_datetime'] ?? date('Y-m-d H:i:s');
|
||||
if ($order['status'] === 4) {
|
||||
// 更新订单发货状态
|
||||
$map = ['order_no' => $vo['order_no']];
|
||||
ShopOrder::mk()->where($map)->update(['status' => 5]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 快递追踪查询
|
||||
* @auth true
|
||||
*/
|
||||
public function query()
|
||||
{
|
||||
try {
|
||||
$data = $this->_vali(['code.require' => '快递不能为空!', 'number.require' => '单号不能为空!']);
|
||||
$this->result = ExpressService::query($data['code'], $data['number']);
|
||||
if (empty($this->result['code'])) $this->error($this->result['info']);
|
||||
$this->fetch('truck_query');
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (Exception $exception) {
|
||||
$this->error($exception->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
@ -1,71 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\total;
|
||||
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserBalance;
|
||||
use app\data\model\DataUserRebate;
|
||||
use app\data\model\ShopGoods;
|
||||
use app\data\model\ShopOrder;
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 商城数据报表
|
||||
* Class Portal
|
||||
* @package app\data\controller\total
|
||||
*/
|
||||
class Portal extends Controller
|
||||
{
|
||||
/**
|
||||
* 商城数据报表
|
||||
* @auth true
|
||||
* @menu true
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->usersTotal = DataUser::mk()->cache(true, 60)->count();
|
||||
$this->goodsTotal = ShopGoods::mk()->cache(true, 60)->where(['deleted' => 0])->count();
|
||||
$this->orderTotal = ShopOrder::mk()->cache(true, 60)->whereRaw('status >= 4')->count();
|
||||
$this->amountTotal = ShopOrder::mk()->cache(true, 60)->whereRaw('status >= 4')->sum('amount_total');
|
||||
// 近十天的用户及交易趋势
|
||||
$this->days = $this->app->cache->get('portals', []);
|
||||
if (empty($this->days)) {
|
||||
for ($i = 15; $i >= 0; $i--) {
|
||||
$date = date('Y-m-d', strtotime("-{$i}days"));
|
||||
$this->days[] = [
|
||||
'当天日期' => date('m-d', strtotime("-{$i}days")),
|
||||
'增加用户' => DataUser::mk()->whereLike('create_at', "{$date}%")->count(),
|
||||
'订单数量' => ShopOrder::mk()->whereLike('create_at', "{$date}%")->whereRaw('status>=4')->count(),
|
||||
'订单金额' => ShopOrder::mk()->whereLike('create_at', "{$date}%")->whereRaw('status>=4')->sum('amount_total'),
|
||||
'返利金额' => DataUserRebate::mk()->whereLike('create_at', "{$date}%")->sum('amount'),
|
||||
'剩余余额' => DataUserBalance::mk()->whereRaw("create_at<='{$date} 23:59:59' and deleted=0")->sum('amount'),
|
||||
'充值余额' => DataUserBalance::mk()->whereLike('create_at', "{$date}%")->whereRaw('amount>0 and deleted=0')->sum('amount'),
|
||||
'消费余额' => DataUserBalance::mk()->whereLike('create_at', "{$date}%")->whereRaw('amount<0 and deleted=0')->sum('amount'),
|
||||
];
|
||||
}
|
||||
$this->app->cache->set('portals', $this->days, 60);
|
||||
}
|
||||
// 会员级别分布统计
|
||||
$levels = BaseUserUpgrade::mk()->where(['status' => 1])->order('number asc')->column('number code,name,0 count', 'number');
|
||||
foreach (DataUser::mk()->field('count(1) count,vip_code level')->group('vip_code')->cursor() as $vo) {
|
||||
$levels[$vo['level']]['count'] = isset($levels[$vo['level']]) ? $vo['count'] : 0;
|
||||
}
|
||||
$this->levels = array_values($levels);
|
||||
$this->fetch();
|
||||
}
|
||||
}
|
@ -1,199 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\user;
|
||||
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\service\UserAdminService;
|
||||
use app\data\service\UserUpgradeService;
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 普通用户管理
|
||||
* Class Admin
|
||||
* @package app\data\controller\user
|
||||
*/
|
||||
class Admin extends Controller
|
||||
{
|
||||
/**
|
||||
* 普通用户管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
// 用户等级分组
|
||||
[$ts, $ls] = [[], BaseUserUpgrade::items()];
|
||||
$ts['ta'] = ['vip' => '', 'name' => '全部用户', 'count' => 0];
|
||||
foreach ($ls as $k => $v) $ts["t{$k}"] = ['vip' => $k, 'name' => $v['name'], 'count' => 0,];
|
||||
$ts['to'] = ['vip' => '', 'name' => '其他用户', 'count' => 0];
|
||||
// 等级分组统计
|
||||
foreach (DataUser::mk()->field('vip_code vip,count(1) count')->group('vip_code')->cursor() as $v) {
|
||||
[$name, $count] = ["t{$v['vip']}", $v['count'], $ts['ta']['count'] += $v['count']];
|
||||
isset($ts[$name]) ? $ts[$name]['count'] += $count : $ts['to']['count'] += $count;
|
||||
}
|
||||
if (empty($ts['to']['count'])) unset($ts['to']);
|
||||
$this->total = $ts;
|
||||
|
||||
// 设置页面标题
|
||||
$this->title = '普通用户管理';
|
||||
|
||||
// 创建查询对象
|
||||
$query = DataUser::mQuery()->order('id desc');
|
||||
|
||||
// 数据筛选选项
|
||||
$this->type = ltrim(input('type', 'ta'), 't');
|
||||
if (is_numeric($this->type)) $query->where(['vip_code' => $this->type]);
|
||||
elseif ($this->type === 'o') $query->whereNotIn('vip_code', array_keys($ls));
|
||||
|
||||
// 用户搜索查询
|
||||
$db = DataUser::mQuery()->equal('vip_code#from_vipcode')->like('phone|username|nickname#from_keys')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("pid1 in {$db->field('id')->buildSql()}");
|
||||
|
||||
// 数据查询分页
|
||||
$query->like('phone|username|nickname#username')->equal('status,vip_code')->dateBetween('create_at')->page();
|
||||
}
|
||||
|
||||
/**
|
||||
* 数据列表处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _page_filter(array &$data)
|
||||
{
|
||||
$this->upgrades = BaseUserUpgrade::items();
|
||||
UserAdminService::buildByUid($data, 'pid1', 'from');
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户团队关系
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function teams()
|
||||
{
|
||||
$this->title = '用户团队关系';
|
||||
$map = ['pid1' => input('from', 0)];
|
||||
DataUser::mQuery()->where($map)->page(false);
|
||||
}
|
||||
|
||||
/**
|
||||
* 数据列表处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _teams_page_filter(array &$data)
|
||||
{
|
||||
$uids = array_unique(array_column($data, 'id'));
|
||||
$subCount = DataUser::mk()->whereIn('pid1', $uids)->group('pid1')->column('count(1) count', 'pid1');
|
||||
foreach ($data as &$vo) $vo['subCount'] = $subCount[$vo['id']] ?? 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 永久绑定代理
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function forever()
|
||||
{
|
||||
$map = $this->_vali(['id.require' => '用户ID不能为空!']);
|
||||
$user = DataUser::mk()->where($map)->find();
|
||||
if (empty($user) || empty($user['pid0'])) $this->error('用户不符合操作要求!');
|
||||
[$status, $message] = UserUpgradeService::bindAgent($user['id'], $user['pid0']);
|
||||
$status && sysoplog('前端用户管理', "修改用户[{$map['id']}]的代理为永久状态");
|
||||
empty($status) ? $this->error($message) : $this->success($message);
|
||||
}
|
||||
|
||||
/**
|
||||
* 设为总部用户
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function unbind()
|
||||
{
|
||||
$map = $this->_vali(['id.require' => '用户ID不能为空!']);
|
||||
$user = DataUser::mk()->where($map)->findOrEmpty();
|
||||
if ($user->isEmpty()) $this->error('用户不符合操作要求!');
|
||||
// 修改指定用户代理数据
|
||||
$user->save(['pid0' => 0, 'pid1' => 0, 'pid2' => 0, 'pids' => 1, 'path' => '-', 'layer' => 1]);
|
||||
// 刷新用户等级及上级等级
|
||||
UserUpgradeService::upgrade($user['id'], true);
|
||||
sysoplog('前端用户管理', "设置用户[{$map['id']}]为总部用户");
|
||||
$this->success('设为总部用户成功!');
|
||||
}
|
||||
|
||||
/**
|
||||
* 绑定上级代理
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function parent()
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$this->upgrades = BaseUserUpgrade::items();
|
||||
$data = $this->_vali(['uuid.require' => '待操作UID不能为空!']);
|
||||
|
||||
// 排除下级用户
|
||||
$path = DataUser::mk()->where(['id' => $data['uuid']])->value('path', '-');
|
||||
$subids = DataUser::mk()->whereLike('path', "{$path}{$data['uuid']}-%")->column('id');
|
||||
$query = DataUser::mQuery()->order('id desc')->whereNotIn('id', array_merge($subids, array_values($data)));
|
||||
|
||||
// 用户搜索查询
|
||||
$db = DataUser::mQuery()->equal('vip_code#from_vipcode')->like('phone#from_phone,username|nickname#from_username')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("pid1 in {$db->field('id')->buildSql()}");
|
||||
|
||||
// 数据查询分页
|
||||
$query->like('phone,username|nickname#username')->whereRaw('vip_code>0')->equal('status,vip_code')->dateBetween('create_at')->page();
|
||||
} else {
|
||||
$data = $this->_vali(['pid.require' => '待绑定代理不能为空!', 'uuid.require' => '待操作用户不能为空!']);
|
||||
[$status, $message] = UserUpgradeService::bindAgent($data['uuid'], $data['pid'], 2);
|
||||
$status && sysoplog('前端用户管理', "修改用户[{$data['uuid']}]的代理为用户[{$data['pid']}]");
|
||||
empty($status) ? $this->error($message) : $this->success($message);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 重算用户余额返利
|
||||
* @auth true
|
||||
*/
|
||||
public function sync()
|
||||
{
|
||||
$this->_queue('重新计算用户余额返利', 'xdata:UserAmount');
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改用户状态
|
||||
* @auth true
|
||||
*/
|
||||
public function state()
|
||||
{
|
||||
DataUser::mSave($this->_vali([
|
||||
'status.in:0,1' => '状态值范围异常!',
|
||||
'status.require' => '状态值不能为空!',
|
||||
]));
|
||||
}
|
||||
}
|
@ -1,150 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\user;
|
||||
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserBalance;
|
||||
use app\data\service\UserAdminService;
|
||||
use app\data\service\UserBalanceService;
|
||||
use app\data\service\UserUpgradeService;
|
||||
use think\admin\Controller;
|
||||
use think\admin\extend\CodeExtend;
|
||||
use think\admin\model\SystemUser;
|
||||
use think\admin\service\AdminService;
|
||||
|
||||
/**
|
||||
* 余额充值记录
|
||||
* Class Balance
|
||||
* @package app\data\controller\user
|
||||
*/
|
||||
class Balance extends Controller
|
||||
{
|
||||
/**
|
||||
* 余额充值管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '余额充值记录';
|
||||
// 统计用户余额
|
||||
$this->balance = UserBalanceService::amount(0);
|
||||
// 现有余额类型
|
||||
$this->names = DataUserBalance::mk()->group('name')->column('name');
|
||||
// 创建查询对象
|
||||
$query = DataUserBalance::mQuery()->equal('name,upgrade');
|
||||
// 用户搜索查询
|
||||
$db = DataUser::mQuery()->like('phone|nickname#user_keys')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("uuid in {$db->field('id')->buildSql()}");
|
||||
// 数据查询分页
|
||||
$query->where(['deleted' => 0])->like('code,remark')->dateBetween('create_at')->order('id desc')->page();
|
||||
}
|
||||
|
||||
/**
|
||||
* 数据列表处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _index_page_filter(array &$data)
|
||||
{
|
||||
UserAdminService::buildByUid($data);
|
||||
$uids = array_unique(array_column($data, 'create_by'));
|
||||
$users = SystemUser::mk()->whereIn('id', $uids)->column('username', 'id');
|
||||
$this->upgrades = BaseUserUpgrade::items();
|
||||
foreach ($data as &$vo) {
|
||||
$vo['upgradeinfo'] = $this->upgrades[$vo['upgrade']] ?? [];
|
||||
$vo['create_byname'] = $users[$vo['create_by']] ?? '';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加余额充值
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$data = $this->_vali(['uuid.require' => '用户UID不能为空!']);
|
||||
$this->user = DataUser::mk()->where(['id' => $data['uuid']])->find();
|
||||
if (empty($this->user)) $this->error('待充值的用户不存在!');
|
||||
DataUserBalance::mForm('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _form_filter(array &$data)
|
||||
{
|
||||
if (empty($data['code'])) {
|
||||
$data['code'] = CodeExtend::uniqidDate('20', 'B');
|
||||
}
|
||||
if ($this->request->isGet()) {
|
||||
$this->upgrades = BaseUserUpgrade::items();
|
||||
}
|
||||
if ($this->request->isPost()) {
|
||||
$data['create_by'] = AdminService::getUserId();
|
||||
if (empty(floatval($data['amount'])) && empty($data['upgrade'])) {
|
||||
$this->error('金额为零并且没有升级行为!');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param bool $state
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
protected function _form_result(bool $state, array $data)
|
||||
{
|
||||
if ($state && isset($data['uuid'])) {
|
||||
UserBalanceService::amount($data['uuid']);
|
||||
UserUpgradeService::upgrade($data['uuid']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除充值记录
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
DataUserBalance::mDelete('', [['code', 'like', 'B%']]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除结果处理
|
||||
* @param bool $state
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
protected function _delete_result(bool $state)
|
||||
{
|
||||
if ($state) {
|
||||
$map = [['id', 'in', str2arr(input('id', ''))]];
|
||||
foreach (DataUserBalance::mk()->where($map)->cursor() as $vo) {
|
||||
UserBalanceService::amount($vo['uuid']);
|
||||
UserUpgradeService::upgrade($vo['uuid']);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,75 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\user;
|
||||
|
||||
use app\data\model\DataUserMessage;
|
||||
use app\data\service\MessageService;
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 短信发送管理
|
||||
* Class Message
|
||||
* @package app\data\controller\user
|
||||
*/
|
||||
class Message extends Controller
|
||||
{
|
||||
/**
|
||||
* 短信发送管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '短信发送管理';
|
||||
$query = DataUserMessage::mQuery();
|
||||
$query->equal('status')->like('phone,content');
|
||||
$query->dateBetween('create_at')->order('id desc')->page();
|
||||
}
|
||||
|
||||
/**
|
||||
* 短信接口配置
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function config()
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$this->title = '短信接口配置';
|
||||
$this->result = MessageService::instance()->balance();
|
||||
$this->fetch();
|
||||
} else {
|
||||
$data = $this->request->post();
|
||||
foreach ($data as $k => $v) sysconf($k, $v);
|
||||
$this->success('配置保存成功!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除短信记录
|
||||
* @auth true
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
DataUserMessage::mDelete();
|
||||
}
|
||||
}
|
@ -1,107 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\user;
|
||||
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserRebate;
|
||||
use app\data\model\ShopOrderItem;
|
||||
use app\data\service\RebateService;
|
||||
use app\data\service\UserRebateService;
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 用户返利管理
|
||||
* Class Rebate
|
||||
* @package app\data\controller\user
|
||||
*/
|
||||
class Rebate extends Controller
|
||||
{
|
||||
/**
|
||||
* 用户返利管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '用户返利管理';
|
||||
// 统计所有返利
|
||||
$this->types = RebateService::PRIZES;
|
||||
$this->rebate = UserRebateService::amount(0);
|
||||
// 创建查询对象
|
||||
$query = DataUserRebate::mQuery()->equal('type')->like('name,order_no');
|
||||
// 会员条件查询
|
||||
$db = $this->_query('DataUser')->like('nickname#order_nickname,phone#order_phone')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("order_uuid in {$db->field('id')->buildSql()}");
|
||||
// 代理条件查询
|
||||
$db = $this->_query('DataUser')->like('nickname#agent_nickname,phone#agent_phone')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("uuid in {$db->field('id')->buildSql()}");
|
||||
// 查询分页
|
||||
$query->dateBetween('create_at')->order('id desc')->page();
|
||||
}
|
||||
|
||||
/**
|
||||
* 商城订单列表处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _index_page_filter(array &$data)
|
||||
{
|
||||
$uids = array_merge(array_column($data, 'uuid'), array_column($data, 'order_uuid'));
|
||||
$userItem = DataUser::mk()->whereIn('id', array_unique($uids))->select();
|
||||
$goodsItem = ShopOrderItem::mk()->whereIn('order_no', array_unique(array_column($data, 'order_no')))->select();
|
||||
foreach ($data as &$vo) {
|
||||
$vo['type'] = RebateService::name($vo['type']);
|
||||
[$vo['user'], $vo['agent'], $vo['list']] = [[], [], []];
|
||||
foreach ($userItem as $user) {
|
||||
if ($user['id'] === $vo['uuid']) $vo['agent'] = $user;
|
||||
if ($user['id'] === $vo['order_uuid']) $vo['user'] = $user;
|
||||
}
|
||||
foreach ($goodsItem as $goods) {
|
||||
if ($goods['order_no'] === $vo['order_no']) {
|
||||
$vo['list'][] = $goods;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户返利配置
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function config()
|
||||
{
|
||||
$this->skey = 'RebateRule';
|
||||
$this->title = '用户返利配置';
|
||||
if ($this->request->isGet()) {
|
||||
$this->data = sysdata($this->skey);
|
||||
$this->levels = BaseUserUpgrade::items();
|
||||
$this->fetch();
|
||||
} else {
|
||||
sysdata($this->skey, $this->request->post());
|
||||
$this->success('奖励修改成功');
|
||||
}
|
||||
}
|
||||
}
|
@ -1,192 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\controller\user;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserTransfer;
|
||||
use app\data\service\UserAdminService;
|
||||
use app\data\service\UserTransferService;
|
||||
use think\admin\Controller;
|
||||
use think\admin\extend\CodeExtend;
|
||||
use think\admin\service\AdminService;
|
||||
|
||||
/**
|
||||
* 用户提现管理
|
||||
* Class Transfer
|
||||
* @package app\data\controller\user
|
||||
*/
|
||||
class Transfer extends Controller
|
||||
{
|
||||
/**
|
||||
* 提现转账方案
|
||||
* @var array
|
||||
*/
|
||||
protected $types = [];
|
||||
|
||||
protected function initialize()
|
||||
{
|
||||
$this->types = UserTransferService::instance()->types();
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户提现配置
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function config()
|
||||
{
|
||||
$this->skey = 'TransferRule';
|
||||
$this->title = '用户提现配置';
|
||||
$this->_sysdata();
|
||||
}
|
||||
|
||||
/**
|
||||
* 微信转账配置
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function payment()
|
||||
{
|
||||
$this->skey = 'TransferWxpay';
|
||||
$this->title = '微信提现配置';
|
||||
$this->_sysdata();
|
||||
}
|
||||
|
||||
/**
|
||||
* 配置数据处理
|
||||
* @param string $tpl 模板文件
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function _sysdata(string $tpl = '')
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
$this->data = sysdata($this->skey);
|
||||
$this->fetch($tpl);
|
||||
} else {
|
||||
sysdata($this->skey, $this->request->post());
|
||||
$this->success('配置修改成功');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户提现管理
|
||||
* @menu true
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '用户提现管理';
|
||||
$this->transfer = UserTransferService::amount(0);
|
||||
// 创建查询对象
|
||||
$query = DataUserTransfer::mQuery()->order('id desc');
|
||||
// 用户条件搜索
|
||||
$db = DataUser::mQuery()->like('phone,username|nickname#nickname')->db();
|
||||
if ($db->getOptions('where')) $query->whereRaw("uuid in {$db->field('id')->buildSql()}");
|
||||
// 数据列表处理
|
||||
$query->equal('type,status')->dateBetween('create_at')->page();
|
||||
}
|
||||
|
||||
/**
|
||||
* 数据列表处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _page_filter(array &$data)
|
||||
{
|
||||
UserAdminService::buildByUid($data);
|
||||
foreach ($data as &$vo) {
|
||||
$vo['type_name'] = UserTransferService::instance()->types($vo['type']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 提现审核操作
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function auditStatus()
|
||||
{
|
||||
$this->_audit();
|
||||
}
|
||||
|
||||
/**
|
||||
* 提现打款操作
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function auditPayment()
|
||||
{
|
||||
$this->_audit();
|
||||
}
|
||||
|
||||
/**
|
||||
* 提现审核打款
|
||||
* @auth true
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function _audit()
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
DataUserTransfer::mForm('audit', 'code');
|
||||
} else {
|
||||
$data = $this->_vali([
|
||||
'code.require' => '打款单号不能为空!',
|
||||
'status.require' => '交易审核操作类型!',
|
||||
'status.in:0,1,2,3,4' => '交易审核操作类型!',
|
||||
'remark.default' => '',
|
||||
]);
|
||||
$map = ['code' => $data['code']];
|
||||
$find = DataUserTransfer::mk()->where($map)->find();
|
||||
if (empty($find)) $this->error('不允许操作审核!');
|
||||
// 提现状态(0已拒绝, 1待审核, 2已审核, 3打款中, 4已打款, 5已收款)
|
||||
if (in_array($data['status'], [0, 1, 2, 3])) {
|
||||
$data['last_at'] = date('Y-m-d H:i:s');
|
||||
} elseif ($data['status'] == 4) {
|
||||
$data['trade_no'] = CodeExtend::uniqidDate(20);
|
||||
$data['trade_time'] = date('Y-m-d H:i:s');
|
||||
$data['change_time'] = date('Y-m-d H:i:s');
|
||||
$data['change_desc'] = ($data['remark'] ?: '线下打款成功') . ' By ' . AdminService::getUserName();
|
||||
}
|
||||
if (DataUserTransfer::mk()->strict(false)->where($map)->update($data) !== false) {
|
||||
$this->success('操作成功');
|
||||
} else {
|
||||
$this->error('操作失败!');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 后台打款服务
|
||||
* @auth true
|
||||
*/
|
||||
public function sync()
|
||||
{
|
||||
$this->_queue('提现到微信余额定时处理', 'xdata:UserTransfer', 0, [], 0, 50);
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,86 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
use think\admin\extend\PhinxExtend;
|
||||
use think\migration\Migrator;
|
||||
|
||||
@set_time_limit(0);
|
||||
@ini_set('memory_limit', -1);
|
||||
|
||||
/**
|
||||
* 数据库初始化
|
||||
*/
|
||||
class InstallUserData extends Migrator
|
||||
{
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function change()
|
||||
{
|
||||
$this->insertMenu();
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建菜单
|
||||
* @return void
|
||||
*/
|
||||
protected function insertMenu()
|
||||
{
|
||||
PhinxExtend::write2menu([
|
||||
[
|
||||
'name' => '控制台',
|
||||
'sort' => '300',
|
||||
'subs' => [
|
||||
[
|
||||
'name' => '数据管理',
|
||||
'subs' => [
|
||||
['name' => '数据统计报表', 'icon' => 'layui-icon layui-icon-theme', 'node' => 'data/total.portal/index'],
|
||||
['name' => '轮播图片管理', 'icon' => 'layui-icon layui-icon-carousel', 'node' => 'data/base.slider/index'],
|
||||
['name' => '页面内容管理', 'icon' => 'layui-icon layui-icon-read', 'node' => 'data/base.pager/index'],
|
||||
['name' => '文章内容管理', 'icon' => 'layui-icon layui-icon-template', 'node' => 'data/news.item/index'],
|
||||
['name' => '支付参数管理', 'icon' => 'layui-icon layui-icon-rmb', 'node' => 'data/base.payment/index'],
|
||||
['name' => '系统通知管理', 'icon' => 'layui-icon layui-icon-notice', 'node' => 'data/base.message/index'],
|
||||
['name' => '微信小程序配置', 'icon' => 'layui-icon layui-icon-set', 'node' => 'data/base.config/wxapp'],
|
||||
['name' => '邀请二维码设置', 'icon' => 'layui-icon layui-icon-cols', 'node' => 'data/base.config/cropper'],
|
||||
],
|
||||
],
|
||||
[
|
||||
'name' => '用户管理',
|
||||
'subs' => [
|
||||
['name' => '会员用户管理', 'icon' => 'layui-icon layui-icon-user', 'node' => 'data/user.admin/index'],
|
||||
['name' => '余额充值管理', 'icon' => 'layui-icon layui-icon-rmb', 'node' => 'data/user.balance/index'],
|
||||
['name' => '用户返利管理', 'icon' => 'layui-icon layui-icon-transfer', 'node' => 'data/user.rebate/index'],
|
||||
['name' => '用户提现管理', 'icon' => 'layui-icon layui-icon-component', 'node' => 'data/user.transfer/index'],
|
||||
['name' => '用户等级管理', 'icon' => 'layui-icon layui-icon-senior', 'node' => 'data/base.upgrade/index'],
|
||||
['name' => '用户折扣方案', 'icon' => 'layui-icon layui-icon-set', 'node' => 'data/base.discount/index'],
|
||||
],
|
||||
],
|
||||
[
|
||||
'name' => '商城管理',
|
||||
'subs' => [
|
||||
['name' => '商品数据管理', 'icon' => 'layui-icon layui-icon-star', 'node' => 'data/shop.goods/index'],
|
||||
['name' => '商品分类管理', 'icon' => 'layui-icon layui-icon-tabs', 'node' => 'data/shop.cate/index'],
|
||||
['name' => '订单数据管理', 'icon' => 'layui-icon layui-icon-template', 'node' => 'data/shop.order/index'],
|
||||
['name' => '订单发货管理', 'icon' => 'layui-icon layui-icon-transfer', 'node' => 'data/shop.send/index'],
|
||||
['name' => '快递公司管理', 'icon' => 'layui-icon layui-icon-website', 'node' => 'data/base.postage.company/index'],
|
||||
['name' => '邮费模板管理', 'icon' => 'layui-icon layui-icon-template-1', 'node' => 'data/base.postage.template/index'],
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
], ['node' => 'data/user.admin/index']);
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 快递公司模型
|
||||
* Class BasePostageCompany
|
||||
* @package app\data\model
|
||||
*/
|
||||
class BasePostageCompany extends Model
|
||||
{
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 快递模板模型
|
||||
* Class BasePostageTemplate
|
||||
* @package app\data\model
|
||||
*/
|
||||
class BasePostageTemplate extends Model
|
||||
{
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户优惠方案模型
|
||||
* Class BaseUserDiscount
|
||||
* @package app\data\model
|
||||
*/
|
||||
class BaseUserDiscount extends Model
|
||||
{
|
||||
/**
|
||||
* 格式化等级规则
|
||||
* @param mixed $value
|
||||
* @return mixed
|
||||
*/
|
||||
public function getItemsAttr($value)
|
||||
{
|
||||
return empty($value) ? $value : json_decode($value, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户通知消息模型
|
||||
* Class BaseUserMessage
|
||||
* @package app\data\model
|
||||
*/
|
||||
class BaseUserMessage extends Model
|
||||
{
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户支付参数模型
|
||||
* Class BaseUserPayment
|
||||
* @package app\data\model
|
||||
*/
|
||||
class BaseUserPayment extends Model
|
||||
{
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,84 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use app\data\service\RebateService;
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户等级配置模型
|
||||
* Class BaseUserUpgrade
|
||||
* @package app\data\model
|
||||
*/
|
||||
class BaseUserUpgrade extends Model
|
||||
{
|
||||
/**
|
||||
* 获取用户等级
|
||||
* @return array
|
||||
*/
|
||||
public static function items(): array
|
||||
{
|
||||
return static::mk()->where(['status' => 1])
|
||||
->hidden(['id', 'utime', 'status', 'create_at'])
|
||||
->order('number asc')->column('*', 'number');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取最大级别数
|
||||
* @return integer
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public static function maxNumber(): int
|
||||
{
|
||||
if (static::mk()->count() < 1) return 0;
|
||||
return static::mk()->max('number') + 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* 规格化奖励配置
|
||||
* @param mixed $value
|
||||
* @return array
|
||||
*/
|
||||
public function getRebateRuleAttr($value): array
|
||||
{
|
||||
[$data, $rules] = [[], array_column(RebateService::PRIZES, 'code')];
|
||||
foreach (is_string($value) ? str2arr($value, ',', $rules) : [] as $rule) {
|
||||
$data[$rule] = RebateService::name($rule);
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化奖励配置
|
||||
* @param mixed $value
|
||||
* @return string
|
||||
*/
|
||||
public function setRebateRuleAttr($value): string
|
||||
{
|
||||
return is_array($value) ? arr2str($value) : $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 新闻内容模型
|
||||
* Class DataNewsItem
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataNewsItem extends Model
|
||||
{
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,49 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* Class DataNewsMark
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataNewsMark extends Model
|
||||
{
|
||||
/**
|
||||
* 获取标签数据
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function items(): array
|
||||
{
|
||||
$query = static::mk()->where(['status' => 1, 'deleted' => 0]);
|
||||
return $query->field('id,name,remark')->order('sort desc,id desc')->select()->toArray();
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
*
|
||||
* Class DataNewsXCollect
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataNewsXCollect extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户数据模型
|
||||
* Class DataUser
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataUser extends Model
|
||||
{
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户地址模型
|
||||
* Class DataUserAddress
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataUserAddress extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户余额模型
|
||||
* Class DataUserBalance
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataUserBalance extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户消息模型
|
||||
* Class DataUserMessage
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataUserMessage extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户支付模型
|
||||
* Class DataUserPayment
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataUserPayment extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户返利模型
|
||||
* Class DataUserRebate
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataUserRebate extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户令牌模型
|
||||
* Class DataUserToken
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataUserToken extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 用户提现模型
|
||||
* Class DataUserTransfer
|
||||
* @package app\data\model
|
||||
*/
|
||||
class DataUserTransfer extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 商城商品主模型
|
||||
* Class ShopGoods
|
||||
* @package app\data\model
|
||||
*/
|
||||
class ShopGoods extends Model
|
||||
{
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,102 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\extend\DataExtend;
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 商城商品分类模型
|
||||
* Class ShopGoodsCate
|
||||
* @package app\data\model
|
||||
*/
|
||||
class ShopGoodsCate extends Model
|
||||
{
|
||||
/**
|
||||
* 获取上级可用选项
|
||||
* @param int $max 最大级别
|
||||
* @param array $data 表单数据
|
||||
* @param array $parent 上级分类
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function getParentData(int $max, array &$data, array $parent = []): array
|
||||
{
|
||||
$items = static::mk()->where(['deleted' => 0])->order('sort desc,id asc')->select()->toArray();
|
||||
$cates = DataExtend::arr2table(empty($parent) ? $items : array_merge([$parent], $items));
|
||||
if (isset($data['id'])) foreach ($cates as $cate) if ($cate['id'] === $data['id']) $data = $cate;
|
||||
foreach ($cates as $key => $cate) {
|
||||
$isSelf = isset($data['spt']) && isset($data['spc']) && $data['spt'] <= $cate['spt'] && $data['spc'] > 0;
|
||||
if ($cate['spt'] >= $max || $isSelf) unset($cates[$key]);
|
||||
}
|
||||
return $cates;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取数据树
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function treeData(): array
|
||||
{
|
||||
$query = static::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc');
|
||||
return DataExtend::arr2tree($query->withoutField('sort,status,deleted,create_at')->select()->toArray());
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取列表数据
|
||||
* @param bool $simple 仅子级别
|
||||
* @return array
|
||||
*/
|
||||
public static function treeTable(bool $simple = false): array
|
||||
{
|
||||
$query = static::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id asc');
|
||||
$cates = array_column(DataExtend::arr2table($query->column('id,pid,name', 'id')), null, 'id');
|
||||
foreach ($cates as $cate) isset($cates[$cate['pid']]) && $cates[$cate['id']]['parent'] =& $cates[$cate['pid']];
|
||||
foreach ($cates as $key => $cate) {
|
||||
$id = $cate['id'];
|
||||
$cates[$id]['ids'][] = $cate['id'];
|
||||
$cates[$id]['names'][] = $cate['name'];
|
||||
while (isset($cate['parent']) && ($cate = $cate['parent'])) {
|
||||
$cates[$id]['ids'][] = $cate['id'];
|
||||
$cates[$id]['names'][] = $cate['name'];
|
||||
}
|
||||
$cates[$id]['ids'] = array_reverse($cates[$id]['ids']);
|
||||
$cates[$id]['names'] = array_reverse($cates[$id]['names']);
|
||||
if (isset($pky) && $simple && in_array($cates[$pky]['name'], $cates[$id]['names'])) {
|
||||
unset($cates[$pky]);
|
||||
}
|
||||
$pky = $key;
|
||||
}
|
||||
foreach ($cates as &$cate) unset($cate['parent']);
|
||||
return array_values($cates);
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 商城商品规格模型
|
||||
* Class ShopGoodsItem
|
||||
* @package app\data\model
|
||||
*/
|
||||
class ShopGoodsItem extends Model
|
||||
{
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 商城商品标题模型
|
||||
* Class ShopGoodsMark
|
||||
* @package app\data\model
|
||||
*/
|
||||
class ShopGoodsMark extends Model
|
||||
{
|
||||
/**
|
||||
* 获取所有标签
|
||||
* @return array
|
||||
*/
|
||||
public static function items(): array
|
||||
{
|
||||
$map = ['status' => 1];
|
||||
return static::mk()->where($map)->order('sort desc,id desc')->column('name');
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化创建时间
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getCreateAtAttr(string $value): string
|
||||
{
|
||||
return format_datetime($value);
|
||||
}
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 商城商品库存模型
|
||||
* Class ShopGoodsStock
|
||||
* @package app\data\model
|
||||
*/
|
||||
class ShopGoodsStock extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 商城订单主模型
|
||||
* Class ShopOrder
|
||||
* @package app\data\model
|
||||
*/
|
||||
class ShopOrder extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 商城订单详情模型
|
||||
* Class ShopOrderItem
|
||||
* @package app\data\model
|
||||
*/
|
||||
class ShopOrderItem extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\model;
|
||||
|
||||
use think\admin\Model;
|
||||
|
||||
/**
|
||||
* 商城订单发货模型
|
||||
* Class ShopOrderSend
|
||||
* @package app\data\model
|
||||
*/
|
||||
class ShopOrderSend extends Model
|
||||
{
|
||||
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
### 模块版权说明
|
||||
|
||||
注意:此模块代码是体验案例,存在大量测试代码,不建议直接商用!
|
||||
|
||||
ThinkAdmin 的 data 模块功能为会员专有功能,普通用户不得直接商用。
|
||||
|
||||
详情阅读:https://thinkadmin.top/vip-introduce
|
||||
|
||||
### 模块安装说明
|
||||
|
||||
将此模块 `app/data` 目录复制到你自己的 `ThinkAdmin V6` 项目 `app/data` 目录。
|
||||
|
||||
然后执行 `php think xadmin:publish --migrate` 安装,数据库通过脚本安装,不再需要另行导入。
|
||||
|
||||
### 配套前端代码
|
||||
|
||||
前端代码使用 `Dcloud` 开发,可以打包发布不同平台的应用,前端代码也仅供参数学习。
|
||||
|
||||
前端代码:https://gitee.com/zoujingli/ThinkAdminMobile
|
||||
|
||||
接口文档:https://documenter.getpostman.com/view/4518676/UVkmRHcb
|
@ -1,145 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\BasePostageTemplate;
|
||||
use think\admin\Service;
|
||||
use think\admin\service\InterfaceService;
|
||||
|
||||
/**
|
||||
* 快递查询数据服务
|
||||
* Class ExpressService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class ExpressService extends Service
|
||||
{
|
||||
/**
|
||||
* 模拟计算快递费用
|
||||
* @param array $codes 模板编号
|
||||
* @param string $provName 省份名称
|
||||
* @param string $cityName 城市名称
|
||||
* @param integer $truckCount 邮费基数
|
||||
* @return array [邮费金额, 计费基数, 模板编号, 计费描述]
|
||||
*/
|
||||
public static function amount(array $codes, string $provName, string $cityName, int $truckCount = 0): array
|
||||
{
|
||||
if (empty($codes)) return [0, $truckCount, '', '邮费模板编码为空!'];
|
||||
$map = [['status', '=', 1], ['deleted', '=', 0], ['code', 'in', $codes]];
|
||||
$template = BasePostageTemplate::mk()->where($map)->order('sort desc,id desc')->findOrEmpty();
|
||||
if ($template->isEmpty()) return [0, $truckCount, '', '邮费模板编码无效!'];
|
||||
$rule = json_decode($template['normal'] ?: '[]', true) ?: [];
|
||||
foreach (json_decode($template['content'] ?: '[]', true) ?: [] as $item) {
|
||||
if (isset($item['city']) && is_array($item['city'])) foreach ($item['city'] as $city) {
|
||||
if ($city['name'] === $provName && in_array($cityName, $city['subs'])) {
|
||||
$rule = $item['rule'];
|
||||
break 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
[$firstNumber, $firstAmount] = [$rule['firstNumber'] ?: 0, $rule['firstAmount'] ?: 0];
|
||||
[$repeatNumber, $repeatAmount] = [$rule['repeatNumber'] ?: 0, $rule['repeatAmount'] ?: 0];
|
||||
if ($truckCount <= $firstNumber) {
|
||||
return [$firstAmount, $truckCount, $template['code'], "首件计费,不超过{$firstNumber}件"];
|
||||
} else {
|
||||
$amount = $repeatNumber > 0 ? $repeatAmount * ceil(($truckCount - $firstNumber) / $repeatNumber) : 0;
|
||||
return [$firstAmount + $amount, $truckCount, $template['code'], "续件计费,超出{$firstNumber}件续件{$amount}元"];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 获取快递模板数据
|
||||
* @return array
|
||||
*/
|
||||
public static function templates(): array
|
||||
{
|
||||
$query = BasePostageTemplate::mk()->where(['status' => 1, 'deleted' => 0]);
|
||||
return $query->order('sort desc,id desc')->column('code,name,normal,content', 'code');
|
||||
}
|
||||
|
||||
/**
|
||||
* 配送区域树型数据
|
||||
* @param integer $level 最大等级
|
||||
* @param ?integer $status 状态筛选
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function region(int $level = 3, ?int $status = null): array
|
||||
{
|
||||
[$items, $ncodes] = [[], sysdata('data.NotRegion')];
|
||||
foreach (json_decode(file_get_contents(syspath('public/static/plugs/jquery/area/data.json')), true) as $prov) {
|
||||
$pstat = intval(!in_array($prov['code'], $ncodes));
|
||||
if (is_null($status) || is_numeric($status) && $status === $pstat) {
|
||||
$mprov = ['id' => $prov['code'], 'pid' => 0, 'name' => $prov['name'], 'status' => $pstat, 'subs' => []];
|
||||
if ($level > 1) foreach ($prov['list'] as $city) {
|
||||
$cstat = intval(!in_array($city['code'], $ncodes));
|
||||
if (is_null($status) || is_numeric($status) && $status === $cstat) {
|
||||
$mcity = ['id' => $city['code'], 'pid' => $prov['code'], 'name' => $city['name'], 'status' => $cstat, 'subs' => []];
|
||||
if ($level > 2) foreach ($city['list'] as $area) {
|
||||
$astat = intval(!in_array($area['code'], $ncodes));
|
||||
if (is_null($status) || is_numeric($status) && $status === $astat) {
|
||||
$mcity['subs'][] = ['id' => $area['code'], 'pid' => $city['code'], 'status' => $astat, 'name' => $area['name']];
|
||||
}
|
||||
}
|
||||
$mprov['subs'][] = $mcity;
|
||||
}
|
||||
}
|
||||
$items[] = $mprov;
|
||||
}
|
||||
}
|
||||
return $items;
|
||||
}
|
||||
|
||||
/**
|
||||
* 楚才开放平台快递查询
|
||||
* @param string $code 快递公司编号
|
||||
* @param string $number 快递配送单号
|
||||
* @return array
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
public static function query(string $code, string $number): array
|
||||
{
|
||||
return static::getInterface()->doRequest('api.auth.express/query', [
|
||||
'type' => 'free', 'express' => $code, 'number' => $number,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 楚才开放平台快递公司
|
||||
* @return array
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
public static function company(): array
|
||||
{
|
||||
return static::getInterface()->doRequest('api.auth.express/getCompany');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取楚才开放平台接口实例
|
||||
* @return InterfaceService
|
||||
*/
|
||||
private static function getInterface(): InterfaceService
|
||||
{
|
||||
$service = InterfaceService::instance();
|
||||
// 测试的账号及密钥随时可能会变更,请联系客服更新
|
||||
$service->getway('https://open.cuci.cc/user/');
|
||||
$service->setAuth("6998081316132228", "193fc1d9a2aac78475bc8dbeb9a5feb1");
|
||||
return $service;
|
||||
}
|
||||
}
|
@ -1,99 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\ShopGoods;
|
||||
use app\data\model\ShopGoodsCate;
|
||||
use app\data\model\ShopGoodsItem;
|
||||
use app\data\model\ShopGoodsMark;
|
||||
use app\data\model\ShopGoodsStock;
|
||||
use app\data\model\ShopOrder;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 商品数据服务
|
||||
* Class GoodsService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class GoodsService extends Service
|
||||
{
|
||||
/**
|
||||
* 更新商品库存数据
|
||||
* @param string $code
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function stock(string $code): bool
|
||||
{
|
||||
// 商品入库统计
|
||||
$query = ShopGoodsStock::mk()->field('goods_code,goods_spec,ifnull(sum(goods_stock),0) stock_total');
|
||||
$stockList = $query->where(['goods_code' => $code])->group('goods_code,goods_spec')->select()->toArray();
|
||||
// 商品销量统计
|
||||
$query = ShopOrder::mk()->alias('a')->field('b.goods_code,b.goods_spec,ifnull(sum(b.stock_sales),0) stock_sales');
|
||||
$query->leftJoin('shop_order_item b', 'a.order_no=b.order_no')->where("b.goods_code='{$code}' and a.status>0 and a.deleted_status<1");
|
||||
$salesList = $query->group('b.goods_code,b.goods_spec')->select()->toArray();
|
||||
// 组装更新数据
|
||||
$dataList = [];
|
||||
foreach (array_merge($stockList, $salesList) as $vo) {
|
||||
$key = "{$vo['goods_code']}@@{$vo['goods_spec']}";
|
||||
$dataList[$key] = isset($dataList[$key]) ? array_merge($dataList[$key], $vo) : $vo;
|
||||
if (empty($dataList[$key]['stock_sales'])) $dataList[$key]['stock_sales'] = 0;
|
||||
if (empty($dataList[$key]['stock_total'])) $dataList[$key]['stock_total'] = 0;
|
||||
}
|
||||
unset($salesList, $stockList);
|
||||
// 更新商品规格销量及库存
|
||||
foreach ($dataList as $vo) {
|
||||
$map = ['goods_code' => $code, 'goods_spec' => $vo['goods_spec']];
|
||||
$set = ['stock_total' => $vo['stock_total'], 'stock_sales' => $vo['stock_sales']];
|
||||
ShopGoodsItem::mk()->where($map)->update($set);
|
||||
}
|
||||
// 更新商品主体销量及库存
|
||||
ShopGoods::mk()->where(['code' => $code])->update([
|
||||
'stock_total' => intval(array_sum(array_column($dataList, 'stock_total'))),
|
||||
'stock_sales' => intval(array_sum(array_column($dataList, 'stock_sales'))),
|
||||
'stock_virtual' => ShopGoodsItem::mk()->where(['goods_code' => $code])->sum('number_virtual'),
|
||||
]);
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 商品数据绑定
|
||||
* @param array $data 商品主数据
|
||||
* @param boolean $simple 简化数据
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function bindData(array &$data = [], bool $simple = true): array
|
||||
{
|
||||
$marks = ShopGoodsMark::items();
|
||||
$cates = ShopGoodsCate::treeTable();
|
||||
$codes = array_unique(array_column($data, 'code'));
|
||||
$items = ShopGoodsItem::mk()->whereIn('goods_code', $codes)->where(['status' => 1])->select()->toArray();
|
||||
foreach ($data as &$vo) {
|
||||
[$vo['marks'], $vo['cateids'], $vo['cateinfo']] = [str2arr($vo['marks'], ',', $marks), str2arr($vo['cateids']), []];
|
||||
[$vo['slider'], $vo['specs'], $vo['items']] = [str2arr($vo['slider'], '|'), json_decode($vo['data_specs'], true), []];
|
||||
foreach ($cates as $cate) if (in_array($cate['id'], $vo['cateids'])) $vo['cateinfo'] = $cate;
|
||||
foreach ($items as $item) if ($item['goods_code'] === $vo['code']) $vo['items'][] = $item;
|
||||
if ($simple) unset($vo['marks'], $vo['sort'], $vo['status'], $vo['deleted'], $vo['data_items'], $vo['data_specs'], $vo['cateinfo']['parent']);
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
}
|
@ -1,189 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\DataUserMessage;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 短信支持服务
|
||||
* Class MessageService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class MessageService extends Service
|
||||
{
|
||||
/**
|
||||
* 平台授权账号
|
||||
* @var string
|
||||
*/
|
||||
protected $username;
|
||||
|
||||
/**
|
||||
* 平台授权密码
|
||||
* @var string
|
||||
*/
|
||||
protected $password;
|
||||
|
||||
/**
|
||||
* 短信条数查询
|
||||
*/
|
||||
public function balance(): array
|
||||
{
|
||||
[$state, $message, $result] = $this->_request('v2/balance', []);
|
||||
return [$state, $message, $state ? $result['sumSms'] : 0];
|
||||
}
|
||||
|
||||
/**
|
||||
* 执行网络请求
|
||||
* @param string $url 接口请求地址
|
||||
* @param array $data 接口请求参数
|
||||
* @return array
|
||||
*/
|
||||
private function _request(string $url, array $data): array
|
||||
{
|
||||
$encode = md5(md5($this->password) . ($tkey = time()));
|
||||
$option = ['headers' => ['Content-Type:application/json;charset=UTF-8']];
|
||||
$request = json_encode(array_merge($data, ['username' => $this->username, 'password' => $encode, 'tKey' => $tkey]));
|
||||
$result = json_decode(http_post("https://api.mix2.zthysms.com/{$url}", $request, $option), true);
|
||||
if (empty($result['code'])) {
|
||||
return [0, '接口请求网络异常', []];
|
||||
} elseif (intval($result['code']) === 200) {
|
||||
return [1, $this->_error($result['code']), $result];
|
||||
} else {
|
||||
return [0, $this->_error($result['code']), $result];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取状态描述
|
||||
* @param integer $code
|
||||
* @return string
|
||||
*/
|
||||
private function _error(int $code): string
|
||||
{
|
||||
$arrs = [
|
||||
200 => '提交成功',
|
||||
4001 => '用户名错误',
|
||||
4002 => '密码不能为空',
|
||||
4003 => '短信内容不能为空',
|
||||
4004 => '手机号码错误',
|
||||
4006 => 'IP鉴权错误',
|
||||
4007 => '用户禁用',
|
||||
4008 => 'tKey错误',
|
||||
4009 => '密码错误',
|
||||
4011 => '请求错误',
|
||||
4013 => '定时时间错误',
|
||||
4014 => '模板错误',
|
||||
4015 => '扩展号错误',
|
||||
4019 => '用户类型错误',
|
||||
4023 => '签名错误',
|
||||
4025 => '模板变量内容为空',
|
||||
4026 => '手机号码数最大2000个',
|
||||
4027 => '模板变量内容最大200组',
|
||||
4029 => '请使用 POST 请求',
|
||||
4030 => 'Content-Type 请使用 application/json',
|
||||
4031 => '模板名称不能为空',
|
||||
4032 => '模板类型不正确',
|
||||
4034 => '模板内容不能为空',
|
||||
4035 => '模板名称已经存在',
|
||||
4036 => '添加模板信息失败',
|
||||
4037 => '模板名称最大20字符',
|
||||
4038 => '模板内容超过最大字符数',
|
||||
4040 => '模板内容缺少变量值或规则错误',
|
||||
4041 => '模板内容中变量规范错误',
|
||||
4042 => '模板变量个数超限',
|
||||
4044 => '接口24小时限制提交次数超限',
|
||||
9998 => 'JSON解析错误',
|
||||
9999 => '非法请求',
|
||||
];
|
||||
return $arrs[$code] ?? $code;
|
||||
}
|
||||
|
||||
/**
|
||||
* 验证手机短信验证码
|
||||
* @param string $code 验证码
|
||||
* @param string $phone 手机号验证
|
||||
* @param string $tplcode
|
||||
* @return boolean
|
||||
*/
|
||||
public function checkVerifyCode(string $code, string $phone, string $tplcode = 'zt.tplcode_register'): bool
|
||||
{
|
||||
$cache = $this->app->cache->get(md5("code-{$tplcode}-{$phone}"), []);
|
||||
return is_array($cache) && isset($cache['code']) && $cache['code'] == $code;
|
||||
}
|
||||
|
||||
/**
|
||||
* 验证手机短信验证码
|
||||
* @param string $phone 手机号码
|
||||
* @param integer $wait 等待时间
|
||||
* @param string $tplcode 模板编号
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function sendVerifyCode(string $phone, int $wait = 120, string $tplcode = 'zt.tplcode_register'): array
|
||||
{
|
||||
$content = sysconf($tplcode) ?: '您的短信验证码为{code},请在十分钟内完成操作!';
|
||||
$cache = $this->app->cache->get($ckey = md5("code-{$tplcode}-{$phone}"), []);
|
||||
// 检查是否已经发送
|
||||
if (is_array($cache) && isset($cache['time']) && $cache['time'] > time() - $wait) {
|
||||
$dtime = ($cache['time'] + $wait < time()) ? 0 : ($wait - time() + $cache['time']);
|
||||
return [1, '短信验证码已经发送!', ['time' => $dtime]];
|
||||
}
|
||||
// 生成新的验证码
|
||||
[$code, $time] = [rand(100000, 999999), time()];
|
||||
$this->app->cache->set($ckey, ['code' => $code, 'time' => $time], 600);
|
||||
// 尝试发送短信内容
|
||||
[$state] = $this->send($phone, preg_replace_callback("|{(.*?)}|", function ($matches) use ($code) {
|
||||
return $matches[1] === 'code' ? $code : $matches[1];
|
||||
}, $content));
|
||||
if ($state) return [1, '短信验证码发送成功!', [
|
||||
'time' => ($time + $wait < time()) ? 0 : ($wait - time() + $time)],
|
||||
]; else {
|
||||
$this->app->cache->delete($ckey);
|
||||
return [0, '短信发送失败,请稍候再试!', []];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 发送自定义短信内容
|
||||
* @param string $phone
|
||||
* @param string $content
|
||||
* @return array
|
||||
*/
|
||||
public function send(string $phone, string $content): array
|
||||
{
|
||||
[$state, $message, $record] = $this->_request('v2/sendSms', ['mobile' => $phone, 'content' => $content]);
|
||||
DataUserMessage::mk()->insert(['phone' => $phone, 'content' => $content, 'result' => $message, 'status' => $state ? 1 : 0]);
|
||||
return [$state, $message, $record];
|
||||
}
|
||||
|
||||
/**
|
||||
* 短信服务初始化
|
||||
* @return MessageService
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function initialize(): MessageService
|
||||
{
|
||||
$this->username = sysconf('zt.username');
|
||||
$this->password = sysconf('zt.password');
|
||||
return $this;
|
||||
}
|
||||
}
|
@ -1,92 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\DataNewsItem;
|
||||
use app\data\model\DataNewsMark;
|
||||
use app\data\model\DataNewsXCollect;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 文章数据服务
|
||||
* Class NewsService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class NewsService extends Service
|
||||
{
|
||||
/**
|
||||
* 同步文章数据统计
|
||||
* @param string $code 文章编号
|
||||
* @param array $total 查询统计
|
||||
*/
|
||||
public static function syncNewsTotal(string $code, array $total = []): void
|
||||
{
|
||||
$query = DataNewsXCollect::mk()->field('type,count(1) count');
|
||||
foreach ($query->where(['code' => $code, 'status' => 2])->group('type')->cursor() as $item) {
|
||||
$total[$item['type']] = $item['count'];
|
||||
}
|
||||
DataNewsItem::mk()->where(['code' => $code])->update([
|
||||
'num_like' => $total[1] ?? 0, 'num_collect' => $total[2] ?? 0, 'num_comment' => $total[4] ?? 0,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据code绑定列表数据
|
||||
* @param array $list 数据列表
|
||||
* @return array
|
||||
*/
|
||||
public static function buildListByUidAndCode(array &$list = []): array
|
||||
{
|
||||
if (count($list) > 0) {
|
||||
/*! 绑定文章内容 */
|
||||
$colls = 'id,code,name,cover,mark,status,deleted,create_at,num_like,num_read,num_comment,num_collect';
|
||||
$items = DataNewsItem::mk()->whereIn('code', array_unique(array_column($list, 'code')))->column($colls, 'code');
|
||||
$marks = DataNewsMark::mk()->where(['status' => 1])->column('name');
|
||||
foreach ($items as &$vo) $vo['mark'] = str2arr($vo['mark'] ?: '', ',', $marks);
|
||||
foreach ($list as &$vo) $vo['record'] = $items[$vo['code']] ?? [];
|
||||
/*! 绑定用户数据 */
|
||||
$colls = 'id,phone,nickname,username,headimg,status';
|
||||
UserAdminService::buildByUid($list, 'uuid', 'user', $colls);
|
||||
}
|
||||
return $list;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取列表状态
|
||||
* @param array $list 数据列表
|
||||
* @param integer $uuid 用户UID
|
||||
* @return array
|
||||
*/
|
||||
public static function buildData(array &$list, int $uuid = 0): array
|
||||
{
|
||||
if (count($list) > 0) {
|
||||
[$code2, $code1] = [[], []];
|
||||
$marks = DataNewsMark::mk()->where(['status' => 1])->column('name');
|
||||
if ($uuid > 0) {
|
||||
$map = [['uuid', '=', $uuid], ['code', 'in', array_unique(array_column($list, 'code'))]];
|
||||
$code1 = DataNewsXCollect::mk()->where($map)->where(['type' => 1])->column('code');
|
||||
$code2 = DataNewsXCollect::mk()->where($map)->where(['type' => 2])->column('code');
|
||||
}
|
||||
foreach ($list as &$vo) {
|
||||
$vo['mark'] = str2arr($vo['mark'] ?: '', ',', $marks);
|
||||
$vo['my_like_state'] = in_array($vo['code'], $code2) ? 1 : 0;
|
||||
$vo['my_coll_state'] = in_array($vo['code'], $code1) ? 1 : 0;
|
||||
}
|
||||
}
|
||||
return $list;
|
||||
}
|
||||
}
|
@ -1,164 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\BaseUserDiscount;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\model\ShopOrderItem;
|
||||
use app\data\model\ShopOrderSend;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 商城订单数据服务
|
||||
* Class OrderService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class OrderService extends Service
|
||||
{
|
||||
/**
|
||||
* 获取随机减免金额
|
||||
* @return float
|
||||
*/
|
||||
public static function getReduct(): float
|
||||
{
|
||||
return rand(1, 100) / 100;
|
||||
}
|
||||
|
||||
/**
|
||||
* 同步订单关联商品的库存
|
||||
* @param string $orderNo 订单编号
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function stock(string $orderNo): bool
|
||||
{
|
||||
$map = ['order_no' => $orderNo];
|
||||
$codes = ShopOrderItem::mk()->where($map)->column('goods_code');
|
||||
foreach (array_unique($codes) as $code) GoodsService::stock($code);
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据订单更新用户等级
|
||||
* @param string $orderNo
|
||||
* @return array|null [USER, ORDER, ENTRY]
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function upgrade(string $orderNo): ?array
|
||||
{
|
||||
// 目标订单数据
|
||||
$map = [['order_no', '=', $orderNo], ['status', '>=', 4]];
|
||||
$order = ShopOrder::mk()->where($map)->find();
|
||||
if (empty($order)) return null;
|
||||
// 订单用户数据
|
||||
$user = DataUser::mk()->where(['id' => $order['uuid']])->find();
|
||||
if (empty($user)) return null;
|
||||
// 更新用户购买资格
|
||||
$entry = static::vipEntry($order['uuid']);
|
||||
// 尝试绑定代理用户
|
||||
if (empty($user['pids']) && ($order['puid1'] > 0 || $user['pid1'] > 0)) {
|
||||
$puid1 = $order['puid1'] > 0 ? $order['puid1'] : $user['pid0'];
|
||||
UserUpgradeService::bindAgent($user['id'], $puid1);
|
||||
}
|
||||
// 重置用户信息并绑定订单
|
||||
$user = DataUser::mk()->where(['id' => $order['uuid']])->find();
|
||||
if ($user['pid1'] > 0) {
|
||||
ShopOrder::mk()->where(['order_no' => $orderNo])->update([
|
||||
'puid1' => $user['pid1'], 'puid2' => $user['pid2'],
|
||||
]);
|
||||
}
|
||||
// 重新计算用户等级
|
||||
UserUpgradeService::upgrade($user['id'], true, $orderNo);
|
||||
return [$user, $order, $entry];
|
||||
}
|
||||
|
||||
/**
|
||||
* 刷新用户入会礼包
|
||||
* @param integer $uuid 用户UID
|
||||
* @return integer
|
||||
*/
|
||||
private static function vipEntry(int $uuid): int
|
||||
{
|
||||
// 检查是否购买入会礼包
|
||||
$query = ShopOrder::mk()->alias('a')->join('shop_order_item b', 'a.order_no=b.order_no');
|
||||
$entry = $query->where("a.uuid={$uuid} and a.status>=4 and a.payment_status=1 and b.vip_entry>0")->count() ? 1 : 0;
|
||||
// 用户最后支付时间
|
||||
$lastMap = [['uuid', '=', $uuid], ['status', '>=', 4], ['payment_status', '=', 1]];
|
||||
$lastDate = ShopOrder::mk()->where($lastMap)->order('payment_datetime desc')->value('payment_datetime');
|
||||
// 更新用户支付信息
|
||||
DataUser::mk()->where(['id' => $uuid])->update(['buy_vip_entry' => $entry, 'buy_last_date' => $lastDate]);
|
||||
return $entry;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取等级折扣比例
|
||||
* @param int $disId 折扣方案ID
|
||||
* @param int $vipCode 等级序号
|
||||
* @param float $disRate 默认比例
|
||||
* @return array [方案编号, 折扣比例]
|
||||
*/
|
||||
public static function discount(int $disId, int $vipCode, float $disRate = 100.00): array
|
||||
{
|
||||
if ($disId > 0) {
|
||||
$map = ['id' => $disId, 'status' => 1, 'deleted' => 0];
|
||||
$discount = BaseUserDiscount::mk()->where($map)->value('items');
|
||||
$disitems = json_decode($discount ?: '[]', true) ?: [];
|
||||
if (is_array($disitems) && count($disitems) > 0) foreach ($disitems as $vo) {
|
||||
if ($vo['level'] == $vipCode) $disRate = floatval($vo['discount']);
|
||||
}
|
||||
}
|
||||
return [$disId, $disRate];
|
||||
}
|
||||
|
||||
/**
|
||||
* 绑定订单详情数据
|
||||
* @param array $data
|
||||
* @param boolean $from
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function buildData(array &$data = [], bool $from = true): array
|
||||
{
|
||||
if (empty($data)) return $data;
|
||||
// 关联发货信息
|
||||
$nobs = array_unique(array_column($data, 'order_no'));
|
||||
$trucks = ShopOrderSend::mk()->whereIn('order_no', $nobs)->column('*', 'order_no');
|
||||
foreach ($trucks as &$item) unset($item['id'], $item['uuid'], $item['status'], $item['deleted'], $item['create_at']);
|
||||
// 关联订单商品
|
||||
$query = ShopOrderItem::mk()->where(['status' => 1, 'deleted' => 0]);
|
||||
$items = $query->withoutField('id,uuid,status,deleted,create_at')->whereIn('order_no', $nobs)->select()->toArray();
|
||||
// 关联用户数据
|
||||
$fields = 'phone,username,nickname,headimg,status,vip_code,vip_name';
|
||||
UserAdminService::buildByUid($data, 'uuid', 'user', $fields);
|
||||
if ($from) UserAdminService::buildByUid($data, 'puid1', 'from', $fields);
|
||||
foreach ($data as &$vo) {
|
||||
[$vo['sales'], $vo['truck'], $vo['items']] = [0, $trucks[$vo['order_no']] ?? [], []];
|
||||
foreach ($items as $it) if ($vo['order_no'] === $it['order_no']) {
|
||||
$vo['sales'] += $it['stock_sales'];
|
||||
$vo['items'][] = $it;
|
||||
}
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
}
|
@ -1,390 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\BaseUserPayment;
|
||||
use app\data\model\DataUserPayment;
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\service\payment\AlipayPaymentService;
|
||||
use app\data\service\payment\BalancePaymentService;
|
||||
use app\data\service\payment\EmptyPaymentService;
|
||||
use app\data\service\payment\JoinpayPaymentService;
|
||||
use app\data\service\payment\VoucherPaymentService;
|
||||
use app\data\service\payment\WechatPaymentService;
|
||||
use think\admin\Exception;
|
||||
use think\admin\Library;
|
||||
use think\App;
|
||||
|
||||
/**
|
||||
* 支付基础服务
|
||||
* Class PaymentService
|
||||
* @package app\data\service
|
||||
*/
|
||||
abstract class PaymentService
|
||||
{
|
||||
|
||||
// 用户余额支付
|
||||
const PAYMENT_EMPTY = 'empty';
|
||||
const PAYMENT_BALANCE = 'balance';
|
||||
const PAYMENT_VOUCHER = 'voucher';
|
||||
|
||||
// 汇聚支付参数
|
||||
const PAYMENT_JOINPAY_GZH = 'joinpay_gzh';
|
||||
const PAYMENT_JOINPAY_XCX = 'joinpay_xcx';
|
||||
|
||||
// 微信商户支付
|
||||
const PAYMENT_WECHAT_APP = 'wechat_app';
|
||||
const PAYMENT_WECHAT_GZH = 'wechat_gzh';
|
||||
const PAYMENT_WECHAT_XCX = 'wechat_xcx';
|
||||
const PAYMENT_WECHAT_WAP = 'wechat_wap';
|
||||
const PAYMENT_WECHAT_QRC = 'wechat_qrc';
|
||||
|
||||
// 支付宝支付参数
|
||||
const PAYMENT_ALIAPY_APP = 'alipay_app';
|
||||
const PAYMENT_ALIPAY_WAP = 'alipay_wap';
|
||||
const PAYMENT_ALIPAY_WEB = 'alipay_web';
|
||||
|
||||
// 支付通道配置,不需要的可以注释
|
||||
const TYPES = [
|
||||
// 空支付,金额为零时自动完成支付
|
||||
self::PAYMENT_EMPTY => [
|
||||
'type' => 'EMPTY',
|
||||
'name' => '订单无需支付',
|
||||
'bind' => [],
|
||||
],
|
||||
// 余额支付,使用账号余额完成支付
|
||||
self::PAYMENT_BALANCE => [
|
||||
'type' => 'BALANCE',
|
||||
'name' => '账号余额支付',
|
||||
'bind' => [
|
||||
UserAdminService::API_TYPE_WAP, UserAdminService::API_TYPE_WEB,
|
||||
UserAdminService::API_TYPE_WXAPP, UserAdminService::API_TYPE_WECHAT,
|
||||
UserAdminService::API_TYPE_IOSAPP, UserAdminService::API_TYPE_ANDROID,
|
||||
],
|
||||
],
|
||||
// 凭证支付,上传凭证后台审核支付
|
||||
self::PAYMENT_VOUCHER => [
|
||||
'type' => 'VOUCHER',
|
||||
'name' => '单据凭证支付',
|
||||
'bind' => [
|
||||
UserAdminService::API_TYPE_WAP, UserAdminService::API_TYPE_WEB,
|
||||
UserAdminService::API_TYPE_WXAPP, UserAdminService::API_TYPE_WECHAT,
|
||||
UserAdminService::API_TYPE_IOSAPP, UserAdminService::API_TYPE_ANDROID,
|
||||
],
|
||||
],
|
||||
// 微信支付配置(不需要的直接注释)
|
||||
self::PAYMENT_WECHAT_WAP => [
|
||||
'type' => 'MWEB',
|
||||
'name' => '微信WAP支付',
|
||||
'bind' => [UserAdminService::API_TYPE_WAP],
|
||||
],
|
||||
self::PAYMENT_WECHAT_APP => [
|
||||
'type' => 'APP',
|
||||
'name' => '微信APP支付',
|
||||
'bind' => [UserAdminService::API_TYPE_IOSAPP, UserAdminService::API_TYPE_ANDROID],
|
||||
],
|
||||
self::PAYMENT_WECHAT_XCX => [
|
||||
'type' => 'JSAPI',
|
||||
'name' => '微信小程序支付',
|
||||
'bind' => [UserAdminService::API_TYPE_WXAPP],
|
||||
],
|
||||
self::PAYMENT_WECHAT_GZH => [
|
||||
'type' => 'JSAPI',
|
||||
'name' => '微信公众号支付',
|
||||
'bind' => [UserAdminService::API_TYPE_WECHAT],
|
||||
],
|
||||
self::PAYMENT_WECHAT_QRC => [
|
||||
'type' => 'NATIVE',
|
||||
'name' => '微信二维码支付',
|
||||
'bind' => [UserAdminService::API_TYPE_WEB],
|
||||
],
|
||||
// 支付宝支持配置(不需要的直接注释)
|
||||
self::PAYMENT_ALIPAY_WAP => [
|
||||
'type' => '',
|
||||
'name' => '支付宝WAP支付',
|
||||
'bind' => [UserAdminService::API_TYPE_WAP],
|
||||
],
|
||||
self::PAYMENT_ALIPAY_WEB => [
|
||||
'type' => '',
|
||||
'name' => '支付宝WEB支付',
|
||||
'bind' => [UserAdminService::API_TYPE_WEB],
|
||||
],
|
||||
self::PAYMENT_ALIAPY_APP => [
|
||||
'type' => '',
|
||||
'name' => '支付宝APP支付',
|
||||
'bind' => [UserAdminService::API_TYPE_ANDROID, UserAdminService::API_TYPE_IOSAPP],
|
||||
],
|
||||
// 汇聚支持配置(不需要的直接注释)
|
||||
self::PAYMENT_JOINPAY_XCX => [
|
||||
'type' => 'WEIXIN_XCX',
|
||||
'name' => '汇聚小程序支付',
|
||||
'bind' => [UserAdminService::API_TYPE_WXAPP],
|
||||
],
|
||||
self::PAYMENT_JOINPAY_GZH => [
|
||||
'type' => 'WEIXIN_GZH',
|
||||
'name' => '汇聚公众号支付',
|
||||
'bind' => [UserAdminService::API_TYPE_WECHAT],
|
||||
],
|
||||
];
|
||||
/**
|
||||
* 支付服务对象
|
||||
* @var array
|
||||
*/
|
||||
protected static $driver = [];
|
||||
/**
|
||||
* 当前应用
|
||||
* @var App
|
||||
*/
|
||||
protected $app;
|
||||
/**
|
||||
* 支付参数编号
|
||||
* @var string
|
||||
*/
|
||||
protected $code;
|
||||
/**
|
||||
* 默认支付类型
|
||||
* @var string
|
||||
*/
|
||||
protected $type;
|
||||
/**
|
||||
* 当前支付参数
|
||||
* @var array
|
||||
*/
|
||||
protected $params;
|
||||
|
||||
/**
|
||||
* PaymentService constructor.
|
||||
* @param App $app 当前应用对象
|
||||
* @param string $code 支付参数编号
|
||||
* @param string $type 支付类型代码
|
||||
* @param array $params 支付参数配置
|
||||
*/
|
||||
public function __construct(App $app, string $code, string $type, array $params)
|
||||
{
|
||||
[$this->app, $this->code, $this->type, $this->params] = [$app, $code, $type, $params];
|
||||
if (method_exists($this, 'initialize')) $this->initialize();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据配置实例支付服务
|
||||
* @param string $code 支付配置编号
|
||||
* @return PaymentService
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
public static function instance(string $code): PaymentService
|
||||
{
|
||||
if ($code === 'empty') {
|
||||
$vars = ['code' => 'empty', 'type' => 'empty', 'params' => []];
|
||||
return static::$driver[$code] = Library::$sapp->make(EmptyPaymentService::class, $vars);
|
||||
}
|
||||
[, $type, $params] = self::config($code);
|
||||
if (isset(static::$driver[$code])) return static::$driver[$code];
|
||||
$vars = ['code' => $code, 'type' => $type, 'params' => $params];
|
||||
// 实例化具体支付参数类型
|
||||
if (stripos($type, 'balance') === 0) {
|
||||
return static::$driver[$code] = Library::$sapp->make(BalancePaymentService::class, $vars);
|
||||
} elseif (stripos($type, 'voucher') === 0) {
|
||||
return static::$driver[$code] = Library::$sapp->make(VoucherPaymentService::class, $vars);
|
||||
} elseif (stripos($type, 'alipay_') === 0) {
|
||||
return static::$driver[$code] = Library::$sapp->make(AlipayPaymentService::class, $vars);
|
||||
} elseif (stripos($type, 'wechat_') === 0) {
|
||||
return static::$driver[$code] = Library::$sapp->make(WechatPaymentService::class, $vars);
|
||||
} elseif (stripos($type, 'joinpay_') === 0) {
|
||||
return static::$driver[$code] = Library::$sapp->make(JoinpayPaymentService::class, $vars);
|
||||
} else {
|
||||
throw new Exception(sprintf('支付驱动[%s]未定义', $type));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取支付配置参数
|
||||
* @param string $code
|
||||
* @param array $payment
|
||||
* @return array [code, type, params]
|
||||
* @throws Exception
|
||||
*/
|
||||
public static function config(string $code, array $payment = []): array
|
||||
{
|
||||
try {
|
||||
if (empty($payment)) {
|
||||
$map = ['code' => $code, 'status' => 1, 'deleted' => 0];
|
||||
$payment = BaseUserPayment::mk()->where($map)->find();
|
||||
}
|
||||
if (empty($payment)) {
|
||||
throw new Exception("支付参数[#{$code}]禁用关闭");
|
||||
}
|
||||
$params = @json_decode($payment['content'], true);
|
||||
if (empty($params)) {
|
||||
throw new Exception("支付参数[#{$code}]配置无效");
|
||||
}
|
||||
if (empty(static::TYPES[$payment['type']])) {
|
||||
throw new Exception("支付参数[@{$payment['type']}]匹配失败");
|
||||
}
|
||||
return [$payment['code'], $payment['type'], $params];
|
||||
} catch (\Exception $exception) {
|
||||
throw new Exception($exception->getMessage(), $exception->getCode());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取支付支付名称
|
||||
* @param string $type
|
||||
* @return string
|
||||
*/
|
||||
public static function name(string $type): string
|
||||
{
|
||||
return static::TYPES[$type]['name'] ?? $type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取支付类型
|
||||
* @param array $types 默认返回支付
|
||||
* @return array
|
||||
*/
|
||||
public static function getTypeAll(array $types = []): array
|
||||
{
|
||||
$binds = array_keys(UserAdminService::TYPES);
|
||||
foreach (static::TYPES as $k => $v) if (isset($v['bind'])) {
|
||||
if (array_intersect($v['bind'], $binds)) $types[$k] = $v;
|
||||
}
|
||||
return $types;
|
||||
}
|
||||
|
||||
/**
|
||||
* 筛选可用的支付类型
|
||||
* @param string $api 指定接口类型
|
||||
* @param array $types 默认返回支付
|
||||
* @return array
|
||||
*/
|
||||
public static function getTypeApi(string $api = '', array $types = []): array
|
||||
{
|
||||
foreach (self::TYPES as $type => $attr) {
|
||||
if (in_array($api, $attr['bind'])) $types[] = $type;
|
||||
}
|
||||
return array_unique($types);
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单主动查询
|
||||
* @param string $orderNo
|
||||
* @return array
|
||||
*/
|
||||
abstract public function query(string $orderNo): array;
|
||||
|
||||
/**
|
||||
* 支付通知处理
|
||||
* @return string
|
||||
*/
|
||||
abstract public function notify(): string;
|
||||
|
||||
/**
|
||||
* 创建支付订单
|
||||
* @param string $openid 用户OPENID
|
||||
* @param string $orderNo 交易订单单号
|
||||
* @param string $payAmount 交易订单金额(元)
|
||||
* @param string $payTitle 交易订单名称
|
||||
* @param string $payRemark 交易订单描述
|
||||
* @param string $payReturn 支付回跳地址
|
||||
* @param string $payImage 支付凭证图片
|
||||
* @return array
|
||||
*/
|
||||
abstract public function create(string $openid, string $orderNo, string $payAmount, string $payTitle, string $payRemark, string $payReturn = '', string $payImage = ''): array;
|
||||
|
||||
/**
|
||||
* 创建支付行为
|
||||
* @param string $orderNo 商户订单单号
|
||||
* @param string $payTitle 商户订单标题
|
||||
* @param string $payAmount 需要支付金额
|
||||
*/
|
||||
protected function createPaymentAction(string $orderNo, string $payTitle, string $payAmount)
|
||||
{
|
||||
DataUserPayment::mk()->insert([
|
||||
'payment_code' => $this->code,
|
||||
'payment_type' => $this->type,
|
||||
'order_no' => $orderNo,
|
||||
'order_name' => $payTitle,
|
||||
'order_amount' => $payAmount,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新支付记录并更新订单
|
||||
* @param string $orderNo 商户订单单号
|
||||
* @param string $payTrade 平台交易单号
|
||||
* @param string $payAmount 实际到账金额
|
||||
* @param string $payRemark 平台支付备注
|
||||
* @return boolean
|
||||
*/
|
||||
protected function updatePaymentAction(string $orderNo, string $payTrade, string $payAmount, string $payRemark = '在线支付'): bool
|
||||
{
|
||||
// 更新支付记录
|
||||
DataUserPayment::mUpdate([
|
||||
'order_no' => $orderNo,
|
||||
'payment_code' => $this->code,
|
||||
'payment_type' => $this->type,
|
||||
'payment_trade' => $payTrade,
|
||||
'payment_amount' => $payAmount,
|
||||
'payment_status' => 1,
|
||||
'payment_datetime' => date('Y-m-d H:i:s'),
|
||||
], 'order_no', [
|
||||
'payment_code' => $this->code,
|
||||
'payment_type' => $this->type,
|
||||
]);
|
||||
// 更新记录状态
|
||||
return $this->updatePaymentOrder($orderNo, $payTrade, $payAmount, $payRemark);
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单支付更新操作
|
||||
* @param string $orderNo 订单单号
|
||||
* @param string $payTrade 交易单号
|
||||
* @param string $payAmount 支付金额
|
||||
* @param string $payRemark 支付描述
|
||||
* @param string $payImage 支付凭证
|
||||
* @return boolean
|
||||
*/
|
||||
protected function updatePaymentOrder(string $orderNo, string $payTrade, string $payAmount, string $payRemark = '在线支付', string $payImage = ''): bool
|
||||
{
|
||||
$map = ['status' => 2, 'order_no' => $orderNo, 'payment_status' => 0];
|
||||
$order = ShopOrder::mk()->where($map)->findOrEmpty();
|
||||
if ($order->isEmpty()) return false;
|
||||
// 检查订单支付状态
|
||||
if ($this->type === self::PAYMENT_VOUCHER) {
|
||||
$status = 3; # 凭证支付需要审核
|
||||
} elseif (empty($order['truck_type'])) {
|
||||
$status = 6; # 虚拟订单直接完成
|
||||
} else {
|
||||
$status = 4; # 实物订单需要发货
|
||||
}
|
||||
// 更新订单支付状态
|
||||
$order['status'] = $status;
|
||||
$order['payment_code'] = $this->code;
|
||||
$order['payment_type'] = $this->type;
|
||||
$order['payment_trade'] = $payTrade;
|
||||
$order['payment_image'] = $payImage;
|
||||
$order['payment_amount'] = $payAmount;
|
||||
$order['payment_remark'] = $payRemark;
|
||||
$order['payment_status'] = 1;
|
||||
$order['payment_datetime'] = date('Y-m-d H:i:s');
|
||||
$order->save();
|
||||
// 触发订单更新事件
|
||||
if ($status >= 4) {
|
||||
$this->app->event->trigger('ShopOrderPayment', $orderNo);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
@ -1,474 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\BaseUserDiscount;
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserRebate;
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\model\ShopOrderItem;
|
||||
use think\admin\Exception;
|
||||
use think\admin\extend\CodeExtend;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 系统实时返利服务
|
||||
* Class RebateService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class RebateService extends Service
|
||||
{
|
||||
const PRIZE_01 = 'PRIZE01';
|
||||
const PRIZE_02 = 'PRIZE02';
|
||||
const PRIZE_03 = 'PRIZE03';
|
||||
const PRIZE_04 = 'PRIZE04';
|
||||
const PRIZE_05 = 'PRIZE05';
|
||||
const PRIZE_06 = 'PRIZE06';
|
||||
const PRIZE_07 = 'PRIZE07';
|
||||
const PRIZE_08 = 'PRIZE08';
|
||||
|
||||
const PRIZES = [
|
||||
self::PRIZE_01 => ['code' => self::PRIZE_01, 'name' => '首推奖励', 'func' => '_prize01'],
|
||||
self::PRIZE_02 => ['code' => self::PRIZE_02, 'name' => '复购奖励', 'func' => '_prize02'],
|
||||
self::PRIZE_03 => ['code' => self::PRIZE_03, 'name' => '直属团队', 'func' => '_prize03'],
|
||||
self::PRIZE_04 => ['code' => self::PRIZE_04, 'name' => '间接团队', 'func' => '_prize04'],
|
||||
self::PRIZE_05 => ['code' => self::PRIZE_05, 'name' => '差额奖励', 'func' => '_prize05'],
|
||||
self::PRIZE_06 => ['code' => self::PRIZE_06, 'name' => '管理奖励', 'func' => '_prize06'],
|
||||
self::PRIZE_07 => ['code' => self::PRIZE_07, 'name' => '升级奖励', 'func' => '_prize07'],
|
||||
self::PRIZE_08 => ['code' => self::PRIZE_08, 'name' => '平推返利', 'func' => '_prize08'],
|
||||
];
|
||||
|
||||
/**
|
||||
* 用户数据
|
||||
* @var array
|
||||
*/
|
||||
protected $user;
|
||||
|
||||
/**
|
||||
* 订单数据
|
||||
* @var array
|
||||
*/
|
||||
protected $order;
|
||||
|
||||
/**
|
||||
* 奖励到账时机
|
||||
* @var integer
|
||||
*/
|
||||
protected $status;
|
||||
|
||||
/**
|
||||
* 推荐用户
|
||||
* @var array
|
||||
*/
|
||||
protected $from1;
|
||||
protected $from2;
|
||||
|
||||
/**
|
||||
* 执行订单返利处理
|
||||
* @param string $orderNo
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function execute(string $orderNo)
|
||||
{
|
||||
// 获取订单数据
|
||||
$map = ['order_no' => $orderNo, 'payment_status' => 1];
|
||||
$this->order = ShopOrder::mk()->where($map)->findOrEmpty();
|
||||
if ($this->order->isEmpty()) throw new Exception('订单不存在');
|
||||
if ($this->order['payment_type'] === 'balance') return;
|
||||
if ($this->order['amount_total'] <= 0) throw new Exception('订单金额为零');
|
||||
if ($this->order['rebate_amount'] <= 0) throw new Exception('订单返利为零');
|
||||
// 获取用户数据
|
||||
$map = ['id' => $this->order['uuid'], 'deleted' => 0];
|
||||
$this->user = DataUser::mk()->where($map)->findOrEmpty();
|
||||
if ($this->user->isEmpty()) throw new Exception('用户不存在');
|
||||
// 获取直接代理数据
|
||||
if ($this->order['puid1'] > 0) {
|
||||
$this->from1 = DataUser::mk()->find($this->order['puid1']);
|
||||
if (empty($this->from1)) throw new Exception('直接代理不存在');
|
||||
}
|
||||
// 获取间接代理数据
|
||||
if ($this->order['puid2'] > 0) {
|
||||
$this->from2 = DataUser::mk()->find($this->order['puid2']);
|
||||
if (empty($this->from2)) throw new Exception('间接代理不存在');
|
||||
}
|
||||
// 批量发放配置奖励
|
||||
foreach (self::PRIZES as $vo) if (method_exists($this, $vo['func'])) {
|
||||
$this->app->log->notice("订单 {$orderNo} 开始发放 [{$vo['func']}] {$vo['name']}");
|
||||
$this->{$vo['func']}();
|
||||
$this->app->log->notice("订单 {$orderNo} 完成发放 [{$vo['func']}] {$vo['name']}");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 返利服务初始化
|
||||
* @return void
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function initialize()
|
||||
{
|
||||
// 返利奖励到账时机
|
||||
// settl_type 为 1 支付后立即到账
|
||||
// settl_type 为 2 确认后立即到账
|
||||
$this->status = $this->config('settl_type') > 1 ? 0 : 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取配置数据
|
||||
* @param ?string $name 配置名称
|
||||
* @return array|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function config(?string $name = null)
|
||||
{
|
||||
static $data = [];
|
||||
if (empty($data)) $data = sysdata('RebateRule');
|
||||
return is_null($name) ? $data : ($data[$name] ?? '');
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户首推奖励
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _prize01(): bool
|
||||
{
|
||||
if (empty($this->from1)) return false;
|
||||
$map = ['order_uuid' => $this->user['id']];
|
||||
if (DataUserRebate::mk()->where($map)->count() > 0) return false;
|
||||
if (!$this->checkPrizeStatus(self::PRIZE_01, $this->from1['vip_code'])) return false;
|
||||
// 创建返利奖励记录
|
||||
$key = "{$this->from1['vip_code']}_{$this->user['vip_code']}";
|
||||
$map = ['type' => self::PRIZE_01, 'order_no' => $this->order['order_no'], 'order_uuid' => $this->order['uuid']];
|
||||
if ($this->config("frist_state_vip_{$key}") && DataUserRebate::mk()->where($map)->count() < 1) {
|
||||
$value = $this->config("frist_value_vip_{$key}");
|
||||
if ($this->config("frist_type_vip_{$key}") == 1) {
|
||||
$val = floatval($value ?: '0.00');
|
||||
$name = "{$this->name(self::PRIZE_01)},每单 {$val} 元";
|
||||
} else {
|
||||
$val = floatval($value * $this->order['rebate_amount'] / 100);
|
||||
$name = "{$this->name(self::PRIZE_01)},订单 {$value}%";
|
||||
}
|
||||
// 写入返利记录
|
||||
$this->writeRabate($this->from1['id'], $map, $name, $val);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 用户复购奖励
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _prize02(): bool
|
||||
{
|
||||
$map = [];
|
||||
$map[] = ['order_uuid', '=', $this->user['id']];
|
||||
$map[] = ['order_no', '<>', $this->order['order_no']];
|
||||
if (DataUserRebate::mk()->where($map)->count() < 1) return false;
|
||||
// 检查上级可否奖励
|
||||
if (empty($this->from1) || empty($this->from1['vip_code'])) return false;
|
||||
if (!$this->checkPrizeStatus(self::PRIZE_02, $this->from1['vip_code'])) return false;
|
||||
// 创建返利奖励记录
|
||||
$key = "vip_{$this->from1['vip_code']}_{$this->user['vip_code']}";
|
||||
$map = ['type' => self::PRIZE_02, 'order_no' => $this->order['order_no'], 'order_uuid' => $this->order['uuid']];
|
||||
if ($this->config("repeat_state_{$key}") && DataUserRebate::mk()->where($map)->count() < 1) {
|
||||
$value = $this->config("repeat_value_{$key}");
|
||||
if ($this->config("repeat_type_{$key}") == 1) {
|
||||
$val = floatval($value ?: '0.00');
|
||||
$name = "{$this->name(self::PRIZE_02)},每人 {$val} 元";
|
||||
} else {
|
||||
$val = floatval($value * $this->order['rebate_amount'] / 100);
|
||||
$name = "{$this->name(self::PRIZE_02)},订单 {$value}%";
|
||||
}
|
||||
// 写入返利记录
|
||||
$this->writeRabate($this->from1['id'], $map, $name, $val);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户直属团队
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function _prize03(): bool
|
||||
{
|
||||
if (empty($this->from1)) return false;
|
||||
if (!$this->checkPrizeStatus(self::PRIZE_03, $this->from1['vip_code'])) return false;
|
||||
// 创建返利奖励记录
|
||||
$key = "{$this->user['vip_code']}";
|
||||
$map = ['type' => self::PRIZE_03, 'order_no' => $this->order['order_no'], 'order_uuid' => $this->order['uuid']];
|
||||
if ($this->config("direct_state_vip_{$key}") && DataUserRebate::mk()->where($map)->count() < 1) {
|
||||
$value = $this->config("direct_value_vip_{$key}");
|
||||
if ($this->config("direct_type_vip_{$key}") == 1) {
|
||||
$val = floatval($value ?: '0.00');
|
||||
$name = "{$this->name(self::PRIZE_03)},每人 {$val} 元";
|
||||
} else {
|
||||
$val = floatval($value * $this->order['rebate_amount'] / 100);
|
||||
$name = "{$this->name(self::PRIZE_03)},订单 {$value}%";
|
||||
}
|
||||
// 写入返利记录
|
||||
$this->writeRabate($this->from1['id'], $map, $name, $val);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户间接团队
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function _prize04(): bool
|
||||
{
|
||||
if (empty($this->from2)) return false;
|
||||
if (!$this->checkPrizeStatus(self::PRIZE_04, $this->from2['vip_code'])) return false;
|
||||
$key = "{$this->user['vip_code']}";
|
||||
$map = ['type' => self::PRIZE_04, 'order_no' => $this->order['order_no'], 'order_uuid' => $this->order['uuid']];
|
||||
if ($this->config("indirect_state_vip_{$key}") && DataUserRebate::mk()->where($map)->count() < 1) {
|
||||
$value = $this->config("indirect_value_vip_{$key}");
|
||||
if ($this->config("indirect_type_vip_{$key}") == 1) {
|
||||
$val = floatval($value ?: '0.00');
|
||||
$name = "{$this->name(self::PRIZE_03)},每人 {$val} 元";
|
||||
} else {
|
||||
$val = floatval($value * $this->order['rebate_amount'] / 100);
|
||||
$name = "{$this->name(self::PRIZE_03)},订单 {$value}%";
|
||||
}
|
||||
// 写入返利记录
|
||||
$this->writeRabate($this->from2['id'], $map, $name, $val);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户差额奖励
|
||||
* @return false
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function _prize05(): bool
|
||||
{
|
||||
$puids = array_reverse(str2arr($this->user['path'], '-'));
|
||||
if (empty($puids) || $this->order['amount_total'] <= 0) return false;
|
||||
// 获取可以参与奖励的代理
|
||||
$vips = BaseUserUpgrade::mk()->whereLike('rebate_rule', '%,' . self::PRIZE_05 . ',%')->column('number');
|
||||
$users = DataUser::mk()->whereIn('vip_code', $vips)->whereIn('id', $puids)->orderField('id', $puids)->select()->toArray();
|
||||
if (empty($vips) || empty($users)) return true;
|
||||
// 查询需要计算奖励的商品
|
||||
foreach (ShopOrderItem::mk()->where(['order_no' => $this->order['order_no']])->cursor() as $item) {
|
||||
if ($item['discount_id'] > 0 && $item['rebate_type'] === 1) {
|
||||
[$tVip, $tRate] = [$item['vip_code'], $item['discount_rate']];
|
||||
$map = ['id' => $item['discount_id'], 'status' => 1, 'deleted' => 0];
|
||||
$rules = json_decode(BaseUserDiscount::mk()->where($map)->value('items', '[]'), true);
|
||||
foreach ($users as $user) if (isset($rules[$user['vip_code']]) && $user['vip_code'] > $tVip) {
|
||||
if (($rule = $rules[$user['vip_code']]) && $tRate > $rule['discount']) {
|
||||
$map = ['uuid' => $user['id'], 'type' => self::PRIZE_05, 'order_no' => $this->order['order_no']];
|
||||
if (DataUserRebate::mk()->where($map)->count() < 1) {
|
||||
$dRate = ($rate = $tRate - $rule['discount']) / 100;
|
||||
$name = "等级差额奖励{$tVip}#{$user['vip_code']}商品原价{$item['total_selling']}元的{$rate}%";
|
||||
$amount = $dRate * $item['total_selling'];
|
||||
// 写入用户返利记录
|
||||
$this->writeRabate($user['id'], $map, $name, $amount);
|
||||
}
|
||||
[$tVip, $tRate] = [$user['vip_code'], $rule['discount']];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户管理奖励发放
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function _prize06(): bool
|
||||
{
|
||||
$puids = array_reverse(str2arr($this->user['path'], '-'));
|
||||
if (empty($puids) || $this->order['amount_total'] <= 0) return false;
|
||||
// 记录用户原始等级
|
||||
$prevLevel = $this->user['vip_code'];
|
||||
// 获取参与奖励的代理
|
||||
$vips = BaseUserUpgrade::mk()->whereLike('rebate_rule', '%,' . self::PRIZE_06 . ',%')->column('number');
|
||||
foreach (DataUser::mk()->whereIn('vip_code', $vips)->whereIn('id', $puids)->orderField('id', $puids)->cursor() as $user) {
|
||||
if ($user['vip_code'] > $prevLevel) {
|
||||
if (($amount = $this->_prize06amount($prevLevel + 1, $user['vip_code'])) > 0.00) {
|
||||
$map = ['uuid' => $user['id'], 'type' => self::PRIZE_06, 'order_no' => $this->order['order_no']];
|
||||
if (DataUserRebate::mk()->where($map)->count() < 1) {
|
||||
$name = "{$this->name(self::PRIZE_06)},[ VIP{$prevLevel} > VIP{$user['vip_code']} ] 每单 {$amount} 元";
|
||||
$this->writeRabate($user['id'], $map, $name, $amount);
|
||||
}
|
||||
}
|
||||
$prevLevel = $user['vip_code'];
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 计算两等级之间的管理奖差异
|
||||
* @param integer $prevLevel 上个等级
|
||||
* @param integer $nextLevel 下个等级
|
||||
* @return float
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function _prize06amount(int $prevLevel, int $nextLevel): float
|
||||
{
|
||||
if ($this->config("manage_type_vip_{$nextLevel}") == 2) {
|
||||
$amount = 0.00;
|
||||
foreach (range($prevLevel, $nextLevel) as $level) {
|
||||
[$state, $value] = [$this->config("manage_state_vip_{$level}"), $this->config("manage_value_vip_{$level}")];
|
||||
if ($state && $value > 0) $amount += $value;
|
||||
}
|
||||
return floatval($amount);
|
||||
} elseif ($this->config("manage_state_vip_{$nextLevel}")) {
|
||||
return floatval($this->config("manage_value_vip_{$nextLevel}"));
|
||||
} else {
|
||||
return floatval(0);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户升级奖励发放
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
private function _prize07(): bool
|
||||
{
|
||||
if (empty($this->from1)) return false;
|
||||
if ($this->order['order_no'] !== $this->user['vip_order']) return false;
|
||||
if (!$this->checkPrizeStatus(self::PRIZE_07, $this->from1['vip_code'])) return false;
|
||||
// 创建返利奖励记录
|
||||
$vip = "{$this->user['vip_code']}";
|
||||
$map = ['type' => self::PRIZE_07, 'order_no' => $this->order['order_no'], 'order_uuid' => $this->order['uuid']];
|
||||
if ($this->config("upgrade_state_vip_{$vip}") && DataUserRebate::mk()->where($map)->count() < 1) {
|
||||
$value = $this->config("upgrade_value_vip_{$vip}");
|
||||
if ($this->config("upgrade_type_vip_{$vip}") == 1) {
|
||||
$val = floatval($value ?: '0.00');
|
||||
$name = "{$this->name(self::PRIZE_07)},每人 {$val} 元";
|
||||
} else {
|
||||
$val = floatval($value * $this->order['rebate_amount'] / 100);
|
||||
$name = "{$this->name(self::PRIZE_07)},订单 {$value}%";
|
||||
}
|
||||
// 写入返利记录
|
||||
$this->writeRabate($this->from1['id'], $map, $name, $val);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户平推奖励发放
|
||||
* @return boolean
|
||||
*/
|
||||
private function _prize08(): bool
|
||||
{
|
||||
if (empty($this->from1)) return false;
|
||||
$map = ['vip_code' => $this->user['vip_code']];
|
||||
$uuids = array_reverse(str2arr(trim($this->user['path'], '-'), '-'));
|
||||
$puids = DataUser::mk()->whereIn('id', $uuids)->orderField('id', $uuids)->where($map)->column('id');
|
||||
if (count($puids) < 2) return false;
|
||||
|
||||
$this->app->db->transaction(function () use ($puids, $map) {
|
||||
foreach ($puids as $key => $puid) {
|
||||
// 最多两层
|
||||
if (($layer = $key + 1) > 2) break;
|
||||
// 检查重复
|
||||
$map = ['uuid' => $puid, 'type' => self::PRIZE_08, 'order_no' => $this->order['order_no']];
|
||||
if (DataUserRebate::mk()->where($map)->count() < 1) {
|
||||
// 返利比例
|
||||
$rate = $this->config("equal_value_vip_{$layer}_{$this->user['vip_code']}");
|
||||
// 返利金额
|
||||
$money = floatval($rate * $this->order['rebate_amount'] / 100);
|
||||
$name = "{$this->name(self::PRIZE_08)}, 返回订单的 {$rate}%";
|
||||
// 写入返利
|
||||
$this->writeRabate($puid, $map, $name, $money);
|
||||
}
|
||||
}
|
||||
});
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取奖励名称
|
||||
* @param string $prize
|
||||
* @return string
|
||||
*/
|
||||
public static function name(string $prize): string
|
||||
{
|
||||
return self::PRIZES[$prize]['name'] ?? $prize;
|
||||
}
|
||||
|
||||
/**
|
||||
* 检查等级是否有奖励
|
||||
* @param string $prize 奖励规则
|
||||
* @param integer $level 用户等级
|
||||
* @return boolean
|
||||
*/
|
||||
private function checkPrizeStatus(string $prize, int $level): bool
|
||||
{
|
||||
$query = BaseUserUpgrade::mk()->where(['number' => $level]);
|
||||
return $query->whereLike('rebate_rule', "%,{$prize},%")->count() > 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 写返利记录
|
||||
* @param int $uuid 奖励用户
|
||||
* @param array $map 查询条件
|
||||
* @param string $name 奖励名称
|
||||
* @param float $amount 奖励金额
|
||||
*/
|
||||
private function writeRabate(int $uuid, array $map, string $name, float $amount)
|
||||
{
|
||||
DataUserRebate::mk()->insert(array_merge($map, [
|
||||
'uuid' => $uuid,
|
||||
'date' => date('Y-m-d'),
|
||||
'code' => CodeExtend::uniqidDate(20, 'R'),
|
||||
'name' => $name,
|
||||
'amount' => $amount,
|
||||
'status' => $this->status,
|
||||
'order_no' => $this->order['order_no'],
|
||||
'order_uuid' => $this->order['uuid'],
|
||||
'order_amount' => $this->order['amount_total'],
|
||||
]));
|
||||
// 刷新用户返利统计
|
||||
UserRebateService::amount($uuid);
|
||||
}
|
||||
}
|
@ -1,156 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserToken;
|
||||
use think\admin\Exception;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 用户数据管理服务
|
||||
* Class UserAdminService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class UserAdminService extends Service
|
||||
{
|
||||
const API_TYPE_WAP = 'wap';
|
||||
const API_TYPE_WEB = 'web';
|
||||
const API_TYPE_WXAPP = 'wxapp';
|
||||
const API_TYPE_WECHAT = 'wechat';
|
||||
const API_TYPE_IOSAPP = 'iosapp';
|
||||
const API_TYPE_ANDROID = 'android';
|
||||
|
||||
const TYPES = [
|
||||
// 接口支付配置(不需要的直接注释)
|
||||
self::API_TYPE_WAP => [
|
||||
'name' => '手机浏览器',
|
||||
'auth' => 'phone',
|
||||
],
|
||||
self::API_TYPE_WEB => [
|
||||
'name' => '电脑浏览器',
|
||||
'auth' => 'phone',
|
||||
],
|
||||
self::API_TYPE_WXAPP => [
|
||||
'name' => '微信小程序',
|
||||
'auth' => 'openid1',
|
||||
],
|
||||
self::API_TYPE_WECHAT => [
|
||||
'name' => '微信服务号',
|
||||
'auth' => 'openid2',
|
||||
],
|
||||
self::API_TYPE_IOSAPP => [
|
||||
'name' => '苹果APP应用',
|
||||
'auth' => 'phone',
|
||||
],
|
||||
self::API_TYPE_ANDROID => [
|
||||
'name' => '安卓APP应用',
|
||||
'auth' => 'phone',
|
||||
],
|
||||
];
|
||||
|
||||
/**
|
||||
* 更新用户用户参数
|
||||
* @param mixed $map 查询条件
|
||||
* @param array $data 更新数据
|
||||
* @param string $type 接口类型
|
||||
* @param boolean $force 强刷令牌
|
||||
* @return array
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public static function set($map, array $data, string $type, bool $force = false): array
|
||||
{
|
||||
unset($data['id'], $data['deleted'], $data['create_at']);
|
||||
$user = DataUser::mk()->where($map)->where(['deleted' => 0])->findOrEmpty();
|
||||
if (!$user->save($data)) throw new Exception("更新用户资料失败!");
|
||||
// 刷新用户认证令牌
|
||||
if ($force) UserTokenService::token($user['id'], $type);
|
||||
// 返回当前用户资料
|
||||
return static::get($user['id'], $type);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户数据
|
||||
* @param integer $uuid 用户UID
|
||||
* @param string $type 接口类型
|
||||
* @return array
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function get(int $uuid, string $type): array
|
||||
{
|
||||
$map = ['id' => $uuid, 'deleted' => 0];
|
||||
$user = DataUser::mk()->where($map)->findOrEmpty();
|
||||
if ($user->isEmpty()) throw new Exception('用户还没有注册!');
|
||||
// 用户认证令牌处理
|
||||
$map = ['uuid' => $uuid, 'type' => $type];
|
||||
if (!($access = DataUserToken::mk()->where($map)->find())) {
|
||||
[$state, $message, $access] = UserTokenService::token($uuid, $type);
|
||||
if (empty($state) || empty($access)) throw new Exception($message);
|
||||
}
|
||||
$user['token'] = ['token' => $access['token'], 'expire' => $access['time']];
|
||||
return $user->hidden(['deleted', 'password'])->toArray();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户数据统计
|
||||
* @param int $uuid 用户UID
|
||||
* @return array
|
||||
*/
|
||||
public static function total(int $uuid): array
|
||||
{
|
||||
return ['my_invite' => DataUser::mk()->where(['pid1' => $uuid])->count()];
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户查询条件
|
||||
* @param string $field 认证字段
|
||||
* @param string $openid 用户OPENID值
|
||||
* @param string $unionid 用户UNIONID值
|
||||
* @return array
|
||||
*/
|
||||
public static function getUserUniMap(string $field, string $openid, string $unionid = ''): array
|
||||
{
|
||||
if (!empty($unionid)) {
|
||||
[$map1, $map2] = [[['unionid', '=', $unionid]], [[$field, '=', $openid]]];
|
||||
if ($uuid = DataUser::mk()->whereOr([$map1, $map2])->value('id')) {
|
||||
return ['id' => $uuid];
|
||||
}
|
||||
}
|
||||
return [$field => $openid];
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表绑定用户数据
|
||||
* @param array $list 原数据列表
|
||||
* @param string $keys 用户UID字段
|
||||
* @param string $bind 绑定字段名称
|
||||
* @param string $cols 返回用户字段
|
||||
* @return array
|
||||
*/
|
||||
public static function buildByUid(array &$list, string $keys = 'uuid', string $bind = 'user', string $cols = '*'): array
|
||||
{
|
||||
if (count($list) < 1) return $list;
|
||||
$uids = array_unique(array_column($list, $keys));
|
||||
$users = DataUser::mk()->whereIn('id', $uids)->column($cols, 'id');
|
||||
foreach ($list as &$vo) $vo[$bind] = $users[$vo[$keys]] ?? [];
|
||||
return $list;
|
||||
}
|
||||
}
|
@ -1,80 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserBalance;
|
||||
use app\data\model\ShopOrder;
|
||||
use think\admin\Exception;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 用户余额数据服务
|
||||
* Class UserBalanceService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class UserBalanceService extends Service
|
||||
{
|
||||
|
||||
/**
|
||||
* 验证订单发放余额
|
||||
* @param string $orderNo
|
||||
* @return array [total, count]
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function confirm(string $orderNo): array
|
||||
{
|
||||
$order = ShopOrder::mk()->where([['status', '>=', 4], ['order_no', '=', $orderNo]])->find();
|
||||
if (empty($order)) throw new Exception('需处理的订单状态异常');
|
||||
|
||||
if ($order['reward_balance'] > 0) DataUserBalance::mUpdate([
|
||||
'uuid' => $order['uuid'],
|
||||
'code' => "CZ{$order['order_no']}",
|
||||
'name' => "订单余额充值",
|
||||
'remark' => "来自订单 {$order['order_no']} 的余额充值 {$order['reward_balance']} 元",
|
||||
'amount' => $order['reward_balance'],
|
||||
], 'code');
|
||||
|
||||
return static::amount($order['uuid']);
|
||||
}
|
||||
|
||||
/**
|
||||
* 同步刷新用户余额
|
||||
* @param int $uuid 用户UID
|
||||
* @param array $nots 排除的订单
|
||||
* @return array [total, count]
|
||||
*/
|
||||
public static function amount(int $uuid, array $nots = []): array
|
||||
{
|
||||
if ($uuid > 0) {
|
||||
$total = abs(DataUserBalance::mk()->whereRaw("uuid='{$uuid}' and amount>0 and deleted=0")->sum('amount'));
|
||||
$count = abs(DataUserBalance::mk()->whereRaw("uuid='{$uuid}' and amount<0 and deleted=0")->sum('amount'));
|
||||
if (empty($nots)) {
|
||||
DataUser::mk()->where(['id' => $uuid])->update(['balance_total' => $total, 'balance_used' => $count]);
|
||||
} else {
|
||||
$count -= DataUserBalance::mk()->whereRaw("uuid={$uuid}")->whereIn('code', $nots)->sum('amount');
|
||||
}
|
||||
} else {
|
||||
$total = abs(DataUserBalance::mk()->whereRaw("amount>0 and deleted=0")->sum('amount'));
|
||||
$count = abs(DataUserBalance::mk()->whereRaw("amount<0 and deleted=0")->sum('amount'));
|
||||
}
|
||||
return [$total, $count];
|
||||
}
|
||||
}
|
@ -1,74 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserRebate;
|
||||
use app\data\model\DataUserTransfer;
|
||||
use app\data\model\ShopOrder;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 用户返利数据服务
|
||||
* Class UserRebateService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class UserRebateService extends Service
|
||||
{
|
||||
/**
|
||||
* 同步刷新用户返利
|
||||
* @param integer $uuid
|
||||
* @return array [total, count, lock]
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
public static function amount(int $uuid): array
|
||||
{
|
||||
if ($uuid > 0) {
|
||||
$count = DataUserTransfer::mk()->whereRaw("uuid='{$uuid}' and status>0")->sum('amount');
|
||||
$total = DataUserRebate::mk()->whereRaw("uuid='{$uuid}' and status=1 and deleted=0")->sum('amount');
|
||||
$locks = DataUserRebate::mk()->whereRaw("uuid='{$uuid}' and status=0 and deleted=0")->sum('amount');
|
||||
DataUser::mk()->where(['id' => $uuid])->update(['rebate_total' => $total, 'rebate_used' => $count, 'rebate_lock' => $locks]);
|
||||
} else {
|
||||
$count = DataUserTransfer::mk()->whereRaw("status>0")->sum('amount');
|
||||
$total = DataUserRebate::mk()->whereRaw("status=1 and deleted=0")->sum('amount');
|
||||
$locks = DataUserRebate::mk()->whereRaw("status=0 and deleted=0")->sum('amount');
|
||||
}
|
||||
return [$total, $count, $locks];
|
||||
}
|
||||
|
||||
/**
|
||||
* 确认收货订单处理
|
||||
* @param string $orderNo
|
||||
* @return array [status, message]
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function confirm(string $orderNo): array
|
||||
{
|
||||
$map = [['status', '>=', 4], ['order_no', '=', $orderNo]];
|
||||
$order = ShopOrder::mk()->where($map)->findOrEmpty()->toArray();
|
||||
if (empty($order)) return [0, '需处理的订单状态异常!'];
|
||||
$map = [['status', '=', 0], ['order_no', 'like', "{$orderNo}%"]];
|
||||
DataUserRebate::mk()->where($map)->update(['status' => 1]);
|
||||
if (UserUpgradeService::upgrade($order['uuid'])) {
|
||||
return [1, '重新计算用户金额成功!'];
|
||||
} else {
|
||||
return [0, '重新计算用户金额失败!'];
|
||||
}
|
||||
}
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\DataUserToken;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 用户接口授权服务
|
||||
* Class UserTokenService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class UserTokenService extends Service
|
||||
{
|
||||
|
||||
/**
|
||||
* 认证有效时间
|
||||
* @var integer
|
||||
*/
|
||||
private static $expire = 7200;
|
||||
|
||||
/**
|
||||
* 检查 TOKEN 是否有效
|
||||
* @param string $type 接口类型
|
||||
* @param string $token 认证令牌
|
||||
* @param array $data 认证数据
|
||||
* @return array [ 检查状态,状态描述,用户UID, 有效时间 ]
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function check(string $type, string $token, array $data = []): array
|
||||
{
|
||||
if (empty($data)) {
|
||||
$map = ['type' => $type, 'token' => $token];
|
||||
$data = DataUserToken::mk()->where($map)->find();
|
||||
}
|
||||
if (empty($data) || empty($data['uuid'])) {
|
||||
return [0, '请重新登录,登录认证无效', 0, 0];
|
||||
} elseif ($token !== 'token' && $data['time'] < time()) {
|
||||
return [0, '请重新登录,登录认证失效', 0, 0];
|
||||
} elseif ($token !== 'token' && $data['tokenv'] !== static::buildVerify()) {
|
||||
return [0, '请重新登录,客户端已更换', 0, 0];
|
||||
} else {
|
||||
static::expire($type, $token);
|
||||
return [1, '登录验证成功', $data['uuid'], $data['time']];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取令牌的认证值
|
||||
* @return string
|
||||
*/
|
||||
private static function buildVerify(): string
|
||||
{
|
||||
return md5('-');
|
||||
//return md5(Library::$sapp->request->server('HTTP_USER_AGENT', '-'));
|
||||
}
|
||||
|
||||
/**
|
||||
* 延期 TOKEN 有效时间
|
||||
* @param string $type 接口类型
|
||||
* @param string $token 授权令牌
|
||||
*/
|
||||
public static function expire(string $type, string $token)
|
||||
{
|
||||
$map = ['type' => $type, 'token' => $token];
|
||||
DataUserToken::mk()->where($map)->update([
|
||||
'time' => time() + static::$expire,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 生成新的用户令牌
|
||||
* @param int $uuid 授权用户
|
||||
* @param string $type 接口类型
|
||||
* @return array [创建状态, 状态描述, 令牌数据]
|
||||
*/
|
||||
public static function token(int $uuid, string $type): array
|
||||
{
|
||||
// 清理无效认证数据
|
||||
$map1 = [['token', '<>', 'token'], ['time', '<', $time = time()]];
|
||||
$map2 = [['token', '<>', 'token'], ['type', '=', $type], ['uuid', '=', $uuid]];
|
||||
DataUserToken::mk()->whereOr([$map1, $map2])->delete();
|
||||
// 创建新的认证数据
|
||||
do $map = ['type' => $type, 'token' => md5(uniqid(strval(rand(100, 999))))];
|
||||
while (DataUserToken::mk()->where($map)->count() > 0);
|
||||
// 写入用户认证数据
|
||||
$data = array_merge($map, [
|
||||
'uuid' => $uuid,
|
||||
'time' => $time + static::$expire,
|
||||
'tokenv' => static::buildVerify(),
|
||||
]);
|
||||
if (DataUserToken::mk()->insert($data) !== false) {
|
||||
return [1, '刷新认证成功', $data];
|
||||
} else {
|
||||
return [0, '刷新认证失败', []];
|
||||
}
|
||||
}
|
||||
}
|
@ -1,170 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\DataUserTransfer;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 用户提现数据服务
|
||||
* Class UserTransferService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class UserTransferService extends Service
|
||||
{
|
||||
/**
|
||||
* 提现方式配置
|
||||
* @var array
|
||||
*/
|
||||
protected $types = [
|
||||
'wechat_wallet' => '转账到我的微信零钱',
|
||||
'wechat_banks' => '转账到我的银行卡账户',
|
||||
'wechat_qrcode' => '线下转账到微信收款码',
|
||||
'alipay_qrcode' => '线下转账到支付宝收款码',
|
||||
'alipay_account' => '线下转账到支付宝账户',
|
||||
'transfer_banks' => '线下转账到银行卡账户',
|
||||
];
|
||||
|
||||
/**
|
||||
* 微信提现银行
|
||||
* @var array
|
||||
*/
|
||||
protected $banks = [
|
||||
['wseq' => '1002', 'name' => '工商银行'],
|
||||
['wseq' => '1005', 'name' => '农业银行'],
|
||||
['wseq' => '1003', 'name' => '建设银行'],
|
||||
['wseq' => '1026', 'name' => '中国银行'],
|
||||
['wseq' => '1020', 'name' => '交通银行'],
|
||||
['wseq' => '1001', 'name' => '招商银行'],
|
||||
['wseq' => '1066', 'name' => '邮储银行'],
|
||||
['wseq' => '1006', 'name' => '民生银行'],
|
||||
['wseq' => '1010', 'name' => '平安银行'],
|
||||
['wseq' => '1021', 'name' => '中信银行'],
|
||||
['wseq' => '1004', 'name' => '浦发银行'],
|
||||
['wseq' => '1009', 'name' => '兴业银行'],
|
||||
['wseq' => '1022', 'name' => '光大银行'],
|
||||
['wseq' => '1027', 'name' => '广发银行'],
|
||||
['wseq' => '1025', 'name' => '华夏银行'],
|
||||
['wseq' => '1056', 'name' => '宁波银行'],
|
||||
['wseq' => '4836', 'name' => '北京银行'],
|
||||
['wseq' => '1024', 'name' => '上海银行'],
|
||||
['wseq' => '1054', 'name' => '南京银行'],
|
||||
|
||||
// '4755' => '长子县融汇村镇银行',
|
||||
// '4216' => '长沙银行',
|
||||
// '4051' => '浙江泰隆商业银行',
|
||||
// '4753' => '中原银行',
|
||||
// '4761' => '企业银行(中国)',
|
||||
// '4036' => '顺德农商银行',
|
||||
// '4752' => '衡水银行',
|
||||
// '4756' => '长治银行',
|
||||
// '4767' => '大同银行',
|
||||
// '4115' => '河南省农村信用社',
|
||||
// '4150' => '宁夏黄河农村商业银行',
|
||||
// '4156' => '山西省农村信用社',
|
||||
// '4166' => '安徽省农村信用社',
|
||||
// '4157' => '甘肃省农村信用社',
|
||||
// '4153' => '天津农村商业银行',
|
||||
// '4113' => '广西壮族自治区农村信用社',
|
||||
// '4108' => '陕西省农村信用社',
|
||||
// '4076' => '深圳农村商业银行',
|
||||
// '4052' => '宁波鄞州农村商业银行',
|
||||
// '4764' => '浙江省农村信用社联合社',
|
||||
// '4217' => '江苏省农村信用社联合社',
|
||||
// '4072' => '江苏紫金农村商业银行股份有限公司',
|
||||
// '4769' => '北京中关村银行股份有限公司',
|
||||
// '4778' => '星展银行(中国)有限公司',
|
||||
// '4766' => '枣庄银行股份有限公司',
|
||||
// '4758' => '海口联合农村商业银行股份有限公司',
|
||||
// '4763' => '南洋商业银行(中国)有限公司',
|
||||
];
|
||||
|
||||
/**
|
||||
* 获取微信提现银行
|
||||
* @param string|null $wsea
|
||||
* @return array|string
|
||||
*/
|
||||
public function banks(?string $wsea = null)
|
||||
{
|
||||
if (is_null($wsea)) return $this->banks;
|
||||
foreach ($this->banks as $bank) if ($bank['wseq'] === $wsea) {
|
||||
return $bank['name'];
|
||||
}
|
||||
return $wsea;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取转账类型
|
||||
* @param string|null $name
|
||||
* @return array|string
|
||||
*/
|
||||
public function types(?string $name = null)
|
||||
{
|
||||
return is_null($name) ? $this->types : ($this->types[$name] ?? $name);
|
||||
}
|
||||
|
||||
/**
|
||||
* 同步刷新用户返利
|
||||
* @param integer $uuid
|
||||
* @return array [total, count, audit, locks]
|
||||
*/
|
||||
public static function amount(int $uuid): array
|
||||
{
|
||||
if ($uuid > 0) {
|
||||
$locks = abs(DataUserTransfer::mk()->whereRaw("uuid='{$uuid}' and status=3")->sum('amount'));
|
||||
$total = abs(DataUserTransfer::mk()->whereRaw("uuid='{$uuid}' and status>=1")->sum('amount'));
|
||||
$count = abs(DataUserTransfer::mk()->whereRaw("uuid='{$uuid}' and status>=4")->sum('amount'));
|
||||
$audit = abs(DataUserTransfer::mk()->whereRaw("uuid='{$uuid}' and status>=1 and status<3")->sum('amount'));
|
||||
} else {
|
||||
$locks = abs(DataUserTransfer::mk()->whereRaw("status=3")->sum('amount'));
|
||||
$total = abs(DataUserTransfer::mk()->whereRaw("status>=1")->sum('amount'));
|
||||
$count = abs(DataUserTransfer::mk()->whereRaw("status>=4")->sum('amount'));
|
||||
$audit = abs(DataUserTransfer::mk()->whereRaw("status>=1 and status<3")->sum('amount'));
|
||||
}
|
||||
return [$total, $count, $audit, $locks];
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取提现配置
|
||||
* @param ?string $name
|
||||
* @return array|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function config(?string $name = null)
|
||||
{
|
||||
static $data = [];
|
||||
if (empty($data)) $data = sysdata('TransferRule');
|
||||
return is_null($name) ? $data : ($data[$name] ?? '');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取转账配置
|
||||
* @param ?string $name
|
||||
* @return array|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function payment(?string $name = null)
|
||||
{
|
||||
static $data = [];
|
||||
if (empty($data)) $data = sysdata('TransferWxpay');
|
||||
return is_null($name) ? $data : ($data[$name] ?? '');
|
||||
}
|
||||
}
|
@ -1,156 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service;
|
||||
|
||||
use app\data\model\BaseUserUpgrade;
|
||||
use app\data\model\DataUser;
|
||||
use app\data\model\DataUserBalance;
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\model\ShopOrderItem;
|
||||
use think\admin\Library;
|
||||
use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 用户等级升级服务
|
||||
* Class UserUpgradeService
|
||||
* @package app\data\service
|
||||
*/
|
||||
class UserUpgradeService extends Service
|
||||
{
|
||||
|
||||
/**
|
||||
* 尝试绑定上级代理
|
||||
* @param integer $uuid 用户UID
|
||||
* @param integer $pid0 代理UID
|
||||
* @param integer $mode 操作类型(0临时绑定, 1永久绑定, 2强行绑定)
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function bindAgent(int $uuid, int $pid0 = 0, int $mode = 1): array
|
||||
{
|
||||
$user = DataUser::mk()->where(['id' => $uuid])->find();
|
||||
if (empty($user)) return [0, '查询用户资料失败'];
|
||||
if ($user['pids'] && in_array($mode, [0, 1])) return [1, '已经绑定代理'];
|
||||
// 检查代理用户
|
||||
if (empty($pid0)) $pid0 = $user['pid0'];
|
||||
if (empty($pid0)) return [0, '绑定的代理不存在'];
|
||||
if ($uuid == $pid0) return [0, '不能绑定自己为代理'];
|
||||
// 检查代理资格
|
||||
$agent = DataUser::mk()->where(['id' => $pid0])->find();
|
||||
if (empty($agent['vip_code'])) return [0, '代理无推荐资格'];
|
||||
if (strpos($agent['path'], "-{$uuid}-") !== false) return [0, '不能绑定下属'];
|
||||
try {
|
||||
Library::$sapp->db->transaction(function () use ($user, $agent, $mode) {
|
||||
// 更新用户代理
|
||||
$path1 = rtrim($agent['path'] ?: '-', '-') . "-{$agent['id']}-";
|
||||
$user->save(['pid0' => $agent['id'], 'pid1' => $agent['id'], 'pid2' => $agent['pid1'], 'pids' => $mode > 0 ? 1 : 0, 'path' => $path1, 'layer' => substr_count($path1, '-')]);
|
||||
// 更新下级代理
|
||||
$path2 = "{$user['path']}{$user['id']}-";
|
||||
if (DataUser::mk()->whereLike('path', "{$path2}%")->count() > 0) {
|
||||
foreach (DataUser::mk()->whereLike('path', "{$path2}%")->order('layer desc')->select() as $item) {
|
||||
$attr = array_reverse(str2arr($path3 = preg_replace("#^{$path2}#", "{$path1}{$user['id']}-", $item['path']), '-'));
|
||||
$item->save(['pid0' => $attr[0] ?? 0, 'pid1' => $attr[0] ?? 0, 'pid2' => $attr[1] ?? 0, 'path' => $path3, 'layer' => substr_count($path3, '-')]);
|
||||
}
|
||||
}
|
||||
});
|
||||
static::upgrade($user['id']);
|
||||
return [1, '绑定代理成功'];
|
||||
} catch (\Exception $exception) {
|
||||
return [0, "绑定代理失败, {$exception->getMessage()}"];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 同步计算用户等级
|
||||
* @param integer $uuid 指定用户UID
|
||||
* @param boolean $parent 同步计算上级
|
||||
* @param ?string $orderNo 升级触发订单
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public static function upgrade(int $uuid, bool $parent = true, ?string $orderNo = null): bool
|
||||
{
|
||||
$user = DataUser::mk()->where(['id' => $uuid])->find();
|
||||
if (empty($user)) return true;
|
||||
// 初始化等级参数
|
||||
$levels = BaseUserUpgrade::items();
|
||||
[$vipName, $vipCode, $vipTeam] = [$levels[0]['name'] ?? '普通用户', 0, []];
|
||||
// 统计用户数据
|
||||
foreach ($levels as $key => $level) if ($level['upgrade_team'] === 1) $vipTeam[] = $key;
|
||||
$orderAmount = ShopOrder::mk()->where("uuid={$uuid} and status>=4")->sum('amount_total');
|
||||
$teamsDirect = DataUser::mk()->where(['pid1' => $uuid])->whereIn('vip_code', $vipTeam)->count();
|
||||
$teamsIndirect = DataUser::mk()->where(['pid2' => $uuid])->whereIn('vip_code', $vipTeam)->count();
|
||||
$teamsUsers = $teamsDirect + $teamsIndirect;
|
||||
// 动态计算用户等级
|
||||
foreach (array_reverse($levels) as $item) {
|
||||
$l1 = empty($item['goods_vip_status']) || $user['buy_vip_entry'] > 0;
|
||||
$l2 = empty($item['teams_users_status']) || $item['teams_users_number'] <= $teamsUsers;
|
||||
$l3 = empty($item['order_amount_status']) || $item['order_amount_number'] <= $orderAmount;
|
||||
$l4 = empty($item['teams_direct_status']) || $item['teams_direct_number'] <= $teamsDirect;
|
||||
$l5 = empty($item['teams_indirect_status']) || $item['teams_indirect_number'] <= $teamsIndirect;
|
||||
if (
|
||||
($item['upgrade_type'] == 0 && ($l1 || $l2 || $l3 || $l4 || $l5)) /* 满足任何条件可以等级 */
|
||||
||
|
||||
($item['upgrade_type'] == 1 && ($l1 && $l2 && $l3 && $l4 && $l5)) /* 满足所有条件可以等级 */
|
||||
) {
|
||||
[$vipName, $vipCode] = [$item['name'], $item['number']];
|
||||
break;
|
||||
}
|
||||
}
|
||||
// 购买入会商品升级
|
||||
$query = ShopOrderItem::mk()->alias('b')->join('shop_order a', 'b.order_no=a.order_no');
|
||||
$tmpCode = $query->whereRaw("a.uuid={$uuid} and a.payment_status=1 and a.status>=4 and b.vip_entry=1")->max('b.vip_upgrade');
|
||||
if ($tmpCode > $vipCode && isset($levels[$tmpCode])) {
|
||||
[$vipName, $vipCode] = [$levels[$tmpCode]['name'], $levels[$tmpCode]['number']];
|
||||
} else {
|
||||
$orderNo = null;
|
||||
}
|
||||
// 后台余额充值升级
|
||||
$tmpCode = DataUserBalance::mk()->where(['uuid' => $uuid, 'deleted' => 0])->max('upgrade');
|
||||
if ($tmpCode > $vipCode && isset($levels[$tmpCode])) {
|
||||
[$vipName, $vipCode] = [$levels[$tmpCode]['name'], $levels[$tmpCode]['number']];
|
||||
}
|
||||
// 统计用户订单金额
|
||||
$orderAmountTotal = ShopOrder::mk()->whereRaw("uuid={$uuid} and status>=4")->sum('amount_goods');
|
||||
$teamsAmountDirect = ShopOrder::mk()->whereRaw("puid1={$uuid} and status>=4")->sum('amount_goods');
|
||||
$teamsAmountIndirect = ShopOrder::mk()->whereRaw("puid2={$uuid} and status>=4")->sum('amount_goods');
|
||||
// 更新用户团队数据
|
||||
$data = [
|
||||
'vip_name' => $vipName,
|
||||
'vip_code' => $vipCode,
|
||||
'teams_users_total' => $teamsUsers,
|
||||
'teams_users_direct' => $teamsDirect,
|
||||
'teams_users_indirect' => $teamsIndirect,
|
||||
'teams_amount_total' => $teamsAmountDirect + $teamsAmountIndirect,
|
||||
'teams_amount_direct' => $teamsAmountDirect,
|
||||
'teams_amount_indirect' => $teamsAmountIndirect,
|
||||
'order_amount_total' => $orderAmountTotal,
|
||||
];
|
||||
if (!empty($orderNo)) $data['vip_order'] = $orderNo;
|
||||
if ($data['vip_code'] !== $user['vip_code']) $data['vip_datetime'] = date('Y-m-d H:i:s');
|
||||
DataUser::mk()->where(['id' => $uuid])->update($data);
|
||||
// 用户升级事件
|
||||
if ($user['vip_code'] < $vipCode) Library::$sapp->event->trigger('UserUpgradeLevel', [
|
||||
'uuid' => $user['id'], 'order_no' => $orderNo, 'vip_code_old' => $user['vip_code'], 'vip_code_new' => $vipCode,
|
||||
]);
|
||||
return !($parent && $user['pid1'] > 0) || static::upgrade($user['pid1'], false);
|
||||
}
|
||||
}
|
@ -1,157 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service\payment;
|
||||
|
||||
use AliPay\App;
|
||||
use AliPay\Wap;
|
||||
use AliPay\Web;
|
||||
use app\data\service\PaymentService;
|
||||
use think\admin\Exception;
|
||||
use WeChat\Exceptions\InvalidResponseException;
|
||||
use WeChat\Exceptions\LocalCacheException;
|
||||
|
||||
/**
|
||||
* 支付宝支付基础服务
|
||||
* Class AlipayPaymentService
|
||||
* @package app\data\service\payment
|
||||
*/
|
||||
class AlipayPaymentService extends PaymentService
|
||||
{
|
||||
|
||||
/**
|
||||
* 支付参数配置
|
||||
* @var array
|
||||
*/
|
||||
protected $config = [];
|
||||
|
||||
/**
|
||||
* 创建订单支付参数
|
||||
* @param string $openid 用户OPENID
|
||||
* @param string $orderNo 交易订单单号
|
||||
* @param string $payAmount 交易订单金额(元)
|
||||
* @param string $payTitle 交易订单名称
|
||||
* @param string $payRemark 订单订单描述
|
||||
* @param string $payReturn 完成回跳地址
|
||||
* @param string $payImage 支付凭证图片
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
public function create(string $openid, string $orderNo, string $payAmount, string $payTitle, string $payRemark, string $payReturn = '', string $payImage = ''): array
|
||||
{
|
||||
try {
|
||||
if (isset(static::TYPES[$this->type])) {
|
||||
$tradeType = static::TYPES[$this->type]['type'];
|
||||
} else {
|
||||
throw new Exception(sprintf('支付类型[%s]未配置定义!', $this->type));
|
||||
}
|
||||
$this->config['notify_url'] = sysuri("@data/api.notify/alipay/scene/order/param/{$this->code}", [], false, true);
|
||||
if (in_array($tradeType, [static::PAYMENT_ALIPAY_WAP, static::PAYMENT_ALIPAY_WEB])) {
|
||||
if (empty($payReturn)) {
|
||||
throw new Exception('支付回跳地址不能为空!');
|
||||
} else {
|
||||
$this->config['return_url'] = $payReturn;
|
||||
}
|
||||
}
|
||||
if ($tradeType === static::PAYMENT_WECHAT_APP) {
|
||||
$payment = App::instance($this->config);
|
||||
} elseif ($tradeType === static::PAYMENT_ALIPAY_WAP) {
|
||||
$payment = Wap::instance($this->config);
|
||||
} elseif ($tradeType === static::PAYMENT_ALIPAY_WEB) {
|
||||
$payment = Web::instance($this->config);
|
||||
} else {
|
||||
throw new Exception("支付类型[{$tradeType}]暂时不支持!");
|
||||
}
|
||||
$data = ['out_trade_no' => $orderNo, 'total_amount' => $payAmount, 'subject' => $payTitle];
|
||||
if (!empty($payRemark)) $data['body'] = $payRemark;
|
||||
$result = $payment->apply($data);
|
||||
// 创建支付记录
|
||||
$this->createPaymentAction($orderNo, $payTitle, $payAmount);
|
||||
// 返回支付参数
|
||||
return ['result' => $result];
|
||||
} catch (Exception $exception) {
|
||||
throw $exception;
|
||||
} catch (\Exception $exception) {
|
||||
throw new Exception($exception->getMessage(), $exception->getCode());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付结果处理
|
||||
* @return string
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function notify(): string
|
||||
{
|
||||
$notify = App::instance($this->config)->notify();
|
||||
if (in_array($notify['trade_status'], ['TRADE_SUCCESS', 'TRADE_FINISHED'])) {
|
||||
if ($this->updatePaymentAction($notify['out_trade_no'], $notify['trade_no'], $notify['total_amount'])) {
|
||||
return 'success';
|
||||
} else {
|
||||
return 'error';
|
||||
}
|
||||
} else {
|
||||
return 'success';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询订单数据
|
||||
* @param string $orderNo
|
||||
* @return array
|
||||
* @throws InvalidResponseException
|
||||
* @throws LocalCacheException
|
||||
*/
|
||||
public function query(string $orderNo): array
|
||||
{
|
||||
return App::instance($this->config)->query($orderNo);
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付服务初始化
|
||||
* @return $this
|
||||
*/
|
||||
protected function initialize(): AlipayPaymentService
|
||||
{
|
||||
$this->config = [
|
||||
// 沙箱模式
|
||||
'debug' => false,
|
||||
// 签名类型(RSA|RSA2)
|
||||
'sign_type' => "RSA2",
|
||||
// 应用ID
|
||||
'appid' => $this->params['alipay_appid'],
|
||||
// 支付宝公钥 (1行填写,特别注意,这里是支付宝公钥,不是应用公钥,最好从开发者中心的网页上去复制)
|
||||
'public_key' => $this->_trimCertHeader($this->params['alipay_public_key']),
|
||||
// 支付宝私钥 (1行填写)
|
||||
'private_key' => $this->_trimCertHeader($this->params['alipay_private_key']),
|
||||
// 支付成功通知地址
|
||||
'notify_url' => '',
|
||||
// 网页支付回跳地址
|
||||
'return_url' => '',
|
||||
];
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 去除证书内容前后缀
|
||||
* @param string $content
|
||||
* @return string
|
||||
*/
|
||||
private function _trimCertHeader(string $content): string
|
||||
{
|
||||
return preg_replace(['/\s+/', '/-{5}.*?-{5}/'], '', $content);
|
||||
}
|
||||
}
|
@ -1,102 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service\payment;
|
||||
|
||||
use app\data\model\DataUserBalance;
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\service\PaymentService;
|
||||
use app\data\service\UserBalanceService;
|
||||
use think\admin\Exception;
|
||||
use think\admin\extend\CodeExtend;
|
||||
|
||||
/**
|
||||
* 账号余额支付参数处理
|
||||
* Class BalancePaymentService
|
||||
* @package app\data\service\payment
|
||||
*/
|
||||
class BalancePaymentService extends PaymentService
|
||||
{
|
||||
/**
|
||||
* 订单信息查询
|
||||
* @param string $orderNo
|
||||
* @return array
|
||||
*/
|
||||
public function query(string $orderNo): array
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付通知处理
|
||||
* @return string
|
||||
*/
|
||||
public function notify(): string
|
||||
{
|
||||
return 'SUCCESS';
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建订单支付参数
|
||||
* @param string $openid 用户OPENID
|
||||
* @param string $orderNo 交易订单单号
|
||||
* @param string $payAmount 交易订单金额(元)
|
||||
* @param string $payTitle 交易订单名称
|
||||
* @param string $payRemark 订单订单描述
|
||||
* @param string $payReturn 完成回跳地址
|
||||
* @param string $payImage 支付凭证图片
|
||||
* @return array
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function create(string $openid, string $orderNo, string $payAmount, string $payTitle, string $payRemark, string $payReturn = '', string $payImage = ''): array
|
||||
{
|
||||
$order = ShopOrder::mk()->where(['order_no' => $orderNo])->find();
|
||||
if (empty($order)) throw new Exception("订单不存在");
|
||||
if ($order['status'] !== 2) throw new Exception("不可发起支付");
|
||||
// 创建支付行为
|
||||
$this->createPaymentAction($orderNo, $payTitle, $payAmount);
|
||||
// 检查能否支付
|
||||
[$total, $count] = UserBalanceService::amount($order['uuid'], [$orderNo]);
|
||||
if ($payAmount > $total - $count) throw new Exception("可抵扣余额不足");
|
||||
try {
|
||||
// 扣减用户余额
|
||||
$this->app->db->transaction(function () use ($order, $payAmount) {
|
||||
// 更新订单余额
|
||||
ShopOrder::mk()->where(['order_no' => $order['order_no']])->update([
|
||||
'payment_balance' => $payAmount,
|
||||
]);
|
||||
// 扣除余额金额
|
||||
DataUserBalance::mUpdate([
|
||||
'uuid' => $order['uuid'],
|
||||
'code' => "KC{$order['order_no']}",
|
||||
'name' => "账户余额支付",
|
||||
'remark' => "支付订单 {$order['order_no']} 的扣除余额 {$payAmount} 元",
|
||||
'amount' => -$payAmount,
|
||||
], 'code');
|
||||
// 更新支付行为
|
||||
$this->updatePaymentAction($order['order_no'], CodeExtend::uniqidDate(20), $payAmount, '账户余额支付');
|
||||
});
|
||||
// 刷新用户余额
|
||||
UserBalanceService::amount($order['uuid']);
|
||||
return ['code' => 1, 'info' => '余额支付完成'];
|
||||
} catch (\Exception $exception) {
|
||||
return ['code' => 0, 'info' => $exception->getMessage()];
|
||||
}
|
||||
}
|
||||
}
|
@ -1,77 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service\payment;
|
||||
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\service\PaymentService;
|
||||
use think\admin\Exception;
|
||||
use think\admin\extend\CodeExtend;
|
||||
|
||||
/**
|
||||
* 空支付支付
|
||||
* Class EmptyPaymentService
|
||||
* @package app\data\service\payment
|
||||
*/
|
||||
class EmptyPaymentService extends PaymentService
|
||||
{
|
||||
|
||||
/**
|
||||
* 订单主动查询
|
||||
* @param string $orderNo
|
||||
* @return array
|
||||
*/
|
||||
public function query(string $orderNo): array
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付通知处理
|
||||
* @return string
|
||||
*/
|
||||
public function notify(): string
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建订单支付参数
|
||||
* @param string $openid 用户OPENID
|
||||
* @param string $orderNo 交易订单单号
|
||||
* @param string $payAmount 交易订单金额(元)
|
||||
* @param string $payTitle 交易订单名称
|
||||
* @param string $payRemark 订单订单描述
|
||||
* @param string $payReturn 完成回跳地址
|
||||
* @param string $payImage 支付凭证图片
|
||||
* @return array
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function create(string $openid, string $orderNo, string $payAmount, string $payTitle, string $payRemark, string $payReturn = '', string $payImage = ''): array
|
||||
{
|
||||
$order = ShopOrder::mk()->where(['order_no' => $orderNo])->find();
|
||||
if (empty($order)) throw new Exception("订单不存在");
|
||||
if ($order['status'] !== 2) throw new Exception("不可发起支付");
|
||||
// 创建支付行为
|
||||
$this->createPaymentAction($orderNo, $payTitle, $payAmount);
|
||||
// 更新支付行为
|
||||
$this->updatePaymentAction($orderNo, CodeExtend::uniqidDate(20), $payAmount, '无需支付');
|
||||
return ['code' => 1, 'info' => '订单无需支付'];
|
||||
}
|
||||
}
|
@ -1,182 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service\payment;
|
||||
|
||||
use app\data\service\PaymentService;
|
||||
use think\admin\Exception;
|
||||
use think\admin\extend\HttpExtend;
|
||||
|
||||
/**
|
||||
* 汇聚支付基础服务
|
||||
* Class JoinpayPaymentService
|
||||
* @package app\data\service\payment
|
||||
*/
|
||||
class JoinpayPaymentService extends PaymentService
|
||||
{
|
||||
/**
|
||||
* 请求地址
|
||||
* @var string
|
||||
*/
|
||||
protected $uri;
|
||||
|
||||
/**
|
||||
* 应用编号
|
||||
* @var string
|
||||
*/
|
||||
protected $appid;
|
||||
|
||||
/**
|
||||
* 报备商户号
|
||||
* @var string
|
||||
*/
|
||||
protected $trade;
|
||||
|
||||
/**
|
||||
* 平台商户号
|
||||
* @var string
|
||||
*/
|
||||
protected $mchid;
|
||||
|
||||
/**
|
||||
* 平台商户密钥
|
||||
* @var string
|
||||
*/
|
||||
protected $mchkey;
|
||||
|
||||
/**
|
||||
* 创建订单支付参数
|
||||
* @param string $openid 用户OPENID
|
||||
* @param string $orderNo 交易订单单号
|
||||
* @param string $payAmount 交易订单金额(元)
|
||||
* @param string $payTitle 交易订单名称
|
||||
* @param string $payRemark 订单订单描述
|
||||
* @param string $payReturn 完成回跳地址
|
||||
* @param string $payImage 支付凭证图片
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
public function create(string $openid, string $orderNo, string $payAmount, string $payTitle, string $payRemark, string $payReturn = '', string $payImage = ''): array
|
||||
{
|
||||
try {
|
||||
if (isset(static::TYPES[$this->type])) {
|
||||
$tradeType = static::TYPES[$this->type]['type'];
|
||||
} else {
|
||||
throw new Exception(sprintf('支付类型[%s]未配置定义!', $this->type));
|
||||
}
|
||||
$data = [
|
||||
'p0_Version' => '1.0',
|
||||
'p1_MerchantNo' => $this->mchid,
|
||||
'p2_OrderNo' => $orderNo,
|
||||
'p3_Amount' => $payAmount,
|
||||
'p4_Cur' => '1',
|
||||
'p5_ProductName' => $payTitle,
|
||||
'p6_ProductDesc' => $payRemark,
|
||||
'p9_NotifyUrl' => sysuri("@data/api.notify/joinpay/scene/order/param/{$this->code}", [], false, true),
|
||||
'q1_FrpCode' => $tradeType ?? '',
|
||||
'q5_OpenId' => $openid,
|
||||
'q7_AppId' => $this->appid,
|
||||
'qa_TradeMerchantNo' => $this->trade,
|
||||
];
|
||||
if (empty($data['q5_OpenId'])) unset($data['q5_OpenId']);
|
||||
$this->uri = 'https://www.joinpay.com/trade/uniPayApi.action';
|
||||
$result = $this->_doReuest($data);
|
||||
if (isset($result['ra_Code']) && intval($result['ra_Code']) === 100) {
|
||||
// 创建支付记录
|
||||
$this->createPaymentAction($orderNo, $payTitle, $payAmount);
|
||||
// 返回支付参数
|
||||
return json_decode($result['rc_Result'], true);
|
||||
} elseif (isset($result['rb_CodeMsg'])) {
|
||||
throw new Exception($result['rb_CodeMsg']);
|
||||
} else {
|
||||
throw new Exception('获取预支付码失败!');
|
||||
}
|
||||
} catch (Exception $exception) {
|
||||
throw $exception;
|
||||
} catch (\Exception $exception) {
|
||||
throw new Exception($exception->getMessage(), $exception->getCode());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 执行数据请求
|
||||
* @param array $data
|
||||
* @return array
|
||||
*/
|
||||
private function _doReuest(array $data = []): array
|
||||
{
|
||||
$data['hmac'] = $this->_doSign($data);
|
||||
return json_decode(HttpExtend::post($this->uri, $data), true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 请求数据签名
|
||||
* @param array $data
|
||||
* @return string
|
||||
*/
|
||||
private function _doSign(array $data): string
|
||||
{
|
||||
ksort($data);
|
||||
unset($data['hmac']);
|
||||
return md5(join('', $data) . $this->mchkey);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询订单数据
|
||||
* @param string $orderNo
|
||||
* @return array
|
||||
*/
|
||||
public function query(string $orderNo): array
|
||||
{
|
||||
$this->uri = 'https://www.joinpay.com/trade/queryOrder.action';
|
||||
return $this->_doReuest(['p1_MerchantNo' => $this->mchid, 'p2_OrderNo' => $orderNo]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付结果处理
|
||||
* @return string
|
||||
*/
|
||||
public function notify(): string
|
||||
{
|
||||
$notify = $this->app->request->get();
|
||||
foreach ($notify as &$item) $item = urldecode($item);
|
||||
if (empty($notify['hmac']) || $notify['hmac'] !== $this->_doSign($notify)) {
|
||||
return 'error';
|
||||
}
|
||||
if (isset($notify['r6_Status']) && intval($notify['r6_Status']) === 100) {
|
||||
if ($this->updatePaymentAction($notify['r2_OrderNo'], $notify['r9_BankTrxNo'], $notify['r3_Amount'])) {
|
||||
return 'success';
|
||||
} else {
|
||||
return 'error';
|
||||
}
|
||||
} else {
|
||||
return 'success';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 汇聚支付服务初始化
|
||||
* @return JoinpayPaymentService
|
||||
*/
|
||||
protected function initialize(): JoinpayPaymentService
|
||||
{
|
||||
$this->appid = $this->params['joinpay_appid'];
|
||||
$this->trade = $this->params['joinpay_trade'];
|
||||
$this->mchid = $this->params['joinpay_mch_id'];
|
||||
$this->mchkey = $this->params['joinpay_mch_key'];
|
||||
return $this;
|
||||
}
|
||||
}
|
@ -1,74 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service\payment;
|
||||
|
||||
use app\data\model\ShopOrder;
|
||||
use app\data\service\PaymentService;
|
||||
use think\admin\Exception;
|
||||
use think\admin\extend\CodeExtend;
|
||||
|
||||
/**
|
||||
* 单据凭证支付
|
||||
* Class VoucherPaymentService
|
||||
* @package app\data\service\payment
|
||||
*/
|
||||
class VoucherPaymentService extends PaymentService
|
||||
{
|
||||
/**
|
||||
* 订单数据查询
|
||||
* @param string $orderNo
|
||||
* @return array
|
||||
*/
|
||||
public function query(string $orderNo): array
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付通知处理
|
||||
* @return string
|
||||
*/
|
||||
public function notify(): string
|
||||
{
|
||||
return 'success';
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建订单支付参数
|
||||
* @param string $openid 用户OPENID
|
||||
* @param string $orderNo 交易订单单号
|
||||
* @param string $payAmount 交易订单金额(元)
|
||||
* @param string $payTitle 交易订单名称
|
||||
* @param string $payRemark 订单订单描述
|
||||
* @param string $payReturn 完成回跳地址
|
||||
* @param string $payImage 支付凭证图片
|
||||
* @return array
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function create(string $openid, string $orderNo, string $payAmount, string $payTitle, string $payRemark, string $payReturn = '', string $payImage = ''): array
|
||||
{
|
||||
$order = ShopOrder::mk()->where(['order_no' => $orderNo])->find();
|
||||
if (empty($order)) throw new Exception("订单不存在");
|
||||
if ($order['status'] !== 2) throw new Exception("不可发起支付");
|
||||
if (empty($payImage)) throw new Exception('支付凭证不能为空');
|
||||
$this->updatePaymentOrder($orderNo, CodeExtend::uniqidDate(20), $payAmount, '单据凭证支付', $payImage);
|
||||
return ['code' => 1, 'info' => '支付凭证上传成功!'];
|
||||
}
|
||||
}
|
@ -1,134 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\data\service\payment;
|
||||
|
||||
use app\data\service\PaymentService;
|
||||
use think\admin\Exception;
|
||||
use WePay\Order;
|
||||
|
||||
/**
|
||||
* 微信官方公众号支持
|
||||
* Class WechatPaymentService
|
||||
* @package app\data\service\payment
|
||||
*/
|
||||
class WechatPaymentService extends PaymentService
|
||||
{
|
||||
/**
|
||||
* 微信对象对象
|
||||
* @var Order
|
||||
*/
|
||||
protected $payment;
|
||||
|
||||
/**
|
||||
* 创建订单支付参数
|
||||
* @param string $openid 用户OPENID
|
||||
* @param string $orderNo 交易订单单号
|
||||
* @param string $payAmount 交易订单金额(元)
|
||||
* @param string $payTitle 交易订单名称
|
||||
* @param string $payRemark 订单订单描述
|
||||
* @param string $payReturn 完成回跳地址
|
||||
* @param string $payImage 支付凭证图片
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
public function create(string $openid, string $orderNo, string $payAmount, string $payTitle, string $payRemark, string $payReturn = '', string $payImage = ''): array
|
||||
{
|
||||
try {
|
||||
if (isset(static::TYPES[$this->type])) {
|
||||
$tradeType = static::TYPES[$this->type]['type'];
|
||||
} else {
|
||||
throw new Exception(sprintf('支付类型[%s]未配置定义!', $this->type));
|
||||
}
|
||||
$body = empty($payRemark) ? $payTitle : ($payTitle . '-' . $payRemark);
|
||||
$data = [
|
||||
'body' => $body,
|
||||
'openid' => $openid,
|
||||
'attach' => $this->code,
|
||||
'out_trade_no' => $orderNo,
|
||||
'trade_type' => $tradeType ?: '',
|
||||
'total_fee' => $payAmount * 100,
|
||||
'notify_url' => sysuri("@data/api.notify/wxpay/scene/order/param/{$this->code}", [], false, true),
|
||||
'spbill_create_ip' => $this->app->request->ip(),
|
||||
];
|
||||
if (empty($data['openid'])) unset($data['openid']);
|
||||
$info = $this->payment->create($data);
|
||||
if ($info['return_code'] === 'SUCCESS' && $info['result_code'] === 'SUCCESS') {
|
||||
// 创建支付记录
|
||||
$this->createPaymentAction($orderNo, $payTitle, $payAmount);
|
||||
// 返回支付参数
|
||||
return $this->payment->jsapiParams($info['prepay_id']);
|
||||
}
|
||||
throw new Exception($info['err_code_des'] ?? '获取预支付码失败!');
|
||||
} catch (Exception $exception) {
|
||||
throw $exception;
|
||||
} catch (\Exception $exception) {
|
||||
throw new Exception($exception->getMessage(), $exception->getCode());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询微信支付订单
|
||||
* @param string $orderNo 订单单号
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
*/
|
||||
public function query(string $orderNo): array
|
||||
{
|
||||
$result = $this->payment->query(['out_trade_no' => $orderNo]);
|
||||
if (isset($result['return_code']) && isset($result['result_code']) && isset($result['attach'])) {
|
||||
if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
|
||||
$this->updatePaymentAction($result['out_trade_no'], $result['cash_fee'] / 100, $result['transaction_id']);
|
||||
}
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付结果处理
|
||||
* @return string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function notify(): string
|
||||
{
|
||||
$notify = $this->payment->getNotify();
|
||||
if ($notify['result_code'] == 'SUCCESS' && $notify['return_code'] == 'SUCCESS') {
|
||||
if ($this->updatePaymentAction($notify['out_trade_no'], $notify['transaction_id'], $notify['cash_fee'] / 100)) {
|
||||
return $this->payment->getNotifySuccessReply();
|
||||
} else {
|
||||
return 'error';
|
||||
}
|
||||
} else {
|
||||
return $this->payment->getNotifySuccessReply();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 微信支付服务初始化
|
||||
* @return WechatPaymentService
|
||||
*/
|
||||
protected function initialize(): WechatPaymentService
|
||||
{
|
||||
$this->payment = Order::instance([
|
||||
'appid' => $this->params['wechat_appid'],
|
||||
'mch_id' => $this->params['wechat_mch_id'],
|
||||
'mch_key' => $this->params['wechat_mch_key'],
|
||||
'cache_path' => $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'wechat',
|
||||
]);
|
||||
return $this;
|
||||
}
|
||||
}
|
@ -1,73 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Shop-Demo for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2022~2023 Anyon <zoujingli@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// | 会员免费 ( https://thinkadmin.top/vip-introduce )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
use app\data\command\OrderClean;
|
||||
use app\data\command\UserAgent;
|
||||
use app\data\command\UserAmount;
|
||||
use app\data\command\UserTransfer;
|
||||
use app\data\command\UserUpgrade;
|
||||
use app\data\service\OrderService;
|
||||
use app\data\service\RebateService;
|
||||
use app\data\service\UserBalanceService;
|
||||
use app\data\service\UserRebateService;
|
||||
use think\admin\Library;
|
||||
use think\Console;
|
||||
|
||||
if (Library::$sapp->request->isCli()) {
|
||||
// 动态注册操作指令
|
||||
Console::starting(function (Console $console) {
|
||||
$console->addCommand(OrderClean::class);
|
||||
$console->addCommand(UserAgent::class);
|
||||
$console->addCommand(UserAmount::class);
|
||||
$console->addCommand(UserUpgrade::class);
|
||||
$console->addCommand(UserTransfer::class);
|
||||
});
|
||||
} else {
|
||||
// 注册订单支付处理事件
|
||||
Library::$sapp->event->listen('ShopOrderPayment', function ($orderNo) {
|
||||
|
||||
Library::$sapp->log->notice("订单 {$orderNo} 支付事件,执行用户返利行为");
|
||||
RebateService::instance()->execute($orderNo);
|
||||
|
||||
Library::$sapp->log->notice("订单 {$orderNo} 支付事件,执行发放余额行为");
|
||||
UserBalanceService::confirm($orderNo);
|
||||
|
||||
Library::$sapp->log->notice("订单 {$orderNo} 支付事件,执行用户升级行为");
|
||||
OrderService::upgrade($orderNo);
|
||||
});
|
||||
|
||||
// 注册订单确认支付事件
|
||||
Library::$sapp->event->listen('ShopOrderConfirm', function ($orderNo) {
|
||||
Library::$sapp->log->notice("订单 {$orderNo} 确认事件,执行返利确认行为");
|
||||
UserRebateService::confirm($orderNo);
|
||||
});
|
||||
}
|
||||
|
||||
if (!function_exists('show_goods_spec')) {
|
||||
/**
|
||||
* 商品规格过滤显示
|
||||
* @param string $spec 原规格内容
|
||||
* @return string
|
||||
*/
|
||||
function show_goods_spec(string $spec): string
|
||||
{
|
||||
$specs = [];
|
||||
foreach (explode(';;', $spec) as $sp) {
|
||||
$specs[] = explode('::', $sp)[1];
|
||||
}
|
||||
return join(' ', $specs);
|
||||
}
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
{extend name="../../admin/view/main"}
|
||||
|
||||
{block name="content"}
|
||||
<div class="think-box-shadow" id="ContentBox">
|
||||
<div class="padding-left-20 padding-right-20" style="max-width:800px">
|
||||
<div class="margin-top-10">
|
||||
<p>1. 上传邀请码的背景图片( 支持 PNG 和 JPG 格式 )</p>
|
||||
<p>2. 选择需要绘制二维码的区域,生成相对图片坐标参数</p>
|
||||
<p>3. 保存位置数据,下次可直接显示</p>
|
||||
</div>
|
||||
<div class="margin-top-20">
|
||||
<div style="width:800px;height:572px">
|
||||
<img alt="img" class="layui-hide" id="target" src="{$data.image|default='https://d3o1694hluedf9.cloudfront.net/market-750.jpg'}">
|
||||
</div>
|
||||
<div class="margin-top-5">
|
||||
<label class="margin-top-5 block"><input class="layui-input layui-bg-gray" id="inputImage" readonly value=''></label>
|
||||
<label class="margin-top-5 block"><input class="layui-input layui-bg-gray" id="inputData" readonly value=''></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="margin-top-20 text-center">
|
||||
<a class="layui-btn layui-btn-primary margin-right-5" data-type="png,jpg" data-upload-image>上传背景图片</a>
|
||||
<a class="layui-btn layui-btn-primary margin-left-5" data-upload-commit>保存配置参数</a>
|
||||
</div>
|
||||
</div>
|
||||
<label class="layui-hide">
|
||||
<textarea class="layui-textarea" id="DefaPostion">{$data.postion|default=''}</textarea>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// 加载插件并显示界面
|
||||
require(['cropper'], function (Cropper) {
|
||||
(function (image, defaData, options, cropper) {
|
||||
|
||||
// 初始化图片背景
|
||||
cropper = new Cropper(image, options = {
|
||||
viewMode: 2, aspectRatio: 1, ready: function () {
|
||||
if (typeof defaData === 'object') cropper.setData(defaData);
|
||||
}, crop: function () {
|
||||
$('#inputImage').val(image.src);
|
||||
$('#inputData').val(JSON.stringify(cropper.getData()));
|
||||
},
|
||||
});
|
||||
|
||||
// 背景图片上传并切换
|
||||
$('[data-upload-image]').uploadFile(function (url) {
|
||||
(image.src = url), cropper.destroy();
|
||||
cropper = new Cropper(image, options);
|
||||
});
|
||||
|
||||
// 保存图片配置参数
|
||||
$('[data-upload-commit]').on('click', function () {
|
||||
$.form.load('{:url("")}', {image: image.src, postion: JSON.stringify(cropper.getData())}, 'post');
|
||||
});
|
||||
})(document.getElementById('target'), JSON.parse($('#DefaPostion').val() || '{}'));
|
||||
|
||||
// 窗口大小重置事件
|
||||
$(window).on('resize', function () {
|
||||
(function (height) {
|
||||
$('#ContentBox').css('minHeight', height + 'px')
|
||||
})($('.layui-layout-admin>.layui-body').height() - 120);
|
||||
}).trigger('resize');
|
||||
});
|
||||
</script>
|
||||
{/block}
|
@ -1,30 +0,0 @@
|
||||
{extend name="../../admin/view/main"}
|
||||
|
||||
{block name="content"}
|
||||
<div class="think-box-shadow">
|
||||
<form action="{:sysuri()}" method="post" data-auto="true" class="layui-form layui-card" style="width:850px">
|
||||
<div class="layui-card-header text-center margin-20">
|
||||
<b>{$title|default='小程序接口配置'}</b><span class="color-desc font-s12"> ( 微信公众号平台配置获取 )</span>
|
||||
</div>
|
||||
<div class="layui-card-body padding-left-40 padding-bottom-0">
|
||||
|
||||
<label class="layui-form-item block relative">
|
||||
<span class='help-label'><b>小程序 AppId</b></span>
|
||||
<input class="layui-input" maxlength="18" name="appid" pattern="^wx[0-9a-z]{16}$" placeholder="请输入18位小程序 AppID" required value="{$data.appid|default=''}">
|
||||
<span class="help-block"><b>必选</b>,微信小程序 AppID 需要微信公众号平台获取!</span>
|
||||
</label>
|
||||
|
||||
<label class="layui-form-item block relative">
|
||||
<span class="help-label"><b>小程序密钥 AppSecret</b></span>
|
||||
<input class="layui-input" maxlength="32" name="appkey" pattern="^[0-9a-z]{32}$" placeholder="请输入32位小程序 AppSecret" required value="{$data.appkey|default=''}">
|
||||
<span class="help-block"><b>必选</b>,微信小程序 AppSecret 需要微信公众号平台获取!</span>
|
||||
</label>
|
||||
|
||||
<div class="hr-line-dashed margin-top-30"></div>
|
||||
<div class="layui-form-item text-center">
|
||||
<button class="layui-btn" data-submit>保存数据</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
{/block}
|
@ -1,61 +0,0 @@
|
||||
<form action="{:sysuri()}" method="post" data-auto="true" class="layui-form layui-card" data-table-id="DiscountTable">
|
||||
<div class="layui-card-body padding-left-40">
|
||||
|
||||
<label class="layui-form-item block relative">
|
||||
<span class="help-label"><b>折扣方案名称</b>Discount Name</span>
|
||||
<input class="layui-input" name="name" placeholder="请输入折扣方案名称" required value="{$vo.name|default=''}">
|
||||
</label>
|
||||
|
||||
<div class="layui-form-item label-required-prev">
|
||||
<span class="help-label"><b>用户等级折扣</b>Discount Scheme</span>
|
||||
<table class="layui-table think-level-box" lay-skin="line">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-left" style="width:auto">用户等级</th>
|
||||
<th class="text-right">原价比例 ( 0.00% - 100.00% )</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach $levels as $level}
|
||||
<tr class="think-bg-white">
|
||||
<td class="nowrap sub-span-blue">[ <span>VIP{$level.number|default='0'}</span> ] {$level.name|default=''}</td>
|
||||
<td class="nowrap padding-0">
|
||||
<label>
|
||||
{php} $key = '_level_' . $level['number']; {/php}
|
||||
<input data-blur-number="4" data-value-min="0" data-value-max="100" name="_level_{$level.number}" value="{$vo[$key]??'100.0000'}" placeholder="请输入用户等级折扣">
|
||||
<span class="notselect margin-left-5">%</span>
|
||||
</label>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<label class="layui-form-item block relative">
|
||||
<span class="help-label"><b>折扣方案备注</b>Discount Remark</span>
|
||||
<textarea class="layui-textarea" name="remark" placeholder="请输入折扣方案备注">{$vo.remark|default=''}</textarea>
|
||||
</label>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
{notempty name='vo.id'}<input name='id' type='hidden' value='{$vo.id}'>{/notempty}
|
||||
|
||||
<div class="layui-form-item text-center">
|
||||
<button class="layui-btn" type='submit'>保存数据</button>
|
||||
<button class="layui-btn layui-btn-danger" data-close data-confirm="确定要取消编辑吗?" type='button'>取消编辑</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<style>
|
||||
.think-level-box tr input {
|
||||
width: 90%;
|
||||
height: 38px;
|
||||
border: none;
|
||||
text-align: right;
|
||||
line-height: 38px;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
@ -1,89 +0,0 @@
|
||||
{extend name='../../admin/view/table'}
|
||||
|
||||
{block name="button"}
|
||||
<!--{if auth("add")}-->
|
||||
<button class='layui-btn layui-btn-sm layui-btn-primary' data-table-id="DiscountTable" data-modal="{:url('add')}" data-title="添加折扣">添加折扣</button>
|
||||
<!--{/if}-->
|
||||
{/block}
|
||||
|
||||
{block name="content"}
|
||||
<div class="layui-tab layui-tab-card">
|
||||
<ul class="layui-tab-title">
|
||||
{foreach ['index'=>'折扣管理','recycle'=>'回 收 站'] as $k=>$v}{if isset($type) and $type eq $k}
|
||||
<li data-open="{:url('index')}?type={$k}" class="layui-this">{$v}</li>
|
||||
{else}
|
||||
<li data-open="{:url('index')}?type={$k}">{$v}</li>
|
||||
{/if}{/foreach}
|
||||
</ul>
|
||||
<div class="layui-tab-content">
|
||||
<table id="DiscountTable" data-url="{:sysuri()}" data-target-search="form.form-search"></table>
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block name='script'}
|
||||
<script>
|
||||
$(function () {
|
||||
// 初始化表格组件
|
||||
$('#DiscountTable').layTable({
|
||||
even: true, height: 'full',
|
||||
sort: {field: 'sort desc,id', type: 'desc'},
|
||||
where: {type: '{$type|default="index"}'},
|
||||
cols: [[
|
||||
{field: 'id', title: 'ID', align: "center", width: 80},
|
||||
{field: 'sort', title: '排序权重', align: 'center', width: 100, sort: true, templet: '#SortInputTpl'},
|
||||
{field: 'name', title: '折扣名称', align: 'left', minWidth: 140},
|
||||
{
|
||||
field: 'items', title: '折扣方案', align: 'left', width: '33%', templet: function (d) {
|
||||
return (d.html = ''), d.items.forEach(function (item) {
|
||||
d.html += laytpl('<span class="layui-badge layui-bg-gray">VIP{{d.level}} 折扣 {{d.discount}}%</span>').render(item);
|
||||
}), d.html;
|
||||
}
|
||||
},
|
||||
{field: 'status', title: '状态', align: 'center', width: 110, templet: '#StatusSwitchTpl'},
|
||||
{field: 'create_at', title: '创建时间', align: 'center', minWidth: 170, sort: true},
|
||||
{toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 80, fixed: 'right'},
|
||||
]]
|
||||
});
|
||||
|
||||
// 数据状态切换操作
|
||||
layui.form.on('switch(StatusSwitch)', function (obj) {
|
||||
var data = {id: obj.value, status: obj.elem.checked > 0 ? 1 : 0};
|
||||
$.form.load("{:url('state')}", data, 'post', function (ret) {
|
||||
if (ret.code < 1) $.msg.error(ret.info, 3, function () {
|
||||
$('#DiscountTable').trigger('reload');
|
||||
}); else {
|
||||
$('#DiscountTable').trigger('reload');
|
||||
}
|
||||
return false;
|
||||
}, false);
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
<!-- 列表排序权重模板 -->
|
||||
<script type="text/html" id="SortInputTpl">
|
||||
<input type="number" min="0" data-blur-number="0" data-action-blur="{:sysuri()}" data-value="id#{{d.id}};action#sort;sort#{value}" data-loading="false" value="{{d.sort}}" class="layui-input text-center">
|
||||
</script>
|
||||
|
||||
<!-- 数据状态切换模板 -->
|
||||
<script type="text/html" id="StatusSwitchTpl">
|
||||
<!--{if auth("state")}-->
|
||||
<input type="checkbox" value="{{d.id}}" lay-skin="switch" lay-text="已激活|已禁用" lay-filter="StatusSwitch" {{-d.status>0?'checked':''}}>
|
||||
<!--{else}-->
|
||||
{{-d.status ? '<b class="color-green">已启用</b>' : '<b class="color-red">已禁用</b>'}}
|
||||
<!--{/if}-->
|
||||
</script>
|
||||
|
||||
<!-- 数据操作工具条模板 -->
|
||||
<script type="text/html" id="toolbar">
|
||||
<!--{if auth("edit") and isset($type) and $type eq 'index'}-->
|
||||
<a class="layui-btn layui-btn-primary layui-btn-sm" data-title="编辑折扣" data-modal='{:url("edit")}?id={{d.id}}'>编 辑</a>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("remove") and isset($type) and $type neq 'index'}-->
|
||||
<a class="layui-btn layui-btn-danger layui-btn-sm" data-action="{:url('remove')}" data-value="id#{{d.id}}" data-confirm="确定要删除折扣吗?">删 除</a>
|
||||
<!--{/if}-->
|
||||
</script>
|
||||
{/block}
|
@ -1,34 +0,0 @@
|
||||
{extend name="../../admin/view/main"}
|
||||
|
||||
{block name='content'}
|
||||
<form action="{:sysuri()}" method="post" data-auto="true" class="layui-form layui-card" data-table-id="MessageTable">
|
||||
<div class="layui-card-body">
|
||||
|
||||
<label class="layui-form-item relative block">
|
||||
<span class="help-label"><b>通知标题</b>Notify Title</span>
|
||||
<input class="layui-input" name="name" placeholder="请输入通知标题" required value='{$vo.name|default=""}'>
|
||||
</label>
|
||||
|
||||
<div class="layui-form-item label-required-prev">
|
||||
<span class="help-label"><b>通知内容</b>Notify Content</span>
|
||||
<label class="relative block">
|
||||
<textarea class="layui-hide" name="content" placeholder="请输入通知内容">{$vo.content|default=''}</textarea>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
{notempty name='vo.id'}<input name='id' type='hidden' value='{$vo.id}'>{/notempty}
|
||||
|
||||
<div class="layui-form-item text-center">
|
||||
<button class="layui-btn" type="submit">保存数据</button>
|
||||
<button class="layui-btn layui-btn-danger" data-confirm="确定要取消编辑吗?" type='button' data-history-back>取消编辑</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script>
|
||||
require(['ckeditor'], function () {
|
||||
window.createEditor('[name=content]', {height: 530});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
@ -1,76 +0,0 @@
|
||||
{extend name='../../admin/view/table'}
|
||||
|
||||
{block name='button'}
|
||||
<!--{if auth("add")}-->
|
||||
<button class='layui-btn layui-btn-sm layui-btn-primary' data-table-id="MessageTable" data-open='{:url("add")}'>添加通知</button>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("remove")}-->
|
||||
<button class='layui-btn layui-btn-sm layui-btn-primary' data-table-id="MessageTable" data-action='{:url("remove")}' data-rule="id#{id}" data-confirm="确定要删除这些通知吗?">删除通知</button>
|
||||
<!--{/if}-->
|
||||
{/block}
|
||||
|
||||
{block name="content"}
|
||||
<div class="think-box-shadow">
|
||||
{include file='base/message/index_search'}
|
||||
<table id="MessageTable" data-url="{:sysuri()}" data-target-search="form.form-search"></table>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block name='script'}
|
||||
<script>
|
||||
$(function () {
|
||||
// 初始化表格组件
|
||||
$('#MessageTable').layTable({
|
||||
even: true, height: 'full',
|
||||
sort: {field: 'sort desc,id', type: 'desc'},
|
||||
cols: [[
|
||||
{checkbox: true, fixed: true},
|
||||
{field: 'sort', title: '排序权重', align: 'center', width: 100, sort: true, templet: '#SortInputTpl'},
|
||||
{field: 'name', title: '通知标题', align: 'left', minWidth: 140},
|
||||
{field: 'num_read', title: '阅读次数', align: 'center', minWidth: 110},
|
||||
{field: 'status', title: '通知状态', align: 'center', minWidth: 110, templet: '#StatusSwitchTpl'},
|
||||
{field: 'create_at', title: '创建时间', align: 'center', minWidth: 170, sort: true},
|
||||
{toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 140, fixed: 'right'},
|
||||
]]
|
||||
});
|
||||
|
||||
// 数据状态切换操作
|
||||
layui.form.on('switch(StatusSwitch)', function (obj) {
|
||||
var data = {id: obj.value, status: obj.elem.checked > 0 ? 1 : 0};
|
||||
$.form.load("{:url('state')}", data, 'post', function (ret) {
|
||||
if (ret.code < 1) $.msg.error(ret.info, 3, function () {
|
||||
$('#MessageTable').trigger('reload');
|
||||
});
|
||||
return false;
|
||||
}, false);
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
<!-- 列表排序权重模板 -->
|
||||
<script type="text/html" id="SortInputTpl">
|
||||
<input type="number" min="0" data-blur-number="0" data-action-blur="{:sysuri()}" data-value="id#{{d.id}};action#sort;sort#{value}" data-loading="false" value="{{d.sort}}" class="layui-input text-center">
|
||||
</script>
|
||||
|
||||
<!-- 数据状态切换模板 -->
|
||||
<script type="text/html" id="StatusSwitchTpl">
|
||||
<!--{if auth("state")}-->
|
||||
<input type="checkbox" value="{{d.id}}" lay-skin="switch" lay-text="已激活|已禁用" lay-filter="StatusSwitch" {{-d.status>0?'checked':''}}>
|
||||
<!--{else}-->
|
||||
{{-d.status ? '<b class="color-green">已启用</b>' : '<b class="color-red">已禁用</b>'}}
|
||||
<!--{/if}-->
|
||||
</script>
|
||||
|
||||
<!-- 数据操作工具条模板 -->
|
||||
<script type="text/html" id="toolbar">
|
||||
<!--{if auth('edit')}-->
|
||||
<a class="layui-btn layui-btn-primary layui-btn-sm" data-open='{:url("edit")}?id={{d.id}}'>编 辑</a>
|
||||
<!--{/if}-->
|
||||
|
||||
<!--{if auth("remove")}-->
|
||||
<a class="layui-btn layui-btn-danger layui-btn-sm" data-confirm="确定要删除问题吗?" data-action="{:url('remove')}" data-value="id#{{d.id}}">删 除</a>
|
||||
<!--{/if}-->
|
||||
</script>
|
||||
{/block}
|
@ -1,38 +0,0 @@
|
||||
<fieldset>
|
||||
<legend>条件搜索</legend>
|
||||
<form action="{:sysuri()}" autocomplete="off" class="layui-form layui-form-pane form-search" method="get" onsubmit="return false">
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">通知标题</label>
|
||||
<label class="layui-input-inline">
|
||||
<input class="layui-input" name="name" placeholder="请输入通知标题" value="{$get.name|default=''}">
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">使用状态</label>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="status">
|
||||
<option value=''>-- 全部 --</option>
|
||||
{foreach ['显示禁止的通知', '显示正常的通知'] as $k=>$v}
|
||||
{if isset($get.status) and $get.status eq $k.''}
|
||||
<option selected value="{$k}">{$v}</option>
|
||||
{else}
|
||||
<option value="{$k}">{$v}</option>
|
||||
{/if}{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<label class="layui-form-label">创建时间</label>
|
||||
<label class="layui-input-inline">
|
||||
<input class="layui-input" data-date-range name="create_at" placeholder="请选择创建时间" value="{$get.create_at|default=''}">
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item layui-inline">
|
||||
<button class="layui-btn layui-btn-primary"><i class="layui-icon"></i> 搜 索</button>
|
||||
</div>
|
||||
</form>
|
||||
</fieldset>
|
@ -1,33 +0,0 @@
|
||||
{extend name="../../admin/view/main"}
|
||||
|
||||
{block name='content'}
|
||||
<form action="{:sysuri()}?type={$get.type|default=''}" method="post" data-auto="true" class="layui-form layui-card">
|
||||
<div class="layui-card-body">
|
||||
|
||||
<label class="layui-form-item relative block">
|
||||
<span class="help-label"><b>页面名称</b>Page Name</span>
|
||||
<input class="layui-input" name="name" placeholder="请输入页面名称" required value='{$data.name|default=$base.name}'>
|
||||
</label>
|
||||
|
||||
<div class="layui-form-item label-required-prev">
|
||||
<span class="help-label"><b>页面内容</b>Page Content</span>
|
||||
<textarea class="layui-hide" name="content">{$data.content|default=$base.content}</textarea>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
<input type="hidden" name="type" value="{$get.type|default=''}">
|
||||
|
||||
<div class="layui-form-item text-center">
|
||||
<button class="layui-btn" type="submit">保存数据</button>
|
||||
<button class="layui-btn layui-btn-danger" data-confirm="确定要取消编辑吗?" data-history-back type='button'>取消编辑</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script>
|
||||
require(['ckeditor'], function () {
|
||||
window.createEditor('[name=content]', {height: 560});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
@ -1,30 +0,0 @@
|
||||
{extend name="../../admin/view/main"}
|
||||
|
||||
{block name='content'}
|
||||
<div class="think-box-notify margin-bottom-15">
|
||||
<b>温馨提示:</b>如需添加新内容,需要在<b> 系统管理 </b>的<b> 数据字典 </b>中添加类型为 “<b>{$type|default=''}</b>” 的记录。
|
||||
</div>
|
||||
<div class="layui-row layui-col-space15 portal-block-container notselect">
|
||||
{foreach $types as $key=>$type}
|
||||
<div class="layui-col-sm4 layui-col-md4 layui-col-lg3">
|
||||
<!--{if auth('edit')}-->
|
||||
<div class="pointer" data-open="{:url('edit')}?type={$key}">
|
||||
<div class="portal-block-item nowrap think-bg-violet">
|
||||
<div class="font-s14">编辑页面</div>
|
||||
<div class="font-s18">{$type.name|default=''}</div>
|
||||
</div>
|
||||
<i class="portal-block-icon layui-icon layui-icon-read"></i>
|
||||
</div>
|
||||
<!--{else}-->
|
||||
<div>
|
||||
<div class="portal-block-item nowrap think-bg-violet">
|
||||
<div class="font-s14">编辑页面</div>
|
||||
<div class="font-s18">{$type.name|default=''}</div>
|
||||
</div>
|
||||
<i class="portal-block-icon layui-icon layui-icon-read"></i>
|
||||
</div>
|
||||
<!--{/if}-->
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
{/block}
|
@ -1,90 +0,0 @@
|
||||
{extend name="../../admin/view/main"}
|
||||
|
||||
{block name='content'}
|
||||
<form action="{:sysuri()}" class="layui-form layui-card" data-auto="true" method="post">
|
||||
<div class="layui-card-body">
|
||||
|
||||
<div class="layui-form-item label-required-prev">
|
||||
<span class="help-label"><b>支付方式图标</b>Payment Image</span>
|
||||
<label class="relative block label-required-null">
|
||||
<input class="layui-input think-bg-gray" pattern="^https?://" name="cover" placeholder="请上传支付方式图标" required value='{$vo.cover|default=""}'>
|
||||
<a class="layui-icon layui-icon-upload input-right-icon" data-field="cover" data-file data-type="png,jpg,gif,jpeg"></a>
|
||||
<script>$('[name="cover"]').uploadOneImage()</script>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<label class="layui-form-item relative block">
|
||||
<span class="help-label"><b>支付方式名称</b>Payment Name</span>
|
||||
<input class="layui-input" maxlength="50" name="name" placeholder="请输入支付名称" required value="{$vo.name|default=''}"/>
|
||||
<span class="help-block"><b>必填,</b>请填写支付方式名称,支付名称尽量不要重复,字符不要太长一般4-6个汉字</span>
|
||||
</label>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<span class="help-label"><b>支付通道方式</b>Payment Channel</span>
|
||||
<label class="block full-width">
|
||||
{empty name='vo.type'}
|
||||
<select name="type" class="layui-select" lay-filter="payment-type" lay-search>
|
||||
{foreach $payments as $k=>$v}{if isset($vo.type) and $vo.type eq $k}
|
||||
<option selected value="{$k}">{$v.name} ( {$v.allow} )</option>
|
||||
{else}
|
||||
<option value="{$k}">{$v.name} ( {$v.allow} )</option>
|
||||
{/if}{/foreach}
|
||||
</select>
|
||||
{else}
|
||||
<select name="type" class="layui-select" disabled lay-filter="payment-type">
|
||||
{foreach $payments as $k=>$v}{if isset($vo.type) and $vo.type eq $k}
|
||||
<option selected value="{$k}">{$v.name} ( {$v.allow} )</option>
|
||||
{else}
|
||||
<option value="{$k}">{$v.name} ( {$v.allow} )</option>
|
||||
{/if}{/foreach}
|
||||
</select>
|
||||
<input name="type" type="hidden" value="{$vo.type}">
|
||||
{/empty}
|
||||
<span class="help-block"><b>必选,</b>请选择预置的支付方式,支付通道创建之后不能修改,请谨慎选择并配置参数</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="layui-hide" data-payment-type="wechat">{include file='base/payment/form_wechat'}</div>
|
||||
<div class="layui-hide" data-payment-type="alipay">{include file='base/payment/form_alipay'}</div>
|
||||
<div class="layui-hide" data-payment-type="joinpay">{include file='base/payment/form_joinpay'}</div>
|
||||
<div class="layui-hide" data-payment-type="voucher">{include file='base/payment/form_voucher'}</div>
|
||||
|
||||
<label class="layui-form-item relative layui-hide">
|
||||
<span class="help-label"><b>支付描述</b>Payment Remark</span>
|
||||
<textarea class="layui-textarea" name="remark" placeholder="请输入支付描述">{$vo.remark|default=''}</textarea>
|
||||
</label>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
{notempty name='vo.id'}<input name='id' type='hidden' value='{$vo.id}'>{/notempty}
|
||||
{notempty name='vo.code'}<input name='code' type='hidden' value='{$vo.code}'>{/notempty}
|
||||
|
||||
<div class="layui-form-item text-center">
|
||||
<button class="layui-btn" type='submit'>保存数据</button>
|
||||
<button class="layui-btn layui-btn-danger" data-confirm="确定要取消编辑吗?" data-history-back type='button'>取消编辑</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</form>
|
||||
{/block}
|
||||
|
||||
{block name='script'}
|
||||
<script>
|
||||
(function (apply) {
|
||||
apply({value: $('select[name=type]').val()});
|
||||
layui.form.on('select(payment-type)', apply);
|
||||
})(function (data) {
|
||||
if (data.value.indexOf('wechat') > -1) {
|
||||
$('[data-payment-type]').not($('[data-payment-type="wechat"]').removeClass('layui-hide')).addClass('layui-hide');
|
||||
} else if (data.value.indexOf('alipay') > -1) {
|
||||
$('[data-payment-type]').not($('[data-payment-type="alipay"]').removeClass('layui-hide')).addClass('layui-hide');
|
||||
} else if (data.value.indexOf('joinpay') > -1) {
|
||||
$('[data-payment-type]').not($('[data-payment-type="joinpay"]').removeClass('layui-hide')).addClass('layui-hide');
|
||||
} else if (data.value.indexOf('voucher') > -1) {
|
||||
$('[data-payment-type]').not($('[data-payment-type="voucher"]').removeClass('layui-hide')).addClass('layui-hide');
|
||||
} else {
|
||||
$('[data-payment-type]').addClass('layui-hide');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{/block}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user