From c55387f287690dd3335e56d7749195d361803628 Mon Sep 17 00:00:00 2001
From: zhoushihao <zsh19950802@163.com>
Date: 星期五, 19 十二月 2025 13:59:54 +0800
Subject: [PATCH] 1、 查询是否除膜优化:由单选改为复选框选择

---
 hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/impl/HollowGlassOutRelationInfoServiceImpl.java |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/impl/HollowGlassOutRelationInfoServiceImpl.java b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/impl/HollowGlassOutRelationInfoServiceImpl.java
index 02f1921..717b4bc 100644
--- a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/impl/HollowGlassOutRelationInfoServiceImpl.java
+++ b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/impl/HollowGlassOutRelationInfoServiceImpl.java
@@ -389,7 +389,9 @@
             info.setState(Const.HOLLOW_FLOW_CARD_NEW);
             info.setTotalPairQuantity(request.getTotalPairQuantity());
             info.setFormulaId(request.getFormulaId());
-            info.setFilmRemove(request.getFilmRemove());
+            if (CollectionUtil.isNotEmpty(request.getFilmRemoveList())){
+                info.setFilmRemove(String.join(",", request.getFilmRemoveList()));
+            }
             this.save(info);
             // 鏌ヨ鍑洪渶瑕佸嚭鐜荤拑鐨勯槦鍒�
             List<Integer> layerList = new ArrayList<>();

--
Gitblit v1.8.0