diff options
author | Petr Šmerkl <46304018+SveterCZE@users.noreply.github.com> | 2021-05-07 23:46:06 +0200 |
---|---|---|
committer | Petr Šmerkl <46304018+SveterCZE@users.noreply.github.com> | 2021-05-07 23:46:06 +0200 |
commit | 69758200a54a8731089b6394944440c3a8f5d976 (patch) | |
tree | a0832d2a5dfad33440a036f5707617ba53cc599e /forms.py | |
parent | c7d33751e951f9cc4dfd90467854cc6e20cc341b (diff) | |
download | justice-69758200a54a8731089b6394944440c3a8f5d976.tar.gz |
update search by legal persons
Diffstat (limited to 'forms.py')
-rw-r--r-- | forms.py | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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): |