diff --git a/plasmid/source/core-plugins/eln-lims/1/dss/reporting-plugins/newbrowserapi/script.py b/plasmid/source/core-plugins/eln-lims/1/dss/reporting-plugins/newbrowserapi/script.py index 49450cca6d54ce69142d9ffe36db9fdd7f7bbeef..2b7a020d67ae0d3bb8d3d8e4817365cad28ce0de 100644 --- a/plasmid/source/core-plugins/eln-lims/1/dss/reporting-plugins/newbrowserapi/script.py +++ b/plasmid/source/core-plugins/eln-lims/1/dss/reporting-plugins/newbrowserapi/script.py @@ -187,9 +187,10 @@ def updateDataSet(tr, parameters, tableBuilder): metadata = parameters.get("metadata"); #java.util.LinkedHashMap<String, String> where the key is the name dataSet = tr.getDataSetForUpdate(dataSetCode); #Hack - Fix Sample Lost bug from openBIS, remove when SSDM-1979 is fix - sampleIdentifier = parameters.get("sampleIdentifier"); #String - dataSetSample = getSampleByIdentifierForUpdate(tr, sampleIdentifier); - dataSet.setSample(dataSetSample); + #In new openBIS versions if you set the already existing sample when doing a dataset update is deleted + #sampleIdentifier = parameters.get("sampleIdentifier"); #String + #dataSetSample = getSampleByIdentifierForUpdate(tr, sampleIdentifier); + #dataSet.setSample(dataSetSample); #Assign Data Set properties for key in metadata.keySet(): propertyValue = unicode(metadata[key]);