From fd523aa5694b7f9350f87b30cab6bb3ae34e1c77 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期二, 08 十月 2024 11:01:46 +0800
Subject: [PATCH] log4j2.yml配置文件中增加删除过期日志文件配置

---
 pms-parent/pms-web-station/src/main/java/com/dy/pmsStation/assemblyStep/AssemblyStepSv.java |   49 ++++++++++++++++++++++++++-----------------------
 1 files changed, 26 insertions(+), 23 deletions(-)

diff --git a/pms-parent/pms-web-station/src/main/java/com/dy/pmsStation/assemblyStep/AssemblyStepSv.java b/pms-parent/pms-web-station/src/main/java/com/dy/pmsStation/assemblyStep/AssemblyStepSv.java
index f825f4a..860b7d3 100644
--- a/pms-parent/pms-web-station/src/main/java/com/dy/pmsStation/assemblyStep/AssemblyStepSv.java
+++ b/pms-parent/pms-web-station/src/main/java/com/dy/pmsStation/assemblyStep/AssemblyStepSv.java
@@ -246,6 +246,9 @@
         } else {
             PrProductionNode node = nodeDao.selectByPrimaryKey(workLast.nodeId);
             record.nodeContent = node.content;
+            PrProductionNode nextNode = nodeDao.selectNodeBySort(node.getProcessId() , (node.getSort() + 1));
+            record.nextNodeContent = nextNode.content;
+            record.nextNode = nextNode.id;
             if (node.isRecord) {
                 record.deviceCycleContent = node.deviceCycleContent;
             }
@@ -477,7 +480,7 @@
                 return;
             }
             FileRestVo fileRestVo = fileOperate.parseHashcode(fmUrl, file.hash);
-            doc.webUrl = fileRestVo.fileSysRestUrl + fileRestVo.fileWebDownloadPath + doc.fileId;
+            doc.webUrl = fileRestVo.fileWebDownloadPath + doc.fileId;
             doc.orgName = file.orgName;
             doc.extName = file.extName;
         });
@@ -519,32 +522,32 @@
             return;
         }
         FileRestVo fileRestVo = fileOperate.parseHashcode(fmUrl, file.hash);
-        ins.webUrl = fileRestVo.fileSysRestUrl + fileRestVo.fileWebDownloadPath + ins.fileId;
+        ins.webUrl = fileRestVo.fileWebDownloadPath + ins.fileId;
         ins.orgName = file.orgName;
         ins.extName = file.extName;
     }
 
-    private PltProduct addWebUrl(PltProduct pro) {
-        if (pro != null) {
-            if (pro.image != null) {
-                String filePathWithWebUrl = getFilePathWithWebUrl(pro.image);
-                pro.imageWebPath = filePathWithWebUrl;
-                pro.imageWebPathZip = fileOperate.getImgFileZipPath(filePathWithWebUrl);
-            }
-
-            pro.proFiles.stream().forEach(doc -> {
-                OthFile file = othFileMapper.selectByPrimaryKey(doc.fileId);
-                if (file == null) {
-                    return;
-                }
-                FileRestVo fileRestVo = fileOperate.parseHashcode(fmUrl, file.hash);
-                doc.webUrl = fileRestVo.fileSysRestUrl + fileRestVo.fileWebDownloadPath + doc.fileId;
-                doc.orgName = file.orgName;
-                doc.extName = file.extName;
-            });
-        }
-        return pro;
-    }
+//    private PltProduct addWebUrl(PltProduct pro) {
+//        if (pro != null) {
+//            if (pro.image != null) {
+//                String filePathWithWebUrl = getFilePathWithWebUrl(pro.image);
+//                pro.imageWebPath = filePathWithWebUrl;
+//                pro.imageWebPathZip = fileOperate.getImgFileZipPath(filePathWithWebUrl);
+//            }
+//
+//            pro.proFiles.stream().forEach(doc -> {
+//                OthFile file = othFileMapper.selectByPrimaryKey(doc.fileId);
+//                if (file == null) {
+//                    return;
+//                }
+//                FileRestVo fileRestVo = fileOperate.parseHashcode(fmUrl, file.hash);
+//                doc.webUrl = fileRestVo.fileWebDownloadPath + doc.fileId;
+//                doc.orgName = file.orgName;
+//                doc.extName = file.extName;
+//            });
+//        }
+//        return pro;
+//    }
 
     private String getFilePathWithWebUrl(Long fileId) {
         OthFile file = othFileMapper.selectByPrimaryKey(fileId);

--
Gitblit v1.8.0