Skip to content
Snippets Groups Projects
Commit ea77b951 authored by pkupczyk's avatar pkupczyk
Browse files

SP-1118 / BIS-628 : iPad App for Aebersold Lab - name sample category the same...

SP-1118 / BIS-628 : iPad App for Aebersold Lab - name sample category the same no matter what context it is used in (root sample, experiment sample, parent/child sample) - adding different names but using same perm ids confuses the ipad client

SVN: 30462
parent db102062
No related branches found
No related tags found
No related merge requests found
...@@ -101,7 +101,7 @@ def createExperimentDictionaries(experiments, dictionaryType): ...@@ -101,7 +101,7 @@ def createExperimentDictionaries(experiments, dictionaryType):
for experiment in experiments: for experiment in experiments:
dictionary = {} dictionary = {}
dictionary['PERM_ID'] = getExperimentIPadId(experiment, dictionaryType) dictionary['PERM_ID'] = getExperimentIPadId(experiment, dictionaryType)
dictionary['CATEGORY'] = ' Experiment (' + experiment.getExperimentType() + ')' dictionary['CATEGORY'] = 'Experiment (' + experiment.getExperimentType() + ')'
dictionary['SUMMARY_HEADER'] = experiment.getExperimentIdentifier() dictionary['SUMMARY_HEADER'] = experiment.getExperimentIdentifier()
dictionary['SUMMARY'] = None dictionary['SUMMARY'] = None
dictionary['IDENTIFIER'] = 'Experiment' dictionary['IDENTIFIER'] = 'Experiment'
...@@ -159,14 +159,7 @@ def createSampleDictionaries(samples, dictionaryType): ...@@ -159,14 +159,7 @@ def createSampleDictionaries(samples, dictionaryType):
for sample in samples: for sample in samples:
dictionary = {} dictionary = {}
dictionary['PERM_ID'] = getSampleIPadId(sample, dictionaryType) dictionary['PERM_ID'] = getSampleIPadId(sample, dictionaryType)
dictionary['CATEGORY'] = 'Sample (' + sample.getSampleType() + ')'
if dictionaryType == DRILL_SAMPLE_PARENT:
dictionary['CATEGORY'] = 'Parent (' + sample.getSampleType() + ')'
elif dictionaryType == DRILL_SAMPLE_CHILD:
dictionary['CATEGORY'] = 'Child (' + sample.getSampleType() + ')'
else:
dictionary['CATEGORY'] = 'Sample (' + sample.getSampleType() + ')'
dictionary['SUMMARY_HEADER'] = sample.getSampleIdentifier() dictionary['SUMMARY_HEADER'] = sample.getSampleIdentifier()
dictionary['SUMMARY'] = None dictionary['SUMMARY'] = None
dictionary['IDENTIFIER'] = 'Sample' dictionary['IDENTIFIER'] = 'Sample'
......
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