From 37228d95e8be6406fad13495cd1512cc81b625aa Mon Sep 17 00:00:00 2001 From: ZengTao <2773468879@qq.com> Date: 星期一, 14 十月 2024 08:12:44 +0800 Subject: [PATCH] 大理片添加指定人工位置下片,下片添加扫码打印标签,添加卧式理片最大尺寸限制 --- hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/service/impl/DownGlassInfoServiceImpl.java | 15 +++++++++++++-- 1 files changed, 13 insertions(+), 2 deletions(-) diff --git a/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/service/impl/DownGlassInfoServiceImpl.java b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/service/impl/DownGlassInfoServiceImpl.java index 7fdfb28..5cc725b 100644 --- a/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/service/impl/DownGlassInfoServiceImpl.java +++ b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/service/impl/DownGlassInfoServiceImpl.java @@ -19,6 +19,7 @@ import com.mes.downworkstation.entity.dto.DownGlassInfoDTO; import com.mes.downworkstation.service.DownWorkstationService; import com.mes.glassinfo.entity.GlassInfo; +import com.mes.glassinfo.service.GlassInfoService; import com.mes.job.DownLoadCacheGlassTask; import com.mes.pp.service.FlowCardService; import lombok.extern.slf4j.Slf4j; @@ -52,6 +53,9 @@ @Autowired FlowCardService flowCardService; + + @Autowired + GlassInfoService glassInfoService; /** * 鏍规嵁娴佺▼鍗″彿鏌ヨ鏈�澶у簭鍙� @@ -224,8 +228,15 @@ @Override public List<Map<String, Object>> downGlassLabelPrint(DownGlassInfo downGlassInfo) { - - List<Map<String, Object>> resultList = baseMapper.downGlassLabelPrint(downGlassInfo.getFlowCardId(), downGlassInfo.getLayer()); + List<Map<String, Object>> resultList = null; + if (downGlassInfo.getGlassId() != null) { + resultList = glassInfoService.listMaps( + new LambdaQueryWrapper<GlassInfo>() + .eq(GlassInfo::getGlassId,downGlassInfo.getGlassId()) + ); + }else{ + resultList = baseMapper.downGlassLabelPrint(downGlassInfo.getFlowCardId(), downGlassInfo.getLayer()); + } log.info("MES钀芥灦鏁版嵁:{}", resultList); //鑾峰彇ERP鏍囩鎵�闇�鐨勪俊鎭� List<Map<String, Object>> labelInfo; -- Gitblit v1.8.0