123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
- <html>
- <head>
- <title>付款修改记录</title>
- <meta name="decorator" content="default"/>
- <style type="text/css">
- .table th {text-align: center}
- .table td {text-align: center}
- .pay-table th {
- background: #f9f9f9;
- }
- .pay-table tr:first-child th {
- background: #eee !important;
- }
- .pay-table td {
- background: #fff !important;
- }
- .form-horizontal .controls {
- margin-left: 0;
- }
- .dateInput input {
- width: 150px;
- }
- .clause span {
- margin-left: 30px;
- }
- #productTable th {
- text-align: center;
- white-space: nowrap;
- }
- #productTable td {
- text-align: center;
- white-space: nowrap;
- }
- .conList .btn:nth-of-type(1){
- margin-left: 25px;
- }
- .upload-content .conList .btn:nth-of-type(1) {
- width: 90px;
- height: 100px;
- border: 2px solid #eee;
- background: #fff;
- position: relative;
- }
- .upload-content .conList .btn:nth-of-type(1)>div {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- color: #666;
- }
- .upload-content .conList .btn:nth-of-type(1) span {
- font-size: 35px;
- }
- .upload-content .conList .btn:nth-of-type(1) h5 {
- color: #666;
- }
- </style>
- <script type="text/javascript">
- $(document).ready(function() {
- $("#inputForm").validate({
- ignore:"",
- submitHandler: function(form){
- loading('正在提交,请稍等...');
- form.submit();
- },
- errorContainer: "#messageBox",
- errorPlacement: function(error, element) {
- $("#messageBox").text("输入有误,请先更正。");
- if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
- error.appendTo(element.parent().parent());
- } else {
- error.insertAfter(element);
- }
- }
- });
- });
- function page(n,s){
- $("#pageNo").val(n);
- $("#pageSize").val(s);
- $("#searchForm").submit();
- return false;
- }
- //初始化默认清除本地本地Item数据
- </script>
- </head>
- <body>
- <ul class="nav nav-tabs">
- <li><a href="${ctx}/order/cmPayShop">付款列表</a></li>
- <li><a href="${ctx}/shopOrder/payOrderList?operatingMode=1">申请付款</a></li>
- <li class="active"><a href="${ctx}/shopOrder/payShopRemark?shopOrderId=${shopOrderId}">付款备注</a></li>
- </ul>
- <ul class="nav nav-tabs" id="myTab">
- <li><a href="${ctx}/shopOrder/payShopRemark?shopOrderId=${shopOrderId}">修改成本备注</a></li>
- <li><a href="${ctx}/shopOrder/shopOtherRemark?shopOrderId=${shopOrderId}">修改付第三方备注</a></li>
- <li class="active"><a href="${ctx}/shopOrder/differencePriceRemark?shopOrderId=${shopOrderId}">修改供应商差价备注</a></li>
- </ul>
- <c:if test="${not empty differenceList}">
- <c:forEach items="${differenceList}" var="difference">
- <div style="margin-left: 35px">
- <div style="font-weight: bold;width: 100%;float: left;"><span style="float: left;">${difference.systemName}</span><span style="float: left;margin-left:10px;"><fmt:formatDate value="${difference.updateTime}" pattern="yyyy-MM-dd HH:mm"/></span></div>
- <br><br>
- <div>
- <ul>差价类型:${difference.type eq 1 ? "成本上升":"成本降低"}</ul>
- <ul>差价金额:${difference.differencePrice}</ul>
- <c:if test="${not empty difference.payShopId}">
- <ul>付款单名称:${difference.name}</ul>
- <ul>转账支付:${difference.transferPayFee}</ul>
- <ul>开户名:${difference.bankAccountName} <span style="margin-left: 100px">账号:${difference.bankAccount}</span></ul>
- <ul>开户行:${difference.bankName} <span style="margin-left: 100px">账户类型:${difference.bankType eq 0 ? "公账":"私账"}</span></ul>
- <ul>欠款抵扣:${difference.balancePayFee}</ul>
- </c:if>
- <c:if test="${not empty difference.refundShop}">
- <ul>接收退款方式:</ul>
- <div style="margin-left: 100px">
- <div class="refund-wrapper">
- <c:if test="${difference.refundShop.refundWay == '1'||difference.refundShop.refundWay == '3'}">
- 线下转账:
- <c:if test="${difference.refundShop.refundType == '1'}">
- 建设银行7297
- </c:if>
- <c:if test="${difference.refundShop.refundType == '2'}">
- 中信银行0897
- </c:if>
- <c:if test="${difference.refundShop.refundType == '3'}">
- 中信银行7172
- </c:if>
- <c:if test="${difference.refundShop.refundType == '4'}">
- 广发银行0115
- </c:if>
- <c:if test="${difference.refundShop.refundType == '5'}">
- 广发银行5461
- </c:if>
- <c:if test="${difference.refundShop.refundType == '6'}">
- 虚拟银行0000
- </c:if>
- ,¥${difference.refundShop.refundAmount}
- </c:if>
- </div>
- <div class="refund-wrapper">
- <c:if test="${difference.refundShop.refundWay == '2'||difference.refundShop.refundWay == '3'}">
- 余额账户:¥${difference.refundShop.refundBalanceAmount}
- </c:if>
- </div>
- </div><br>
- </c:if>
- <ul>备注内容:${difference.remark}</ul>
- <ul>图片:
- <c:forEach items="${difference.remarkImages}" var="image">
- <img src="${image}" style="height: 100px;width: 100px">
- </c:forEach>
- </ul>
- </div>
- </div>
- <hr>
- </c:forEach>
- </c:if>
- <c:if test="${empty differenceList}">
- <p style="text-align: center;"><font color="#1e90ff">暂无备注数据……</font></p>
- </c:if>
- <div>
- <input id="btnCancel" class="btn" type="button" value="返回" onclick="history.go(-1)"/>
- </div>
- <script>
- </script>
- </body>
- </html>
|