| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title>物业费及其他</title>
- </head>
- <body layout:fragment="content">
- <style>
- .center{
- text-align:center;
- }
- .ml-40{
- margin-left: 40px;
- text-indent: 21.0pt;
- }
- .ml-450{
- margin-left: 450px;
- }
- </style>
- <div class="ml-40">
- <h3 class="center"><span th:if="${property.fee_type}==1">物业费</span><span th:if="${property.fee_type}==0">停车费</span>缴费通知</h3>
- </br>
- <span class="underline">[[${contract.company_name}]]</span>租户:</br>
- 您好!</br>
- 您/贵公司从
- <span class="underline" th:text="${#dates.format(property.period_start_date,'yyyy')}"/>年
- <span class="underline" th:text="${#dates.format(property.period_start_date,'MM')}"/>月
- <span class="underline" th:text="${#dates.format(property.period_start_date,'dd')}"/>日至
- <span class="underline" th:text="${#dates.format(property.period_end_date,'yyyy')}"/>年
- <span class="underline" th:text="${#dates.format(property.period_end_date,'MM')}"/>月
- <span class="underline" th:text="${#dates.format(property.period_end_date,'dd')}"/>日,
- <span th:if="${property.fee_type}==1">物业费</span><span th:if="${property.fee_type}==0">停车费</span>
- <span th:unless="${property.total_fee}" class="underline" th:text="(${property.price})*(${property.number})*(${property.payment_cycle})"></span>
- <span class="underline" th:if="${property.total_fee}" >[[${property.total_fee}]]</span>
- 元,缴费日期
- <span class="underline" th:text="${#dates.format(property.pay_time,'yyyy')}"/>年
- <span th:text="${#dates.format(property.pay_time,'MM')}"/>月
- <span th:text="${#dates.format(property.pay_time,'dd')}"/>日。
- 望您/贵公司接到通知后,尽快向我公司缴纳费用。感谢您的理解与配合。
- </br>
- </br>
- </br>
- </br>
- </br>
- </br>
- <span>特此通知!</span>
- </br>
- </br>
- </br>
- <span class="fr mr-40"><span class="underline" th:text="${#dates.format(new java.util.Date().getTime(),'yyyy')}"/>年
- <span class="underline" th:text="${#dates.format(new java.util.Date().getTime(),'yyyy')}"/>月
- <span class="underline" th:text="${#dates.format(new java.util.Date().getTime(),'dd')}"/>日</br>
- </span>
- <span class="fr mr-40" style="clear: both;" th:text="${build.display_name}?${build.display_name}:${build.name}"></span>
- </div>
- <div class="row cl" id="manageRow">
- <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-2">
- <button class="btn btn-primary radius " onclick="submitPrint()" type="button">确认</button>
- <button onClick="removeIframe();" class="btn btn-default radius" type="button"> 取消 </button>
- </div>
- </div>
- <article class="page-container">
- </article>
- <script th:inline="javascript">
- /**
- * 取消
- */
- function removeIframe() {
- var index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);
- }
- function submitPrint(){
- $("#manageRow").hide();
- print();
- $("#manageRow").show();
- }
- </script>
- </body>
- </html>
|