diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-11-22 12:52:11 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-11-28 11:40:17 +0100 |
commit | 50c110423360b4fe5b44409ebeb26721e929623a (patch) | |
tree | 470cd5417c723494ea9edfdc12578d765b5a655d /archaeological_warehouse/wizards.py | |
parent | 71f84bfa3da9db01215cc61318d6a1e3f8536c28 (diff) | |
download | Ishtar-50c110423360b4fe5b44409ebeb26721e929623a.tar.bz2 Ishtar-50c110423360b4fe5b44409ebeb26721e929623a.zip |
Fix packaging creation and treatment tests
Diffstat (limited to 'archaeological_warehouse/wizards.py')
-rw-r--r-- | archaeological_warehouse/wizards.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_warehouse/wizards.py b/archaeological_warehouse/wizards.py index a0d46e892..03258f1e2 100644 --- a/archaeological_warehouse/wizards.py +++ b/archaeological_warehouse/wizards.py @@ -60,6 +60,8 @@ class PackagingWizard(TreatmentWizard): items = dct.pop('basket') else: dct.pop('basket') + if 'treatment_type_list' in dct: + dct.pop('treatment_type_list') treatment = Treatment(**dct) extra_args_for_new = {"container": dct['container']} treatment.save(items=items, user=self.request.user, |