사용요금내역 거래명세서 및 사용내역서 팝업 오류 수정
- 발송 내역에서 성공 내역이 하나도 없는 경우 팝업 오류 발생하여 예외 처리
This commit is contained in:
parent
2ba3dd567d
commit
81ecb26487
@ -4787,16 +4787,21 @@ public class MjonPayController {
|
|||||||
if(!"".equals(startDate)) {
|
if(!"".equals(startDate)) {
|
||||||
startDate = startDate.replaceAll("/", "-");
|
startDate = startDate.replaceAll("/", "-");
|
||||||
}else {
|
}else {
|
||||||
|
|
||||||
|
if(minRegDate != null) {
|
||||||
startDate = transFormat.format(minRegDate);
|
startDate = transFormat.format(minRegDate);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
model.addAttribute("startDate", startDate);
|
model.addAttribute("startDate", startDate);
|
||||||
|
|
||||||
String endDate = mjonMsgVO.getEndDate();
|
String endDate = mjonMsgVO.getEndDate();
|
||||||
if(!"".equals(endDate)) {
|
if(!"".equals(endDate)) {
|
||||||
endDate = endDate.replaceAll("/", "-");
|
endDate = endDate.replaceAll("/", "-");
|
||||||
}else {
|
}else {
|
||||||
|
if(maxRegDate != null) {
|
||||||
endDate = transFormat.format(maxRegDate);
|
endDate = transFormat.format(maxRegDate);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
model.addAttribute("endDate", endDate);
|
model.addAttribute("endDate", endDate);
|
||||||
|
|
||||||
DecimalFormat decFormat = new DecimalFormat("###,###");
|
DecimalFormat decFormat = new DecimalFormat("###,###");
|
||||||
@ -5023,16 +5028,20 @@ public class MjonPayController {
|
|||||||
if(!"".equals(startDate)) {
|
if(!"".equals(startDate)) {
|
||||||
startDate = startDate.replaceAll("/", "-");
|
startDate = startDate.replaceAll("/", "-");
|
||||||
}else {
|
}else {
|
||||||
|
if(minRegDate != null) {
|
||||||
startDate = transFormat.format(minRegDate);
|
startDate = transFormat.format(minRegDate);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
model.addAttribute("startDate", startDate);
|
model.addAttribute("startDate", startDate);
|
||||||
|
|
||||||
String endDate = mjonMsgVO.getEndDate();
|
String endDate = mjonMsgVO.getEndDate();
|
||||||
if(!"".equals(endDate)) {
|
if(!"".equals(endDate)) {
|
||||||
endDate = endDate.replaceAll("/", "-");
|
endDate = endDate.replaceAll("/", "-");
|
||||||
}else {
|
}else {
|
||||||
|
if(maxRegDate != null) {
|
||||||
endDate = transFormat.format(maxRegDate);
|
endDate = transFormat.format(maxRegDate);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
model.addAttribute("endDate", endDate);
|
model.addAttribute("endDate", endDate);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -194,7 +194,7 @@ function f_print(){
|
|||||||
<c:otherwise>
|
<c:otherwise>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5">
|
<td colspan="5">
|
||||||
<spring:message code="common.nodata.msg" />
|
거래내역이 없습니다.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</c:otherwise>
|
</c:otherwise>
|
||||||
|
|||||||
@ -165,7 +165,7 @@ function f_print(){
|
|||||||
<c:otherwise>
|
<c:otherwise>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5">
|
<td colspan="5">
|
||||||
<spring:message code="common.nodata.msg" />
|
사용내역이 없습니다.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</c:otherwise>
|
</c:otherwise>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user