invoiceUntread.html 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <!-- include 'header' -->
  2. <script src="<?= WEB_SITE_GLOBAL ?>js/invoice.js"></script>
  3. <body>
  4. <div class="mainLayout">
  5. <div class="mainMenu">
  6. <div class="menuItem">
  7. <a href="#" class="mLogo">CLD</a>
  8. <ul>
  9. <!-- include 'menuReceipt' -->
  10. </ul>
  11. </div>
  12. </div>
  13. <div class="warpContent">
  14. <div class="subMenu fL">
  15. <div class="menuItem">
  16. <!-- include 'invoiceMenu' -->
  17. </div>
  18. </div>
  19. <div class="adminContent autoHeight">
  20. <div class="borad-menu">
  21. </div>
  22. <div class="borad-news">
  23. <div class="saeaList">
  24. <div class="clearfix">
  25. <legend><div class="fR"></div>待确认退票</legend>
  26. <!-- if !empty({{untreadInvoice}}) -->
  27. <table class="table table-bordered table-condensed">
  28. <tbody>
  29. <tr><th class="taC">开票流水号</th><th class="taC">开票单位(抬头)</th><th class="taC">开票金额</th><th class="taC">提交退票</th>
  30. <th class="taC">退票原因</th><th class="taC">退票快递</th><th class="taC" width="120">操作</th></tr>
  31. <!-- loop untreadInvoice -->
  32. <tr>
  33. <td><a href="#invdetail" node-invoice='INFO' data-isKey="{{invoiceList' value.iidKeyK}}" data-toggle="modal">{{invoiceList' value.invoiceSerial}}</a></td>
  34. <td>
  35. <!-- if !empty({{invoiceList' value.invoiceType}}) -->
  36. {{invoiceList' value.invoiceCompany}}
  37. <!-- else -->
  38. {{invoiceList' value.invoiceTitle}}
  39. <!-- endif -->
  40. </td>
  41. <td>
  42. <!-- if !empty({{invoiceList' value.invoiceType}}) -->
  43. <b>¥{{invoiceList' value.invoicePrice}}</b><sup>专</sup>
  44. <!-- else -->
  45. <b>¥{{invoiceList' value.invoicePrice}}</b>
  46. <!-- endif -->
  47. </td>
  48. <td>{{invoiceList' value.categoryName}}{{invoiceList' value.userName}} {{invoiceList' value.date}}</td>
  49. <td>{{invoiceList' value.untreadReason}}</td>
  50. <td>
  51. <!-- if {{invoiceList' value.untreadPost}}==0 -->
  52. 不需邮寄
  53. <!-- elseif {{invoiceList' value.untreadPost}}==1&&empty({{invoiceList' value.untreadNumber}}) -->
  54. 未填写快递
  55. <!-- elseif !empty({{invoiceList' value.untreadNumber}}) -->
  56. {{invoiceList' value.untreadCompany}}:
  57. <a href="#shipping" title="{{invoiceList' value.untreadItems}}" node-express="untread" data-toggle="modal">{{invoiceList' value.untreadNumber}}</a>
  58. <a target="_blank" href="http://www.kuaidi100.com/chaxun?com={{invoiceList' value.untreadCom}}&nu={{invoiceList' value.untreadNumber}}">查询快递</a>
  59. <!-- endif -->
  60. </td>
  61. <td><a class="button btn-block" diss-data="{{pendingInvoice' value.iidKey}}" node-invoice="untreadInvoice" href="#return" data-toggle="modal">确认退票</a></td>
  62. </tr>
  63. <!-- endloop -->
  64. </tbody>
  65. </table>
  66. <!-- else -->
  67. <blockquote><p class="colGray">暂时没有需要邮寄的发票</p></blockquote>
  68. <!-- endif -->
  69. </div>
  70. <div class="clearfix">
  71. <legend><div class="fR"><a href="/invoiceUntreadAchieve">查看更多</a></div>最近退票</legend>
  72. <!-- if !empty({{establishedInvoice}}) -->
  73. <table class="table table-bordered table-condensed">
  74. <tbody>
  75. <tr><th class="taC">开票流水号</th><th class="taC">开票单位(抬头)</th><th class="taC">开票金额</th><th class="taC">提交开票</th><th class="taC">快递信息</th><th class="taC">确认退票</th></tr>
  76. <!-- loop establishedInvoice -->
  77. <tr>
  78. <td><a href="#invdetail" node-invoice='INFO' data-isKey="{{invoiceList' value.iidKeyK}}" data-toggle="modal">{{invoiceList' value.invoiceSerial}}</a></td>
  79. <td>
  80. <!-- if !empty({{invoiceList' value.invoiceType}}) -->
  81. {{invoiceList' value.invoiceCompany}}
  82. <!-- else -->
  83. {{invoiceList' value.invoiceTitle}}
  84. <!-- endif -->
  85. </td>
  86. <td>
  87. <!-- if !empty({{invoiceList' value.invoiceType}}) -->
  88. <b>¥{{invoiceList' value.invoicePrice}}</b><sup>专</sup>
  89. <!-- else -->
  90. <b>¥{{invoiceList' value.invoicePrice}}</b>
  91. <!-- endif -->
  92. </td>
  93. <td>{{invoiceList' value.categoryName}}{{invoiceList' value.userName}} {{invoiceList' value.date}}</td>
  94. <td>{{invoiceList' value.untreadCompany}}:
  95. <a href="#shipping" title="{{invoiceList' value.untreadItems}}" node-express="untread" data-toggle="modal">{{invoiceList' value.untreadNumber}}</a>
  96. <a target="_blank" href="http://www.kuaidi100.com/chaxun?com={{invoiceList' value.untreadCom}}&nu={{invoiceList' value.untreadNumber}}">查询快递</a> </td>
  97. <td>
  98. {{establishedInvoice' value.OperationLog.username}} {{establishedInvoice' value.OperationLog.date}}
  99. </td>
  100. </tr>
  101. <!-- endloop -->
  102. </tbody>
  103. </table>
  104. <!-- else -->
  105. <blockquote><p class="colGray">暂时没有已邮寄的发票</p></blockquote>
  106. <!-- endif -->
  107. </div>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. <div loading-msg='true' style="position:absolute; left:50%; top:50%; "></div>
  114. <div class="modal fade" id="invdetail">
  115. <div id="nc"></div>
  116. </div>
  117. <!--弹出退票确认-->
  118. <div class="modal hide fade" id="return">
  119. <form action="/invoiceUntreadEstablishedDo" method="post" name="untreadInvoice">
  120. <input type="hidden" name='untreadIidKey' value="">
  121. <div class="modal-dialog">
  122. <div class="modal-content">
  123. <div class="modal-header">
  124. <h3>邮寄物品</h3>
  125. </div>
  126. <div class="modal-body">
  127. 若发票是邮寄回来的,请确认已经接收到发票。
  128. </div>
  129. <div class="modal-footer">
  130. <input type="submit" class="button" value="确认退票">
  131. <a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
  132. </div>
  133. </div></div>
  134. </form>
  135. </div>
  136. <!--退票确认-->
  137. <!--弹出快递跟踪-->
  138. <div class="modal hide fade" id="shipping">
  139. <div class="modal-dialog">
  140. <div class="modal-content">
  141. <div class="modal-header">
  142. <h3>邮寄物品</h3>
  143. </div>
  144. <div class="modal-body saeaList">
  145. <table class="table table-bordered table-condensed">
  146. <tbody>
  147. <tr>
  148. <th class="taC">退票邮寄物品</th>
  149. </tr>
  150. <tr>
  151. <td node-express="msg">发票</td>
  152. </tr>
  153. </tbody>
  154. </table>
  155. </div>
  156. <div class="modal-footer">
  157. <a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
  158. </div>
  159. </div></div>
  160. </div>
  161. <!--邮寄-->
  162. <script type="text/javascript">autoFlashHeight();</script>
  163. </body>