cmFinanceReceiptsList.jsp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>进账信息管理</title>
  6. <meta name="decorator" content="default"/>
  7. <style type="text/css">
  8. .table th{text-align: center;}
  9. .table td{text-align: center;}
  10. .ftd {
  11. width: 100px;
  12. }
  13. </style>
  14. <script type="text/javascript">
  15. $(document).ready(function() {
  16. });
  17. function page(n,s){
  18. $("#pageNo").val(n);
  19. $("#pageSize").val(s);
  20. $("#searchForm").submit();
  21. return false;
  22. }
  23. </script>
  24. </head>
  25. <body>
  26. <ul class="nav nav-tabs">
  27. <li class="active"><a href="${ctx}/bulkpurchase/cmFinanceReceipts/">应收管理</a></li>
  28. </ul>
  29. <form:form id="searchForm" modelAttribute="cmFinanceReceipts" action="${ctx}/bulkpurchase/cmFinanceReceipts/" method="post" class="breadcrumb form-search">
  30. <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
  31. <input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
  32. <div class="ul-form">
  33. <label>ID:</label>
  34. <form:input path="id" htmlEscape="false" maxlength="11" class="input-medium" style="width:60px" />
  35. <label>订单号:</label>
  36. <form:input path="orderNo" htmlEscape="false" maxlength="50" class="ftd" />
  37. <label>交易号:</label>
  38. <form:input path="transactionNum" htmlEscape="false" maxlength="100" class="ftd"/>
  39. <label>交易类型:</label>
  40. <form:select path="transactionType" class="input-medium required" style="width:150px">
  41. <form:option value="" label="请选择"/>
  42. <form:options items="${fns:getDictList('transaction_Type')}" itemLabel="label" itemValue="value"
  43. htmlEscape="false"/>
  44. </form:select>
  45. <label>进账时间:</label>
  46. <form:input path="startTime" type="text" maxlength="20" class="input-mini Wdate" value="${startTime}"
  47. onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
  48. -
  49. <form:input path="endTime" type="text" maxlength="20" class="input-mini Wdate" value="${endTime}"
  50. onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
  51. <label>状态:</label>
  52. <form:select path="status" class="input-medium" style="width:100px">
  53. <form:option value="" label="请选择"/>
  54. <form:options items="${fns:getDictList('transaction_status')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
  55. </form:select>
  56. &nbsp;&nbsp;<input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
  57. <div class="clearfix"></div>
  58. </div>
  59. </form:form>
  60. <sys:message content="${message}"/>
  61. <table id="contentTable" class="table table-striped table-bordered table-condensed">
  62. <thead>
  63. <tr>
  64. <th>ID</th>
  65. <th>订单号</th>
  66. <th>交易号</th>
  67. <th>标题</th>
  68. <th>产品名</th>
  69. <th>交易方式</th>
  70. <th>交易类型</th>
  71. <th>支付方式</th>
  72. <th>总金额/总价</th>
  73. <th>抵扣总额</th>
  74. <th>应付总额</th>
  75. <th>进账时间</th>
  76. <th>审核时间</th>
  77. <th>状态</th>
  78. </tr>
  79. </thead>
  80. <tbody>
  81. <c:forEach items="${page.list}" var="cmFinanceReceipts">
  82. <tr>
  83. <td>
  84. ${cmFinanceReceipts.id}
  85. </td>
  86. <td>
  87. ${cmFinanceReceipts.orderNo}
  88. </td>
  89. <td>
  90. ${cmFinanceReceipts.transactionNum}
  91. </td>
  92. <td>
  93. ${cmFinanceReceipts.title}
  94. </td>
  95. <td>
  96. <div style='width:120px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;' title='${cmFinanceReceipts.productName}'>${cmFinanceReceipts.productName}</div>
  97. </td>
  98. <td>${fns:getDictLabel(cmFinanceReceipts.transactionWay,"bp_order_pay","" )}</td>
  99. <td>
  100. ${fns:getDictLabel(cmFinanceReceipts.transactionType,"transaction_Type","" )}
  101. </td>
  102. <td>
  103. ${fns:getDictLabel(cmFinanceReceipts.payType,"pay_type","" )}
  104. </td>
  105. <td>
  106. <fmt:formatNumber value= "${cmFinanceReceipts.totalAmount}" type="currency" pattern="0.00"/>
  107. </td>
  108. <td>
  109. <fmt:formatNumber value= "${cmFinanceReceipts.deductionAmount}" type="currency" pattern="0.00"/>
  110. </td>
  111. <td>
  112. <fmt:formatNumber value= "${cmFinanceReceipts.shouldPayAmount}" type="currency" pattern="0.00"/>
  113. </td>
  114. <td>
  115. <fmt:formatDate value="${cmFinanceReceipts.receiptsDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
  116. </td>
  117. <td>
  118. <fmt:formatDate value="${cmFinanceReceipts.auditDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
  119. </td>
  120. <td>
  121. ${fns:getDictLabel(cmFinanceReceipts.status, 'transaction_status', '')}
  122. </td>
  123. </tr>
  124. </c:forEach>
  125. </tbody>
  126. </table>
  127. <div class="pagination">${page}</div>
  128. </body>
  129. </html>