팩스 발송 > 팩스전송내역 검색기간 전월 선택시 종료일 표시 오류 수정
@3409c69867ad0113d9935c712366d6099b2854d2
--- src/main/webapp/js/user/fax/sendListInit.js
+++ src/main/webapp/js/user/fax/sendListInit.js
... | ... | @@ -16,7 +16,7 @@ |
| 16 | 16 |
//이전달 첫날/마지막날 조회 |
| 17 | 17 |
if(date.getMonth()+1 == 1){
|
| 18 | 18 |
lastfulstday = date.getFullYear()-1 + "/12" + "/01"; |
| 19 |
- lastfuledday = date.getFullYear()-1 + "/12" + "/"+new Date(date.getFullYear()-1, 12, 0); |
|
| 19 |
+ lastfuledday = date.getFullYear()-1 + "/12" + "/"+new Date(date.getFullYear()-1, 12, 0).getDate()+""; |
|
| 20 | 20 |
}else{
|
| 21 | 21 |
lastfulstday = date.getFullYear() + "/" ; |
| 22 | 22 |
lastfulstday += date.getMonth() < 10 ? "0"+ (date.getMonth()) : date.getMonth()+"" ; |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?