|
@@ -214,7 +214,19 @@
|
|
|
<td> ${s.buyer}</td>
|
|
|
<td colspan="3">${s.shopName}</td>
|
|
|
<c:if test="${empty s.brokerage}"><td colspan="3" class="payCm-t"></td></c:if>
|
|
|
- <c:if test="${not empty s.brokerage}"><td colspan="3" class="">${s.brokerage}</td></c:if>
|
|
|
+ <c:if test="${not empty s.brokerage}">
|
|
|
+ <td colspan="3" class="">
|
|
|
+ <c:if test="${s.differenceType ne 1 && s.differenceType ne 2}">
|
|
|
+ <fmt:formatNumber value="${s.brokerage}" type="number" pattern="#,##0.00"/>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${s.differenceType eq 1 && s.differencePrice > 0}">
|
|
|
+ <fmt:formatNumber value="${s.brokerage-s.differencePrice}" type="number" pattern="#,##0.00"/>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${s.differenceType eq 2 && s.differencePrice > 0}">
|
|
|
+ <fmt:formatNumber value="${s.brokerage+s.differencePrice}" type="number" pattern="#,##0.00"/>>
|
|
|
+ </c:if>
|
|
|
+ </td>
|
|
|
+ </c:if>
|
|
|
<%-- 子订单佣金=商品总佣金+机构运费-付第三方-供应商运费-分摊优惠--%>
|
|
|
<td colspan="3" class="product-fee">${s.shopProductAmount}</td>
|
|
|
|
|
@@ -360,7 +372,7 @@
|
|
|
0.00
|
|
|
</c:if>
|
|
|
</td>
|
|
|
- <td><fmt:formatNumber value="${p.returnedNum == p.returnedNum ? 0.00 : p.cmCostPrice}" type="number" pattern="#,##0.00"/></td>
|
|
|
+ <td><fmt:formatNumber value="${p.returnedNum == p.num ? 0.00 : p.cmCostPrice}" type="number" pattern="#,##0.00"/></td>
|
|
|
<td class="p-taxes">${(p.includedTax ne '' and p.includedTax eq 0 and p.invoiceType eq 3)?'---':empty p.supplierTaxRate?0.0:p.supplierTaxRate}${(p.includedTax ne '' and p.includedTax eq 0 and p.invoiceType eq 3)?'':'%'}</td>
|
|
|
<td class="p-taxes">${(p.includedTax ne '' and (p.includedTax eq 1 or (p.includedTax eq 0 and p.invoiceType eq 3)))?'---': empty p.singleShouldPayTotalTax ?0.00:p.singleShouldPayTotalTax}</td>
|
|
|
<td class="p-taxes-t"><c:choose>
|