|
@@ -127,7 +127,7 @@
|
|
|
<div class="operation-block ${order.shopOrderID}" style="position: sticky;">
|
|
|
<shiro:hasPermission name="order:order:edit">
|
|
|
<%--包含订单充值商品就不显示--%>
|
|
|
- <c:if test="${order.status == 0 and order.organizeId != 4}">
|
|
|
+ <c:if test="${order.status == 0 and order.organizeID != 4}">
|
|
|
<a href="${ctx}/order/confirmOrder?orderID=${order.orderID}&shopOrderID=${order.shopOrderID}"
|
|
|
onclick="return confirmx('是否确认订单?', this.href)">确认订单</a>
|
|
|
</c:if>
|
|
@@ -139,7 +139,7 @@
|
|
|
<a href="${ctx}/order/logisticsDetails?orderID=${order.orderID}&shopOrderID=${order.shopOrderID}">发货记录</a>
|
|
|
<a href="${ctx}/bulkpurchase/cmRefundsProduct/toShopOrderRefundRecord.rpc?orderID=${order.orderID}&shopOrderID=${order.shopOrderID}&from=2">收付款记录</a>
|
|
|
<a href="${ctx}/bulkpurchase/cmRefundsProduct/toRecturnRecordByShopOrder.rpc?orderID=${order.orderID}&shopOrderID=${order.shopOrderID}">退款(退货)记录</a>
|
|
|
- <c:if test="${order.status != 4 and order.payStatus eq 1 and order.receiptStatus eq 1 and order.sendOutStatus eq 1 and order.organizeId != 4}">
|
|
|
+ <c:if test="${order.status != 4 and order.payStatus eq 1 and order.receiptStatus eq 1 and order.sendOutStatus eq 1 and order.organizeID != 4}">
|
|
|
<a href="${ctx}/order/cancelShopOrder?shopOrderId=${order.shopOrderID}"
|
|
|
onclick="return confirmx('是否取消订单?', this.href)">取消订单</a>
|
|
|
</c:if>
|
|
@@ -220,7 +220,7 @@
|
|
|
<%-- </c:if>--%>
|
|
|
<%--</div>--%>
|
|
|
<div class="remarkShow">
|
|
|
- <b>订单备注<a onclick="openRemarks(${order.orderID},${order.shopOrderID})" style="color: white">展开 《</a></b>
|
|
|
+ <b><a onclick="openRemarks(${order.orderID},${order.shopOrderID})" style="color: white">订单备注展开 《</a></b>
|
|
|
</div>
|
|
|
<div class="order-rows">
|
|
|
<div>
|
|
@@ -556,7 +556,12 @@
|
|
|
</c:if>
|
|
|
<c:if test="${order.orderInvoice.type eq 1}">
|
|
|
<%-- <input name="invoice" type="radio" checked="checked">--%>
|
|
|
- <label>增值税普通发票</label>
|
|
|
+ <c:if test="${order.orderInvoice.invoiceTitleType eq 0}">
|
|
|
+ <label>普票 - 个人</label>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${order.orderInvoice.invoiceTitleType eq 1}">
|
|
|
+ <label>普票 - 单位</label>
|
|
|
+ </c:if>
|
|
|
</c:if>
|
|
|
<c:if test="${order.orderInvoice.type eq 2}">
|
|
|
<%-- <input name="invoice" type="radio" checked="checked">--%>
|
|
@@ -569,19 +574,20 @@
|
|
|
<c:if test="${order.orderInvoice.type == 1}">
|
|
|
<br>
|
|
|
<div>
|
|
|
- <span>
|
|
|
- <c:if test="${order.orderInvoice.invoiceTitleType eq 0}">
|
|
|
- 个人抬头:
|
|
|
- <span>${order.orderInvoice.invoiceTitle}</span>
|
|
|
- </c:if>
|
|
|
- <c:if test="${order.orderInvoice.invoiceTitleType eq 1}">
|
|
|
- 企业抬头:
|
|
|
- <span>${order.orderInvoice.invoiceTitle}</span>
|
|
|
-
|
|
|
- 纳税人识别号:
|
|
|
- <span>${order.orderInvoice.corporationTaxNum}</span>
|
|
|
- </c:if>
|
|
|
- </span>
|
|
|
+ <span> 发票抬头: ${order.orderInvoice.invoiceTitle} </span>
|
|
|
+ <c:if test="${order.orderInvoice.invoiceTitleType eq 1}">
|
|
|
+ <span>单位税号:${order.orderInvoice.corporationTaxNum}</span>
|
|
|
+ <table>
|
|
|
+ <tr>
|
|
|
+ <td><span>注册地址:${order.orderInvoice.registeredAddress}</span></td>
|
|
|
+ <td><span>注册电话:${order.orderInvoice.registeredPhone}</span></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td><span>开户银行:${empty order.orderInvoice.openBank ? '无' : order.orderInvoice.openBank }</span></td>
|
|
|
+ <td><span>银行账号:${empty order.orderInvoice.bankAccountNo ? '无' : order.orderInvoice.bankAccountNo }</span></td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </c:if>
|
|
|
</div>
|
|
|
</c:if>
|
|
|
<c:if test="${order.orderInvoice.type == 2}">
|