소스 검색

bug fixes

plf 3 년 전
부모
커밋
f6aa6a3d5e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/main/webapp/WEB-INF/views/modules/order/checkPaymentOrder.jsp

+ 2 - 2
src/main/webapp/WEB-INF/views/modules/order/checkPaymentOrder.jsp

@@ -311,10 +311,10 @@
                         </td>
                         <td colspan="2">
                             <fmt:formatNumber value="${so.shouldPayShopAmount}" type="number" pattern="#,##0.00"/>
-                            <c:if test="${so.differenceType eq 1 && s.differencePrice > 0}">
+                            <c:if test="${so.differenceType eq 1 && so.differencePrice > 0}">
                                 <font color="red">(需补差价¥${so.differencePrice})</font>
                             </c:if>
-                            <c:if test="${so.differenceType eq 2 && s.differencePrice > 0}">
+                            <c:if test="${so.differenceType eq 2 && so.differencePrice > 0}">
                                 <font color="red">(需退差价¥${so.differencePrice})</font>
                             </c:if>
                         </td>