LAPTOP-FO2T5SIU\35838 7 月之前
父节点
当前提交
379d2cb4bd

+ 4 - 4
pro-base/src/main/java/com/idea/customerManagement/service/RoomSelectionInfoService.java

@@ -298,8 +298,8 @@ public class RoomSelectionInfoService implements BaseService<RoomSelectionInfo,
     public void downLoad(RoomSelectionInfoDto model, HttpServletRequest request, HttpServletResponse response) {
 
         String filePath = "/home/project/settleDown/tem/roomConfirmationSheet.docx";
-        String picturePath = "C:\\Users\\35838\\Pictures\\liuhaizhu.jpg";
-        String sealPath = "C:\\Users\\35838\\Pictures\\seal.png";
+//        String picturePath = "C:\\Users\\35838\\Pictures\\liuhaizhu.jpg";
+//        String sealPath = "C:\\Users\\35838\\Pictures\\seal.png";
         String fileName = "房源确认单.docx";
         String customerManagementId = model.getCustomerManagementId();
         BuyerExample buyerExample = new BuyerExample();
@@ -324,8 +324,8 @@ public class RoomSelectionInfoService implements BaseService<RoomSelectionInfo,
             data.put("${roomNumber}", roomResponse.getRoomNumber());
             data.put("${roomChooseDate}", roomChooseDate);
             data.put("${username}", loginName);
-            picData.put("${picture}", picturePath);
-            sealData.put("${seal}", sealPath);
+//            picData.put("${picture}", picturePath);
+//            sealData.put("${seal}", sealPath);
             ReplaceWord.operateWord(response, filePath, fileName, data, picData, sealData);
         }