summaryrefslogtreecommitdiff
path: root/archaeological_finds/models_finds.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/models_finds.py')
-rw-r--r--archaeological_finds/models_finds.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py
index 57ae1549c..7daf4cbec 100644
--- a/archaeological_finds/models_finds.py
+++ b/archaeological_finds/models_finds.py
@@ -840,10 +840,10 @@ class Find(BulkUpdatedItem, ValueGetter, DocumentItem, BaseHistorizedItem,
key for key, lbl in STATISTIC_MODALITIES_OPTIONS.items()]
STATISTIC_SUM_VARIABLE = OrderedDict(
(
- ("pk", _("Number")),
- ("weight", _("Weight")),
- ("estimated_value", _("Estimated value")),
- ("insurance_value", _("Insurance value")),
+ ("pk", (_("Number"), 1)),
+ ("weight", (_("Weight (kg)"), 0.001)),
+ ("estimated_value", (_("Estimated value"), 1)),
+ ("insurance_value", (_("Insurance value"), 1)),
)
)