diff --git a/CHANGES.rst b/CHANGES.rst index a43ca41413..ecf20a3d73 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -15,6 +15,7 @@ Changelog **Fixed** +- #1575 Fix Uncertainties are displayed although result is below Detection Limit - #1572 Fix Unable to get the previous status when duplicated in review history - #1570 Fix Date time picker does not translates well to current language - #1571 Fix Cannot reject Sample when contact has no email set diff --git a/bika/lims/browser/analyses/view.py b/bika/lims/browser/analyses/view.py index cccd5599f1..04946f6e36 100644 --- a/bika/lims/browser/analyses/view.py +++ b/bika/lims/browser/analyses/view.py @@ -985,8 +985,8 @@ def _folder_item_uncertainty(self, analysis_brain, item): sciformat=int(self.scinot)) if formatted: item["Uncertainty"] = formatted - else: - item["Uncertainty"] = obj.getUncertainty(result) + item["before"]["Uncertainty"] = "± " + item["after"]["Uncertainty"] = obj.getUnit() if self.is_uncertainty_edition_allowed(analysis_brain): item["allow_edit"].append("Uncertainty")