diff --git a/src/components/flight/ControlApprovalsTable.js b/src/components/flight/ControlApprovalsTable.js index a2b5e2af..062b67ad 100644 --- a/src/components/flight/ControlApprovalsTable.js +++ b/src/components/flight/ControlApprovalsTable.js @@ -1017,19 +1017,11 @@ export default function ControlApprovalsTable(props) { try { const fileDetails = { pdf: { - url: `${HOST}api/bas/dos/plan/download/han-com?searchStDt=${ - props.startDate - }&searchEndDt=${props.endDate}&selectZone=${props.filterArea}${ - props.filterId ? '&approvalCd=${props.filterId}' : '' - }`, + url: `${HOST}api/bas/dos/plan/download/han-com?searchStDt=${props.startDate}&searchEndDt=${props.endDate}`, name: '비행승인 관련 검토결과.hwp' }, excel: { - url: `${HOST}api/bas/dos/plan/download/excel?searchStDt=${ - props.startDate - }&searchEndDt=${props.endDate}&selectZone=${props.filterArea}${ - props.filterId ? '&approvalCd=${props.filterId}' : '' - }`, + url: `${HOST}api/bas/dos/plan/download/excel?searchStDt=${props.startDate}&searchEndDt=${props.endDate}`, name: '비행승인 검토.xlsx' } }; @@ -1232,7 +1224,7 @@ export default function ControlApprovalsTable(props) {
- {formatDate(props.startDate)} + {`${formatDate(props.startDate)} `} {props.endDate && props.startDate !== props.endDate ? '~' + formatDate(props.endDate) + ' ' : null}