新增
This commit is contained in:
@@ -25,6 +25,82 @@ class OrderController extends BaseAdminController
|
||||
return $this->dataLists(new OrderLists());
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 同步企业微信对外收款账单到订单
|
||||
* 员工直接在企业微信发起收款(未经过后台创建)时,通过此接口拉取并创建订单
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function syncWechatWorkBills()
|
||||
{
|
||||
$beginStr = $this->request->get('begin_time', date('Y-m-d', strtotime('-7 days')));
|
||||
$endStr = $this->request->get('end_time', date('Y-m-d'));
|
||||
$beginTime = strtotime($beginStr . ' 00:00:00');
|
||||
$endTime = strtotime($endStr . ' 23:59:59');
|
||||
if ($beginTime >= $endTime) {
|
||||
return $this->fail('开始时间必须早于结束时间');
|
||||
}
|
||||
if ($endTime - $beginTime > 31 * 86400) {
|
||||
return $this->fail('企业微信接口限制:时间范围不能超过31天');
|
||||
}
|
||||
|
||||
$result = OrderLogic::syncFromWechatWorkBills($beginTime, $endTime);
|
||||
if (!empty($result['errors']) && $result['created'] === 0 && $result['updated'] === 0) {
|
||||
return $this->fail(implode(';', $result['errors']));
|
||||
}
|
||||
return $this->success('同步完成', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 调试:测试企业微信对外收款 API 连接(返回原始响应,用于排查同步为0的问题)
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function syncWechatWorkBillsDebug()
|
||||
{
|
||||
$beginStr = $this->request->get('begin_time', date('Y-m-d'));
|
||||
$endStr = $this->request->get('end_time', date('Y-m-d'));
|
||||
$payeeUserid = trim((string)$this->request->get('payee_userid', ''));
|
||||
$beginTime = strtotime($beginStr . ' 00:00:00');
|
||||
$endTime = strtotime($endStr . ' 23:59:59');
|
||||
$service = new \app\common\service\wechat\WechatWorkExternalPayService();
|
||||
$config = config('pay.wechat_work', []);
|
||||
$debug = [
|
||||
'config_ok' => !empty($config['corp_id']) && !empty($config['external_pay_secret']),
|
||||
'corp_id' => $config['corp_id'] ? substr($config['corp_id'], 0, 8) . '***' : '(空)',
|
||||
'time_range' => [$beginStr, $endStr],
|
||||
'payee_userid' => $payeeUserid ?: '(未指定,查全部)',
|
||||
'access_token' => $service->getAccessToken() ? '已获取' : '获取失败',
|
||||
];
|
||||
$resp = $service->getBillList($beginTime, $endTime, $payeeUserid, '', 100);
|
||||
$debug['api_errcode'] = $resp['errcode'] ?? -999;
|
||||
$debug['api_errmsg'] = $resp['errmsg'] ?? '';
|
||||
$debug['bill_count'] = count($resp['bill_list'] ?? []);
|
||||
$debug['next_cursor'] = !empty($resp['next_cursor']) ? '有' : '无';
|
||||
$debug['page1'] = $resp;
|
||||
if (!empty($resp['next_cursor']) && $debug['bill_count'] === 0) {
|
||||
$resp2 = $service->getBillList($beginTime, $endTime, $payeeUserid, $resp['next_cursor'], 100);
|
||||
$debug['page2_errcode'] = $resp2['errcode'] ?? -999;
|
||||
$debug['page2_bill_count'] = count($resp2['bill_list'] ?? []);
|
||||
$debug['page2_sample'] = isset($resp2['bill_list'][0]) ? $resp2['bill_list'][0] : null;
|
||||
}
|
||||
if ($debug['bill_count'] === 0 && empty($payeeUserid)) {
|
||||
$admins = \app\common\model\auth\Admin::where('work_wechat_userid', '<>', '')
|
||||
->whereNull('delete_time')->column('work_wechat_userid', 'id');
|
||||
$debug['try_payee_userids'] = array_values(array_filter(array_unique($admins)));
|
||||
$debug['tip'] = '若 try_payee_userids 有值,可传 payee_userid=xxx 重试(如 ?payee_userid=GaoXingLiang)';
|
||||
}
|
||||
return $this->success('调试信息', $debug);
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 今日收益(按角色权限)
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function todayRevenue()
|
||||
{
|
||||
$result = OrderLogic::todayRevenue($this->adminId, $this->adminInfo);
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 订单统计(挂号费/药品费用)
|
||||
* @return \think\response\Json
|
||||
@@ -70,14 +146,46 @@ class OrderController extends BaseAdminController
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 编辑订单
|
||||
* @notes 创建企业微信对外收款订单
|
||||
* 返回 order_no,供员工在企业微信发起收款时作为商户订单号(out_trade_no)使用
|
||||
* 收款成功后,微信支付回调会自动更新订单为已支付
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function createForWechatWork()
|
||||
{
|
||||
$params = (new OrderValidate())->post()->goCheck('create');
|
||||
$params['creator_id'] = $this->adminId;
|
||||
|
||||
$result = OrderLogic::createForWechatWork($params);
|
||||
if (!$result) {
|
||||
return $this->fail(OrderLogic::getError());
|
||||
}
|
||||
|
||||
return $this->success('创建成功,请在企业微信收款时使用以下订单号', [
|
||||
'order_no' => $result['order_no'],
|
||||
'order' => $result['order'],
|
||||
'tip' => '在企业微信发起对外收款时,将上述订单号填写为「商户订单号」',
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 编辑订单(关联患者、订单类型)
|
||||
* 权限:超管或指定角色组可修改任意订单;其他用户只能修改自己创建的订单
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$params = (new OrderValidate())->post()->goCheck('edit');
|
||||
$orderId = (int)$params['id'];
|
||||
$order = \app\common\model\Order::find($orderId);
|
||||
if (!$order) {
|
||||
return $this->fail('订单不存在');
|
||||
}
|
||||
if (!$this->canEditOrder($order)) {
|
||||
return $this->fail('无权限修改此订单');
|
||||
}
|
||||
|
||||
$result = OrderLogic::edit((int)$params['id'], $params);
|
||||
$result = OrderLogic::edit($orderId, $params);
|
||||
if (!$result) {
|
||||
return $this->fail(OrderLogic::getError());
|
||||
}
|
||||
@@ -85,6 +193,22 @@ class OrderController extends BaseAdminController
|
||||
return $this->success('编辑成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 是否可编辑指定订单(超管或指定角色可编辑任意,否则只能编辑自己创建的)
|
||||
*/
|
||||
private function canEditOrder($order): bool
|
||||
{
|
||||
if (!empty($this->adminInfo['root']) && $this->adminInfo['root'] == 1) {
|
||||
return true;
|
||||
}
|
||||
$editAllRoles = config('project.order_edit_all_roles', [0, 3]);
|
||||
$roleIds = \app\common\model\auth\AdminRole::where('admin_id', $this->adminId)->column('role_id');
|
||||
if (count(array_intersect($roleIds, $editAllRoles)) > 0) {
|
||||
return true;
|
||||
}
|
||||
return (int)$order->creator_id === $this->adminId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 支付订单
|
||||
* @return \think\response\Json
|
||||
|
||||
@@ -4,11 +4,13 @@ declare(strict_types=1);
|
||||
|
||||
namespace app\adminapi\controller\order;
|
||||
|
||||
use app\adminapi\logic\order\OrderLogic;
|
||||
use app\common\model\Order;
|
||||
use think\response\Xml;
|
||||
|
||||
/**
|
||||
* 微信支付回调控制器
|
||||
* 支持:1) 预创建订单的支付 2) 员工直接在企业微信发起对外收款(自动创建订单)
|
||||
* Class WechatNotifyController
|
||||
* @package app\adminapi\controller\order
|
||||
*/
|
||||
@@ -33,24 +35,36 @@ class WechatNotifyController
|
||||
return $this->xmlResponse('FAIL', '签名验证失败');
|
||||
}
|
||||
|
||||
// 验证金额
|
||||
$order = Order::where('order_no', $data['out_trade_no'])->find();
|
||||
$outTradeNo = $data['out_trade_no'] ?? '';
|
||||
$totalFee = (int)($data['total_fee'] ?? 0);
|
||||
$amount = $totalFee / 100;
|
||||
$transactionId = $data['transaction_id'] ?? '';
|
||||
|
||||
$order = Order::where('order_no', $outTradeNo)->find();
|
||||
|
||||
if (!$order) {
|
||||
// 订单不存在:员工直接在企业微信发起收款,自动创建订单并标记已支付
|
||||
if ($data['result_code'] == 'SUCCESS' && $totalFee > 0) {
|
||||
$newOrder = OrderLogic::createFromCallback($outTradeNo, $amount, $transactionId);
|
||||
if ($newOrder) {
|
||||
return $this->xmlResponse('SUCCESS', '支付成功');
|
||||
}
|
||||
}
|
||||
return $this->xmlResponse('FAIL', '订单不存在');
|
||||
}
|
||||
|
||||
if ((int)$data['total_fee'] != (int)($order->amount * 100)) {
|
||||
if ($totalFee != (int)($order->amount * 100)) {
|
||||
return $this->xmlResponse('FAIL', '金额不匹配');
|
||||
}
|
||||
|
||||
// 验证交易状态
|
||||
if ($data['result_code'] == 'SUCCESS') {
|
||||
// 更新订单状态
|
||||
// 更新订单状态(支持普通微信支付及企业微信对外收款)
|
||||
if ($order->status == 1) { // 只有待支付的订单才能更新
|
||||
$order->status = 2; // 已支付
|
||||
$order->payment_method = 'wechat';
|
||||
$order->payment_time = date('Y-m-d H:i:s');
|
||||
$order->trade_no = $data['transaction_id'];
|
||||
$order->trade_no = $transactionId;
|
||||
$order->save();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user