contract_property_print.html 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!DOCTYPE HTML>
  2. <html xmlns:th="http://www.thymeleaf.org"
  3. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4. layout:decorate="~{admin/common/common}">
  5. <head>
  6. <title>物业费及其他</title>
  7. </head>
  8. <body layout:fragment="content">
  9. <style>
  10. .center{
  11. text-align:center;
  12. }
  13. .ml-40{
  14. margin-left: 40px;
  15. text-indent: 21.0pt;
  16. }
  17. .ml-450{
  18. margin-left: 450px;
  19. }
  20. </style>
  21. <h3 class="center"><span th:if="${property.fee_type}==1">物业费</span><span th:if="${property.fee_type}==0">停车费</span>缴费通知</h3>
  22. <div class="ml-40">
  23. </br>
  24. <span class="underline">[[${contract.company_name}]]</span>租户:</br>
  25. 您好!</br>
  26. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;您/贵公司从
  27. <span class="underline" th:text="${#dates.format(property.period_start_date,'yyyy')}"/>年
  28. <span class="underline" th:text="${#dates.format(property.period_start_date,'MM')}"/>月
  29. <span class="underline" th:text="${#dates.format(property.period_start_date,'dd')}"/>日至
  30. <span class="underline" th:text="${#dates.format(property.period_end_date,'yyyy')}"/>年
  31. <span class="underline" th:text="${#dates.format(property.period_end_date,'MM')}"/>月
  32. <span class="underline" th:text="${#dates.format(property.period_end_date,'dd')}"/>日,
  33. <span th:if="${property.fee_type}==1">物业费</span><span th:if="${property.fee_type}==0">停车费</span>
  34. <span th:unless="${property.total_fee}" class="underline" th:text="(${property.price})*(${property.number})*(${property.payment_cycle})"></span>
  35. <span class="underline" th:if="${property.total_fee}" >[[${property.total_fee}]]</span>
  36. 元,缴费日期
  37. <span class="underline" th:text="${#dates.format(property.pay_time,'yyyy')}"/>年
  38. <span class="underline" th:text="${#dates.format(property.pay_time,'MM')}"/>月
  39. <span class="underline" th:text="${#dates.format(property.pay_time,'dd')}"/>日。
  40. 望您/贵公司接到通知后,尽快向我公司缴纳费用。感谢您的理解与配合。
  41. </br>
  42. </br>
  43. </br>
  44. </br>
  45. </br>
  46. </br>
  47. <span>特此通知!</span>
  48. </br>
  49. </br>
  50. </br>
  51. <span class="fr mr-40"><span class="underline" th:text="${#dates.format(new java.util.Date().getTime(),'yyyy')}"/>年
  52. <span class="underline" th:text="${#dates.format(new java.util.Date().getTime(),'MM')}"/>月
  53. <span class="underline" th:text="${#dates.format(new java.util.Date().getTime(),'dd')}"/>日</br>
  54. </span>
  55. <span class="fr mr-40" style="clear: both;" th:text="${build.display_name}?${build.display_name}:${build.name}"></span>
  56. </div>
  57. <div class="row cl" id="manageRow">
  58. <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-2">
  59. <button class="btn btn-primary radius " onclick="submitPrint()" type="button">确认</button>
  60. <button onClick="removeIframe();" class="btn btn-default radius" type="button">取消</button>
  61. </div>
  62. </div>
  63. <article class="page-container">
  64. </article>
  65. <script th:inline="javascript">
  66. /**
  67. * 取消
  68. */
  69. function removeIframe() {
  70. var index = parent.layer.getFrameIndex(window.name);
  71. parent.layer.close(index);
  72. }
  73. function submitPrint(){
  74. $("#manageRow").hide();
  75. print();
  76. $("#manageRow").show();
  77. }
  78. </script>
  79. </body>
  80. </html>