From 40248b8256fab26f30bc486d72a74db0f0bd632b Mon Sep 17 00:00:00 2001 From: Cefin Date: Tue, 7 Dec 2021 14:40:27 +0000 Subject: adding dimensions on initial fore treatmentN1 #4873 --- archaeological_finds/wizards.py | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/wizards.py b/archaeological_finds/wizards.py index 83b0d6f37..0465792b7 100644 --- a/archaeological_finds/wizards.py +++ b/archaeological_finds/wizards.py @@ -308,9 +308,23 @@ class TreatmentN1Wizard(TreatmentBase): return initial simple_key = ["material_type_quality"] multi_key = ["material_type", "object_type", "communicabilitie"] - numeric_key = ["find_number", "min_number_of_individuals"] + numeric_key = [ + "find_number", + "min_number_of_individuals", + "length", + "width", + "height", + "diameter", + "circumference", + "thickness", + "volume", + "weight", + "clutter_long_side", + "clutter_short_side", + "clutter_height" + ] desc_key = ["decoration", "inscription", "comment", "dating_comment", - "description"] + "description", "dimensions_comment"] char_key = ["manufacturing_place"] for k in simple_key + numeric_key + desc_key + char_key: -- cgit v1.2.3