From 42b3ed3c042d768bc2085aded6f5c6cfded16475 Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期二, 22 四月 2025 18:38:51 +0800
Subject: [PATCH] bug修改

---
 ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/WithdrawController.java |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/WithdrawController.java b/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/WithdrawController.java
index 31de0b8..acb54bd 100644
--- a/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/WithdrawController.java
+++ b/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/WithdrawController.java
@@ -321,7 +321,7 @@
         withdrawDetailVO.setServeId(order.getServeId());
         withdrawDetailVO.setServeName(order.getServeName());
         withdrawDetailVO.setServePrice(order.getServePrice());
-        withdrawDetailVO.setOrderMoney(order.getOrderMoney());
+        withdrawDetailVO.setOrderMoney(order.getSubsidy()!=null?order.getSubsidy().add(order.getOrderMoney()):order.getOrderMoney());
         withdrawDetailVO.setReservationName(order.getReservationName());
         withdrawDetailVO.setReservationPhone(order.getReservationPhone());
         withdrawDetailVO.setReservationAddress(order.getReservationAddress());
@@ -340,6 +340,7 @@
             withdrawDetailVO.setWithdrawalState(withdraw.getState());
             withdrawDetailVO.setWithdrawalTime(withdraw.getCreateTime());
         }
+        withdrawDetailVO.setPackageInfo(order.getPackageInfo());
         withdrawDetailVO.setAddress(order.getAddress());
         if (null != serveRecord) {
             withdrawDetailVO.setPhoto(serveRecord.getPhoto());

--
Gitblit v1.7.1