aboutsummaryrefslogtreecommitdiffstats
path: root/forms.py
diff options
context:
space:
mode:
authorPetr Šmerkl <46304018+SveterCZE@users.noreply.github.com>2021-05-07 23:46:06 +0200
committerPetr Šmerkl <46304018+SveterCZE@users.noreply.github.com>2021-05-07 23:46:06 +0200
commit69758200a54a8731089b6394944440c3a8f5d976 (patch)
treea0832d2a5dfad33440a036f5707617ba53cc599e /forms.py
parentc7d33751e951f9cc4dfd90467854cc6e20cc341b (diff)
downloadjustice-69758200a54a8731089b6394944440c3a8f5d976.tar.gz
update search by legal persons
Diffstat (limited to 'forms.py')
-rw-r--r--forms.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/forms.py b/forms.py
index 56d9b65..5f67564 100644
--- a/forms.py
+++ b/forms.py
@@ -147,6 +147,23 @@ class EntitySearchForm(Form):
entity_number_search = StringField(u'IČO nebo zahraniční registrační číslo:')
entity_number_search_selection = SelectField('', choices=search_options)
+ # REMOVE DUPLICITY
+ obec_search = StringField(u'Obec:')
+ obec_search_selection = SelectField('', choices=search_options)
+ obec_search_actual = SelectField('', choices=actual_options)
+
+ ulice_search = StringField(u'Ulice:')
+ ulice_search_selection = SelectField('', choices=search_options)
+ ulice_search_actual = SelectField('', choices=actual_options)
+
+ cp_search = StringField(u'Číslo popisné:')
+ cp_search_selection = SelectField('', choices=search_options)
+ cp_search_actual = SelectField('', choices=actual_options)
+
+ co_search = StringField(u'Číslo orientační:')
+ co_search_selection = SelectField('', choices=search_options)
+ co_search_actual = SelectField('', choices=actual_options)
+
entity_actual_selection = SelectField('', choices=actual_options)
class CompanyForm(Form):