|
|
@ -137,8 +137,10 @@ public class OptScanCtrlModule { |
|
|
|
} |
|
|
|
|
|
|
|
private void doOptScan() throws AppException { |
|
|
|
SampleInfo sampleInfo = optScanModuleStateMgr.getOptScanModule().getSampleInfo(); |
|
|
|
ProjInfo projInfo = optScanModuleStateMgr.getOptScanModule().getProjInfo(); |
|
|
|
|
|
|
|
var state = optScanModuleStateMgr.getOptScanModule(); |
|
|
|
SampleInfo sampleInfo = state.getSampleInfo(); |
|
|
|
ProjInfo projInfo = new ProjInfo(state.getProjBuildinInfo(), state.getProjExtInfoCard()); |
|
|
|
|
|
|
|
List<ReactionReport.ReactionResult> reactionResults = new ArrayList<>(); |
|
|
|
List<OptScanResult> optScanResults = new ArrayList<>(); |
|
|
@ -177,8 +179,11 @@ public class OptScanCtrlModule { |
|
|
|
} |
|
|
|
|
|
|
|
private void doOptScanVirtual() throws AppException { |
|
|
|
SampleInfo sampleInfo = optScanModuleStateMgr.getOptScanModule().getSampleInfo(); |
|
|
|
ProjInfo projInfo = optScanModuleStateMgr.getOptScanModule().getProjInfo(); |
|
|
|
var state = optScanModuleStateMgr.getOptScanModule(); |
|
|
|
|
|
|
|
SampleInfo sampleInfo = state.getSampleInfo(); |
|
|
|
ProjInfo projInfo = new ProjInfo(state.getProjBuildinInfo(), state.getProjExtInfoCard()); |
|
|
|
|
|
|
|
List<ReactionReport.ReactionResult> reactionResults = FakeReactionResultFactory.build(projInfo); |
|
|
|
List<OptScanResult> optScanResults = new ArrayList<>(); |
|
|
|
reactionRecordMgrService.addRecord(sampleInfo, projInfo, optScanResults, reactionResults); |
|
|
|