팩스 발송 > 팩스전송내역 검색기간 전월 선택시 종료일 표시 오류 수정

This commit is contained in:
rosewiper 2024-01-12 10:36:02 +09:00
parent ee1bb786b9
commit 3409c69867

View File

@ -16,7 +16,7 @@
//이전달 첫날/마지막날 조회 //이전달 첫날/마지막날 조회
if(date.getMonth()+1 == 1){ if(date.getMonth()+1 == 1){
lastfulstday = date.getFullYear()-1 + "/12" + "/01"; lastfulstday = date.getFullYear()-1 + "/12" + "/01";
lastfuledday = date.getFullYear()-1 + "/12" + "/"+new Date(date.getFullYear()-1, 12, 0); lastfuledday = date.getFullYear()-1 + "/12" + "/"+new Date(date.getFullYear()-1, 12, 0).getDate()+"";
}else{ }else{
lastfulstday = date.getFullYear() + "/" ; lastfulstday = date.getFullYear() + "/" ;
lastfulstday += date.getMonth() < 10 ? "0"+ (date.getMonth()) : date.getMonth()+"" ; lastfulstday += date.getMonth() < 10 ? "0"+ (date.getMonth()) : date.getMonth()+"" ;