From 69758200a54a8731089b6394944440c3a8f5d976 Mon Sep 17 00:00:00 2001 From: Petr Šmerkl <46304018+SveterCZE@users.noreply.github.com> Date: Fri, 7 May 2021 23:46:06 +0200 Subject: update search by legal persons --- forms.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'forms.py') 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): -- cgit