diff --git a/CHANGES.rst b/CHANGES.rst index 8bbd9bdb41..f37e79f730 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -18,6 +18,7 @@ Changelog **Fixed** +- #1472 Secondary samples - removal of analysis profile not possible - #1469 Fix Site Properties Generic Setup Export Step - #1467 Cannot override behavior of Batch folder when using `before_render` diff --git a/bika/lims/browser/analysisrequest/add2.py b/bika/lims/browser/analysisrequest/add2.py index 5d308d82a4..c525e72c6c 100644 --- a/bika/lims/browser/analysisrequest/add2.py +++ b/bika/lims/browser/analysisrequest/add2.py @@ -1067,10 +1067,6 @@ def get_primaryanalysisrequest_info(self, obj): sample_point = obj.getSamplePoint() container = obj.getContainer() deviation = obj.getSamplingDeviation() - preservation = obj.getPreservation() - specification = obj.getSpecification() - sample_template = obj.getTemplate() - profiles = obj.getProfiles() or [] cccontacts = obj.getCCContact() or [] contact = obj.getContact() @@ -1098,10 +1094,6 @@ def get_primaryanalysisrequest_info(self, obj): "StorageLocation": self.to_field_value(storage_location), "Container": self.to_field_value(container), "SamplingDeviation": self.to_field_value(deviation), - "Preservation": self.to_field_value(preservation), - "Specification": self.to_field_value(specification), - "Template": self.to_field_value(sample_template), - "Profiles": map(self.to_field_value, profiles), "Composite": {"value": obj.getComposite()} })