결제관리 요금결제내역 검색 기능 오류 수정 - 전월 버튼 선택시 종료일 표시 오류 수정
- 전월 버튼 선택시 종료일 표시 오류 수정
@ee1bb786b9a82ab95bcc961f3a28127551995d4a
--- src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp
... | ... | @@ -19,7 +19,7 @@ |
| 19 | 19 |
//이전달 첫날/마지막날 조회 |
| 20 | 20 |
if(date.getMonth()+1 == 1){
|
| 21 | 21 |
lastfulstday = date.getFullYear()-1 + "/12" + "/01"; |
| 22 |
- lastfuledday = date.getFullYear()-1 + "/12" + "/"+new Date(date.getFullYear()-1, 12, 0); |
|
| 22 |
+ lastfuledday = date.getFullYear()-1 + "/12" + "/"+new Date(date.getFullYear()-1, 12, 0).getDate()+""; |
|
| 23 | 23 |
}else{
|
| 24 | 24 |
lastfulstday = date.getFullYear() + "/" ; |
| 25 | 25 |
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?