invoiceUntreadED.html 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <!-- include 'header' -->
  2. <link rel=stylesheet href="<?= WEB_SITE_GLOBAL ?>css/jquery.validator.css">
  3. <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>js/jquery.validator.min.js"></script>
  4. <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>js/zh-CN.js"></script>
  5. <script src="<?= WEB_SITE_GLOBAL ?>js/invoice.validator.js"></script>
  6. <link href="<?= WEB_SITE_GLOBAL ?>css/datepicker.min.css" rel="stylesheet" type="text/css">
  7. <script src="<?= WEB_SITE_GLOBAL ?>js/datepicker.min.js"></script>
  8. <script src="<?= WEB_SITE_GLOBAL ?>js/datepicker.zh.js"></script>
  9. <script src="<?= invoice ?>"></script>
  10. <script>
  11. </script>
  12. <body>
  13. <div class="mainLayout">
  14. <div class="mainMenu">
  15. <div class="menuItem">
  16. <a href="#" class="mLogo">CLD</a>
  17. <ul>
  18. <!-- include 'menuReceipt' -->
  19. </ul>
  20. </div>
  21. </div>
  22. <div class="warpContent">
  23. <div class="subMenu fL">
  24. <div class="menuItem">
  25. <!-- include 'invoiceMenu' -->
  26. </div>
  27. </div>
  28. <div class="adminContent autoHeight">
  29. <legend>
  30. 已退发票</legend>
  31. <div class="demandCate">
  32. <form action="/invoiceUntreadED/1" id="iaa" method="get" >
  33. <ul class="cateList">
  34. <li>
  35. <select name="invoiceType" node-invoiceType>
  36. <option <!-- if {{invoiceType}}=='ALL' --> selected <!-- endif --> value="ALL">类型</option>
  37. <option <!-- if {{invoiceType}}=='ORDINARY' --> selected <!-- endif --> value="ORDINARY">普通发票</option>
  38. <option <!-- if {{invoiceType}}=='SPECIAL' --> selected <!-- endif --> value="SPECIAL">专用发票</option>
  39. </select>
  40. </li>
  41. <li >
  42. <div class="search">
  43. <div class="input-append">
  44. <input class="datepicker-here span3" name="date" value="{{date}}" placeholder="按时间筛选" type="text" data-range="true"
  45. data-multiple-dates-separator=" : "
  46. data-language="zh">
  47. <button class="btn btn-small" type="submit">查询</button>
  48. </div>
  49. </div></li> <li>
  50. <div class="search">
  51. <div class="input-append">
  52. <input class="span3" type="text" name="MebSea" value="{{MebSeaEn}}" placeholder="发票号,开票金额,发票抬头">
  53. <button class="btn btn-small" type="submit">搜索</button>
  54. </div>
  55. </li>
  56. </ul>
  57. </form>
  58. </div>
  59. <div class="saeaList">
  60. <table class="table table-hover">
  61. <tbody>
  62. <tr class="thead">
  63. <th>开票流水号</th>
  64. <th>结算方式</th>
  65. <th>开票金额</th>
  66. <th>开票单位(抬头)</th><th>发票号</th><th>开票内容</th>
  67. <th>退票原因</th><th>退票快递</th><th>确认退票</th>
  68. <th>操作</th>
  69. </tr>
  70. <!-- loop list -->
  71. <tr>
  72. <td><a href="#invdetail" node-invoice='INFO' data-isKey="{{pendingInvoice' value.iidKeyK}}" data-toggle="modal">{{list' value.invoiceSerial}}</a></td>
  73. <td>
  74. <!-- if {{list' value.settlementType}}==0 -->
  75. 软件销售
  76. <!-- else -->
  77. <a href="/invoiceTrainingDetail/{{list' value.trainIdKey}}.html">培训班</a>
  78. <!-- endif -->
  79. </td>
  80. <td>
  81. <!-- if !empty({{list' value.invoiceType}}) -->
  82. <b>¥{{list' value.invoicePrice}}</b><sup>专</sup>
  83. <!-- else -->
  84. <b>¥{{list' value.invoicePrice}}</b>
  85. <!-- endif -->
  86. </td>
  87. <td>
  88. <!-- if !empty({{list' value.invoiceType}}) -->
  89. {{list' value.invoiceCompany}}
  90. <!-- else -->
  91. {{list' value.invoiceTitle}}
  92. <!-- endif -->
  93. </td>
  94. <td>{{list' value.invoiceNo}}</td>
  95. <td>{{list' value.invoiceElement}}</td>
  96. <td>{{list' value.untreadReason}}</td>
  97. <td>
  98. <!-- if {{invoiceList' value.untreadPost}}==0 -->
  99. 不需邮寄
  100. <!-- elseif {{invoiceList' value.untreadPost}}==1&&empty({{invoiceList' value.untreadNumber}}) -->
  101. 未填写快递
  102. <!-- elseif !empty({{invoiceList' value.untreadNumber}}) -->
  103. {{invoiceList' value.untreadCompany}}:
  104. <a href="#shipping" title="{{invoiceList' value.untreadItems}}" node-express="untread" data-toggle="modal">{{invoiceList' value.untreadNumber}}</a>
  105. <a target="_blank" href="http://www.kuaidi100.com/chaxun?com={{invoiceList' value.untreadCom}}&nu={{invoiceList' value.untreadNumber}}">查询快递</a>
  106. <!-- endif -->
  107. </td>
  108. <td>
  109. {{list' value.OperationLog.username}} {{list' value.OperationLog.date}}
  110. </td>
  111. <td>
  112. <!-- if {{list' value.settlementType}}==1&&{{list' value.settlementStatus}} -->
  113. <a href="/invoiceUntreadAdd/{{list' value.iidKeyK}}.html">重新开票</a>
  114. <!-- endif -->
  115. </td>
  116. </tr>
  117. <!-- endloop -->
  118. </tbody>
  119. </table>
  120. </div>
  121. <!--翻页-->
  122. <div class="demandPage" >
  123. <ul class="pagination fL">
  124. <!-- if {{page.previous}}==0 -->
  125. <li><a href="javascript:void(0)" title="上一页">&lt;</a></li>
  126. <!-- else -->
  127. <li><a href="/invoiceUntreadED/{{page.previous}}{{get}}" title="上一页">&lt;</a></li>
  128. <!-- endif -->
  129. <!-- if {{page.on_page}}>=3 -->
  130. <li><a href="/invoiceUntreadED/1{{get}}" title="上一页">1</a></li>
  131. <li class="point"><span>...</span></li>
  132. <!-- endif -->
  133. {{page.page}}
  134. <!-- if {{page.on_page}}<3 && {{page.total_page}}>5 -->
  135. <li><a href="/invoiceUntreadED/4{{get}}" >4</a></li>
  136. <li><a href="/invoiceUntreadED/5{{get}}" >5</a></li>
  137. <!-- endif -->
  138. <!-- if {{page.total_page}}>3 -->
  139. <li class="point"><span>...</span></li>
  140. <!-- endif -->
  141. <!-- if {{page.next}}=={{page.on_page}} -->
  142. <li><a href="javascript:void(0)" title="下一页">&gt;</a></li>
  143. <!-- else -->
  144. <li><a href="/invoiceUntreadED/{{page.next}}{{get}}" title="下一页">&gt;</a></li>
  145. <!-- endif -->
  146. </ul>
  147. </div>
  148. </div>
  149. </div>
  150. </div>
  151. <!--弹出 退票-->
  152. <!--退票-->
  153. <div class="modal fade" id="billing">
  154. <div id="nr"></div>
  155. </div>
  156. <div loading-msg='true' style="position:absolute; left:50%; top:50%; "></div>
  157. <div class="modal fade" id="invdetail">
  158. <div id="nc"></div>
  159. </div>
  160. <script type="text/javascript">autoFlashHeight();</script>
  161. </body>