Skip to content
Snippets Groups Projects
Commit faa33a54 authored by Tomáš Valenta's avatar Tomáš Valenta
Browse files

fix value parsing

parent 954380ee
No related branches found
No related tags found
No related merge requests found
Pipeline #16751 passed
......@@ -35,6 +35,7 @@ class SingnatureRepresentativeFormSet(BaseInlineFormSet):
attempted_signature_position.isnumeric()
and key.startswith("contractee_signatures-")
and key.endswith("-id")
and value.isnumeric()
):
signature_position = int(attempted_signature_position)
signature_id = int(value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment