Browse Source

订单详情运费显示

Aslee 4 years ago
parent
commit
9499e03978
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/main/webapp/WEB-INF/views/modules/order/orderDetail.jsp

+ 4 - 4
src/main/webapp/WEB-INF/views/modules/order/orderDetail.jsp

@@ -260,16 +260,16 @@
             <c:if test="${order.discountFee le 0}">¥0.00</c:if>
         </td>
         <td>运费:
-            <c:if test="${order.freight == 0}">
+            <c:if test="${order.freePostFlag == 0}">
                 包邮
             </c:if>
-            <c:if test="${order.freight == -1}">
+            <c:if test="${order.freePostFlag == -1}">
                 到付
             </c:if>
-            <c:if test="${order.freight == -2}">
+            <c:if test="${order.freePostFlag == -2}">
                 仪器到付-产品包邮
             </c:if>
-            <c:if test="${order.freight != -1 && order.freight != 0 && order.freight != -2}">
+            <c:if test="${order.freePostFlag != -1 && order.freePostFlag != 0 && order.freePostFlag != -2}">
                 <fmt:formatNumber value="${order.freight}" type="currency"/>
             </c:if>
         </td>