From 1690d4d06b0c20b3606e50e0844ef67e07947a0d Mon Sep 17 00:00:00 2001
From: phpcjl <phpcjl@gmail.com>
Date: 星期二, 10 十二月 2024 14:05:59 +0800
Subject: [PATCH] 1.

---
 ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/impl/OrderServiceImpl.java |   22 ++++++++--------------
 1 files changed, 8 insertions(+), 14 deletions(-)

diff --git a/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/impl/OrderServiceImpl.java b/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/impl/OrderServiceImpl.java
index 7724e42..31860a6 100644
--- a/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/impl/OrderServiceImpl.java
+++ b/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/impl/OrderServiceImpl.java
@@ -210,14 +210,15 @@
         orderMapper.updateById(order);
         Integer orderType = order.getOrderType();
         if (orderType.equals(OrderType.SERVICE.getCode())){
-            R<Technician> shopdetail = technicianClient.shopdetail(order.getTechnicianId());
-            if (shopdetail.getCode() != R.SUCCESS){
-                throw new ServiceException("获取技师信息失败");
+            R<TechnicianSubscribe> subscribeR = technicianClient.getSubscribeByOrderId(order.getId());
+            if (R.isError(subscribeR)){
+                throw new ServiceException("获取预约信息失败");
             }
-            Technician technician = shopdetail.getData();
-            R<Void> r = technicianClient.updateStatus(2, technician.getId());
-            if (r.getCode() != R.SUCCESS){
-                throw new ServiceException("修改技师状态失败");
+            TechnicianSubscribe subscribe = subscribeR.getData();
+            subscribe.setStatus(2);
+            R<Void> r = technicianClient.updateStatus(subscribe.getStatus(), subscribe.getId());
+            if (R.isError(r)){
+                throw new ServiceException("更新预约状态失败");
             }
         }
 
@@ -234,12 +235,5 @@
         JSONObject jsonObject = JSONObject.parseObject(content);
         Long days = jsonObject.getLong("days");
         commissionService.addToCommissionDelayQueue(order.getId(), LocalDateTime.now().plusDays(days));
-    }
-
-
-
-    @Override
-    public void commission(Long orderId) {
-
     }
 }

--
Gitblit v1.7.1