diff options
| -rw-r--r-- | archaeological_finds/wizards.py | 18 | 
1 files changed, 16 insertions, 2 deletions
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:  | 
