Skip to content

Commit

Permalink
[bugfix/#571] 전월 회계내역 추가 안되는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ldh8994 committed Jan 16, 2025
1 parent acbea02 commit c6c960b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Components/Common/Modal/ModalUpdateBankHistory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,18 +104,18 @@ const ModalUpdateBankHistory = () => {
const today = new Date();
if (historyType === 'income') {
if (infos.dateUsed === '') { alert('사용일을 입력해주세요'); return false}
if (new Date(infos.dateUsed).toDateString() >= today.toDateString()) { alert(`${today.getMonth()+1}${today.getDate()}일 이전의 날짜를 입력해주세요`); return false}
if (new Date(infos.dateUsed).toISOString().slice(0, 10) > today.toISOString().slice(0, 10)) { alert(`${today.getMonth()+1}${today.getDate()}일 이전의 날짜를 입력해주세요`); return false}
if (infos.title === '') { alert('제목을 입력해주세요'); return false}
if (infos.income !== String(parseInt(infos.income))) { alert('올바른 수입액을 입력해주세요'); return false}
if (parseInt(infos.income) <= 0) { alert('1원 이상의 수입액을 입력해주세요'); return false}
}

if (historyType === 'outcome') {
if (infos.dateUsed === '') { alert('사용일을 입력해주세요'); return false}
if (new Date(infos.dateUsed).toDateString() >= today.toDateString()) { alert(`${today.getMonth()+1}${today.getDate()}일 이전의 날짜를 입력해주세요`); return false}
if (new Date(infos.dateUsed).toISOString().slice(0, 10) > today.toISOString().slice(0, 10)) { alert(`${today.getMonth()+1}${today.getDate()}일 이전의 날짜를 입력해주세요`); return false}
if (infos.title === '') { alert('제목을 입력해주세요'); return false}
if (selectedInfos.name === '') { alert('회비 사용 부원을 입력해주세요'); return false}
if (infos.outcome !== String(parseInt(infos.outcome))) { alert('올바른 수입액을 입력해주세요'); return false}
if (infos.outcome !== String(parseInt(infos.outcome))) { alert('올바른 지출액을 입력해주세요'); return false}
if (parseInt(infos.outcome) <= 0) { alert('1원 이상의 지출액을 입력해주세요'); return false}
}

Expand Down

0 comments on commit c6c960b

Please sign in to comment.