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

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

82 lines
2.4 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\controller\admin\v1\merchant;
use app\controller\admin\AuthController;
use app\services\order\StoreOrderServices;
use app\services\user\UserServices;
use think\annotation\Inject;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
/**
* 核销订单
* Class SystemVerifyOrder
* @package app\controller\admin\v1\merchant
*/
class SystemVerifyOrder extends AuthController
{
/**
* @var StoreOrderServices
*/
#[Inject]
protected StoreOrderServices $services;
/**
* 获取核销订单列表
* return json
*/
public function list()
{
$where = $this->request->getMore([
['data', '', '', 'time'],
['real_name', ''],
['store_id', ''],
['type', ''],
['field_key', ''],
]);
$data = $this->services->getOrderList($where + ['status' => 6], ['*'], ['store', 'staff']);
return $this->success(['count' => $data['count'], 'data' => $data['data'], 'badge' => $data['stat']]);
}
/**
* 未使用,获取核销订单头部
* @return mixed
*/
public function getVerifyBadge()
{
return $this->success([]);
}
/**
* 订单列表推荐人详细
* @param $uid
* @return mixed
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function order_spread_user($uid)
{
/** @var UserServices $userServices */
$userServices = app()->make(UserServices::class);
$userInfo = $userServices->getUserInfo((int)$uid);
$spread = [];
if ($userInfo['spread_uid']) {
$spread = $userServices->getUserInfo((int)$userInfo['spread_uid']);
if ($spread) {
$spread = $spread->toArray();
$spread['brokerage_pric'] = $spread['brokerage_price'];
$spread['birthday'] = $spread['birthday'] ?: '';
$spread['last_time'] = $spread['last_time'] ? date('Y-m-d H:i:s', $spread['last_time']) : '';
}
}
return $this->success(['spread' => $spread]);
}
}