From 6e10770d2c121a88be0368c8764c47596bc884ba Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 27 Jun 2023 10:32:34 +0200 Subject: 🐛 sheet: fix float display for hectare MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_operations/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_operations') diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 9155ce3eb..4f0112710 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -1978,7 +1978,7 @@ class Operation( @property def surface_ha(self): if self.surface: - return self.surface / 10000.0 + return round(self.surface / 10000.0, 5) @property def cost_by_m2(self): -- cgit v1.2.3