fix:修改新beta updateROI方法使用错误文件地址问题

This commit is contained in:
xiaoguangbin 2024-12-02 17:14:39 +08:00
parent ce7ca4f569
commit 17fecbc83b

View File

@ -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