Quellcode durchsuchen

订单收付信息bugfix

zhijiezhao vor 3 Jahren
Ursprung
Commit
3730455953

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

@@ -500,9 +500,9 @@
                     </td>
                     <td>
                         <c:if test="${s.onlinePayFlag eq 0}">
-                            <c:if test="${s.settleAmount<s.shouldPayShopAmount&&s.settleAmount>0}">部分结算</c:if>
-                            <c:if test="${s.settleAmount=s.shouldPayShopAmount&&s.settleAmount>0}">已结算</c:if>
-                            <c:if test="${s.settleAmount=0}">未结算</c:if>
+                            <c:if test="${s.settleAmount < s.shouldPayShopAmount && s.settleAmount > 0}">部分结算</c:if>
+                            <c:if test="${s.settleAmount eq s.shouldPayShopAmount && s.settleAmount > 0}">已结算</c:if>
+                            <c:if test="${s.settleAmount eq 0}">未结算</c:if>
                         </c:if>
                         <c:if test="${s.onlinePayFlag eq 1}">---</c:if>
                     </td>