Skip to content
Snippets Groups Projects
Commit 4b0bf157 authored by felmer's avatar felmer
Browse files

SSDM-3592: bug fixed by calling updateTemporaryCodes if automatic code...

SSDM-3592: bug fixed by calling updateTemporaryCodes if automatic code generator is condfigured. This is done for registerExperiment() and updateExperiment().

SVN: 36483
parent 953e5faf
No related branches found
No related tags found
No related merge requests found
...@@ -505,18 +505,19 @@ public class GenericClientService extends AbstractClientService implements IGene ...@@ -505,18 +505,19 @@ public class GenericClientService extends AbstractClientService implements IGene
final String samplesSessionKey, final NewExperiment experiment) final String samplesSessionKey, final NewExperiment experiment)
{ {
final String sessionToken = getSessionToken(); final String sessionToken = getSessionToken();
boolean autoGenerateCodes = experiment.isGenerateCodes();
BatchSamplesOperation parsedSamples = null;
if (experiment.isRegisterSamples()) if (experiment.isRegisterSamples())
{ {
final ExperimentIdentifier identifier = final ExperimentIdentifier identifier =
new ExperimentIdentifierFactory(experiment.getIdentifier()).createIdentifier(); new ExperimentIdentifierFactory(experiment.getIdentifier()).createIdentifier();
BatchSamplesOperation result = parsedSamples = parseSamples(
parseSamples( experiment.getSampleType(),
experiment.getSampleType(), samplesSessionKey,
samplesSessionKey, new SpaceIdentifier(identifier.getSpaceCode()).toString(), autoGenerateCodes,
new SpaceIdentifier(identifier.getSpaceCode()).toString(), experiment.isGenerateCodes(), false, null, BatchOperationKind.REGISTRATION);
false, null, BatchOperationKind.REGISTRATION); experiment.setNewSamples(parsedSamples.getSamples());
experiment.setNewSamples(result.getSamples()); experiment.setSamples(parsedSamples.getCodes());
experiment.setSamples(result.getCodes());
} }
class ExperimentRegistrationHelper extends AttachmentRegistrationHelper class ExperimentRegistrationHelper extends AttachmentRegistrationHelper
{ {
...@@ -530,6 +531,10 @@ public class GenericClientService extends AbstractClientService implements IGene ...@@ -530,6 +531,10 @@ public class GenericClientService extends AbstractClientService implements IGene
} }
ExperimentRegistrationHelper helper = new ExperimentRegistrationHelper(); ExperimentRegistrationHelper helper = new ExperimentRegistrationHelper();
helper.process(attachmentsSessionKey, getHttpSession(), experiment.getAttachments()); helper.process(attachmentsSessionKey, getHttpSession(), experiment.getAttachments());
if (autoGenerateCodes && shouldContinuousSampleCodesCreated() && parsedSamples != null)
{
updateTemporaryCodes(sessionToken, parsedSamples);
}
return helper.exp; return helper.exp;
} }
...@@ -1129,16 +1134,17 @@ public class GenericClientService extends AbstractClientService implements IGene ...@@ -1129,16 +1134,17 @@ public class GenericClientService extends AbstractClientService implements IGene
{ {
final String sessionToken = getSessionToken(); final String sessionToken = getSessionToken();
final ExperimentUpdateResult result = new ExperimentUpdateResult(); final ExperimentUpdateResult result = new ExperimentUpdateResult();
boolean autoGenerateCodes = updates.isGenerateCodes();
BatchSamplesOperation info = null;
if (updates.isRegisterSamples()) if (updates.isRegisterSamples())
{ {
final ProjectIdentifier newProject = final ProjectIdentifier newProject =
new ProjectIdentifierFactory(updates.getProjectIdentifier()).createIdentifier(); new ProjectIdentifierFactory(updates.getProjectIdentifier()).createIdentifier();
BatchSamplesOperation info = info = parseSamples(
parseSamples( updates.getSampleType(),
updates.getSampleType(), updates.getSamplesSessionKey(),
updates.getSamplesSessionKey(), new SpaceIdentifier(newProject.getSpaceCode()).toString(), autoGenerateCodes, false,
new SpaceIdentifier(newProject.getSpaceCode()).toString(), updates.isGenerateCodes(), false, null, BatchOperationKind.REGISTRATION);
null, BatchOperationKind.REGISTRATION);
updates.setNewSamples(info.getSamples()); updates.setNewSamples(info.getSamples());
updates.setSampleCodes(info.getCodes()); updates.setSampleCodes(info.getCodes());
} }
...@@ -1154,6 +1160,10 @@ public class GenericClientService extends AbstractClientService implements IGene ...@@ -1154,6 +1160,10 @@ public class GenericClientService extends AbstractClientService implements IGene
result.copyFrom(updateResult); result.copyFrom(updateResult);
} }
}.process(updates.getAttachmentSessionKey(), getHttpSession(), updates.getAttachments()); }.process(updates.getAttachmentSessionKey(), getHttpSession(), updates.getAttachments());
if (autoGenerateCodes && shouldContinuousSampleCodesCreated() && info != null)
{
updateTemporaryCodes(sessionToken, info);
}
return result; return result;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment