From 17fecbc83b39c29e4ed0164a6cd7f5c4a3c4e54a Mon Sep 17 00:00:00 2001 From: xiaoguangbin Date: Mon, 2 Dec 2024 17:14:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E6=96=B0beta=20updateROI?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E4=BD=BF=E7=94=A8=E9=94=99=E8=AF=AF=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=9C=B0=E5=9D=80=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jeecg/modules/service/impl/SelfStationServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jeecg-module-spectrum-analysis/src/main/java/org/jeecg/modules/service/impl/SelfStationServiceImpl.java b/jeecg-module-spectrum-analysis/src/main/java/org/jeecg/modules/service/impl/SelfStationServiceImpl.java index 65457613..c96d5e35 100644 --- a/jeecg-module-spectrum-analysis/src/main/java/org/jeecg/modules/service/impl/SelfStationServiceImpl.java +++ b/jeecg-module-spectrum-analysis/src/main/java/org/jeecg/modules/service/impl/SelfStationServiceImpl.java @@ -1138,9 +1138,9 @@ public class SelfStationServiceImpl extends AbstractLogOrReport implements ISelf // 根据ROI卡Gamma能谱数据 selfStationUtil.getGammaByROI("sample", roiBBoundaryStart, roiBBoundaryStop, selfStationData); SelfStationVueData sampleData = selfStationData.getSampleVueData(); - String path = StrUtil.subBefore(selfStationData.getSampleFilePathName(), StringPool.SLASH, true); + String path = StrUtil.subBefore(selfStationData.getSampleTmpPath(), StringPool.SLASH, true); // 生成gamma数据 - selfStationUtil.createGamma(path, selfStationData.getSampleFileName(), struct, sampleData); + selfStationUtil.createGamma(path, selfStationData.getSampleFilePathName(), struct, sampleData); } @Override