Merge branch 'master' into campain
This commit is contained in:
commit
019ddb68dd
@ -208,11 +208,19 @@ function fnRevDetailPop03(msgGroupId){
|
|||||||
<p>
|
<p>
|
||||||
<i></i>충전금액
|
<i></i>충전금액
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="clearfix">
|
<div class="clearfix">
|
||||||
<p>캐시</p>
|
<p>캐시</p>
|
||||||
<p>
|
<p>
|
||||||
<span>
|
<span>
|
||||||
<fmt:formatNumber value="${sumPayMoney}" pattern="" />
|
<c:choose>
|
||||||
|
<c:when test="${not empty sumPayMoney}">
|
||||||
|
<fmt:formatNumber value="${sumPayMoney}" pattern="" />
|
||||||
|
</c:when>
|
||||||
|
<c:otherwise>
|
||||||
|
<fmt:formatNumber value="0" pattern="" />
|
||||||
|
</c:otherwise>
|
||||||
|
</c:choose>
|
||||||
</span>원
|
</span>원
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@ -220,7 +228,14 @@ function fnRevDetailPop03(msgGroupId){
|
|||||||
<p>포인트</p>
|
<p>포인트</p>
|
||||||
<p>
|
<p>
|
||||||
<span>
|
<span>
|
||||||
<fmt:formatNumber value="${sumPoint}" pattern="" />
|
<c:choose>
|
||||||
|
<c:when test="${not empty sumPoint}">
|
||||||
|
<fmt:formatNumber value="${sumPoint}" pattern="" />
|
||||||
|
</c:when>
|
||||||
|
<c:otherwise>
|
||||||
|
<fmt:formatNumber value="0" pattern="" />
|
||||||
|
</c:otherwise>
|
||||||
|
</c:choose>
|
||||||
</span>원
|
</span>원
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user