fix: CSVダウンロード実行後の初期表示を修正

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2024-04-16 16:41:47 +09:00
parent f897f34672
commit 1a95ca1c84
2 changed files with 2 additions and 0 deletions

View File

@ -270,6 +270,7 @@ def inst_emp_csv_download(
ta_cd=csv_download_form.ta_cd,
inst_cd=csv_download_form.inst_cd,
emp_cd=csv_download_form.emp_cd,
emp_chg_type_cd=csv_download_form.emp_chg_type_cd,
apply_date_from=csv_download_form.apply_date_from,
start_date_from=csv_download_form.start_date_from,
start_date_to=csv_download_form.start_date_to,

View File

@ -9,6 +9,7 @@ class InstEmpCsvDownloadViewModel(BaseModel):
ta_cd: str = ''
inst_cd: str = ''
emp_cd: str = ''
emp_chg_type_cd: str = ''
apply_date_from: str = ''
start_date_from: str = ''
start_date_to: str = ''