Xia Kaixiang | 2163b15 | 2019-12-02 11:03:22 +0800 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8"> |
| 5 | <title>商户劳务费人次统计表</title> |
| 6 | |
| 7 | <link rel="stylesheet" th:href="@{/static/libs/layui/css/layui.css}"/> |
| 8 | <link rel="stylesheet" th:href="@{/static/custom/css/custom.css}"/> |
| 9 | </head> |
| 10 | <body> |
| 11 | <div class="layui-card"> |
| 12 | <div class="layui-card-header" style="text-align: center;"> |
| 13 | <h1>商户劳务费人次统计表</h1> |
| 14 | </div> |
| 15 | <div class="layui-card-body"> |
| 16 | <div class="layui-form toolbar"> |
| 17 | <div style="float: left;padding-left: 3px;" th:text="${'区间:'+period}"></div> |
| 18 | <div style="float: right;" th:text="'单位:元'"></div> |
| 19 | </div> |
| 20 | <table class="layui-table sw-table sw-print"> |
| 21 | <thead> |
| 22 | <tr> |
| 23 | <th rowspan="3" style="text-align: center;width: 28px;">序号</th> |
| 24 | <th rowspan="3" style="text-align: center;min-width: 100px;">单位</th> |
| 25 | <th rowspan="3" style="text-align: center;min-width: 100px;">食堂</th> |
| 26 | <th colspan="3" style="text-align: center;">刷卡次数(人)</th> |
| 27 | <th colspan="4" style="text-align: center;">应支付劳务费(元)</th> |
| 28 | </tr> |
| 29 | <tr> |
| 30 | <th rowspan="2" style="text-align: center;min-width: 50px;">早餐</th> |
| 31 | <th rowspan="2" style="text-align: center;min-width: 50px;">午餐</th> |
| 32 | <th rowspan="2" style="text-align: center;min-width: 50px;">晚餐</th> |
| 33 | |
| 34 | <th rowspan="2" style="text-align: center;min-width: 70px;">早餐<br/>应付劳务费</th> |
| 35 | <th rowspan="2" style="text-align: center;min-width: 70px;">午餐<br/>应付劳务费</th> |
| 36 | <th rowspan="2" style="text-align: center;min-width: 70px;">晚餐<br/>应付劳务费</th> |
| 37 | <th rowspan="2" style="text-align: center;min-width: 70px;">应支付劳<br/>务费小计</th> |
| 38 | </tr> |
| 39 | </thead> |
| 40 | <tbody> |
| 41 | <tr th:if="${null==showlist || showlist.size()==0}"> |
| 42 | <td colspan="13">无数据</td> |
| 43 | </tr> |
| 44 | |
| 45 | <div th:remove="tag" th:if="${null!=showlist && showlist.size()>0}" th:each="data:${showlist}" |
| 46 | th:with="childCount=${data.datalist.size()}"> |
| 47 | <tr th:if=${!dataStat.last}> |
| 48 | <td th:text="${childCount>0}?${data.datalist[0].rownum}:''"></td> |
| 49 | <td th:text="${data.dwname}" th:rowspan="${data.datalist.size()}"></td> |
| 50 | <td th:text="${childCount>0}?${data.datalist[0].groupname}:''"></td> |
| 51 | <td th:text="${childCount>0}?${data.datalist[0].bfeecnt}:''"></td> |
| 52 | <td th:text="${childCount>0}?${data.datalist[0].lfeecnt}:''"></td> |
| 53 | <td th:text="${childCount>0}?${data.datalist[0].dfeecnt}:''"></td> |
| 54 | <td th:text="${childCount>0}?${#numbers.formatDecimal(data.datalist[0].bfeeamt,1,2)}:''"></td> |
| 55 | <td th:text="${childCount>0}?${#numbers.formatDecimal(data.datalist[0].lfeeamt,1,2)}:''"></td> |
| 56 | <td th:text="${childCount>0}?${#numbers.formatDecimal(data.datalist[0].dfeeamt,1,2)}:''"></td> |
| 57 | <td th:text="${childCount>0}?${#numbers.formatDecimal(data.datalist[0].bfeeamt+data.datalist[0].lfeeamt+data.datalist[0].dfeeamt,1,2)}:''"></td> |
| 58 | </tr> |
| 59 | <tr th:each="article,stats:${data.datalist}" th:if="${!stats.first}"> |
| 60 | <td th:text="${article.rownum}"></td> |
| 61 | <td th:text="${article.groupname}"></td> |
| 62 | <td th:text="${article.bfeecnt}"></td> |
| 63 | <td th:text="${article.lfeecnt}"></td> |
| 64 | <td th:text="${article.dfeecnt}"></td> |
| 65 | <td th:text="${#numbers.formatDecimal(article.bfeeamt,1,2)}"></td> |
| 66 | <td th:text="${#numbers.formatDecimal(article.lfeeamt,1,2)}"></td> |
| 67 | <td th:text="${#numbers.formatDecimal(article.dfeeamt,1,2)}"></td> |
| 68 | <td th:text="${#numbers.formatDecimal(article.bfeeamt+article.lfeeamt+article.dfeeamt,1,2)}"></td> |
| 69 | </tr> |
| 70 | <tr th:if="${childCount>1}"> |
| 71 | <td colspan="3" th:text="${data.dwname+'小计'}"></td> |
| 72 | <td th:text="${data.bfeecnt}"></td> |
| 73 | <td th:text="${data.lfeecnt}"></td> |
| 74 | <td th:text="${data.dfeecnt}"></td> |
| 75 | <td th:text="${#numbers.formatDecimal(data.bfeeamt,1,2)}"></td> |
| 76 | <td th:text="${#numbers.formatDecimal(data.lfeeamt,1,2)}"></td> |
| 77 | <td th:text="${#numbers.formatDecimal(data.dfeeamt,1,2)}"></td> |
| 78 | <td th:text="${#numbers.formatDecimal(data.bfeeamt+data.lfeeamt+data.dfeeamt,1,2)}"></td> |
| 79 | </tr> |
| 80 | <tr th:if="${dataStat.last}"> |
| 81 | <td style="font-weight: bold;" colspan="3" th:text="${data.dwname}"></td> |
| 82 | <td style="font-weight: bold;" th:text="${data.bfeecnt}"></td> |
| 83 | <td style="font-weight: bold;" th:text="${data.lfeecnt}"></td> |
| 84 | <td style="font-weight: bold;" th:text="${data.dfeecnt}"></td> |
| 85 | <td style="font-weight: bold;" th:text="${#numbers.formatDecimal(data.bfeeamt,1,2)}"></td> |
| 86 | <td style="font-weight: bold;" th:text="${#numbers.formatDecimal(data.lfeeamt,1,2)}"></td> |
| 87 | <td style="font-weight: bold;" th:text="${#numbers.formatDecimal(data.dfeeamt,1,2)}"></td> |
| 88 | <td style="font-weight: bold;" |
| 89 | th:text="${#numbers.formatDecimal(data.bfeeamt+data.lfeeamt+data.dfeeamt,1,2)}"></td> |
| 90 | </tr> |
| 91 | </div> |
| 92 | </tbody> |
| 93 | </table> |
| 94 | <div class="layui-form toolbar"> |
| 95 | <div style="float: left;padding-left: 3px;" th:text="${'制表人:'+opername+' '+ printdatetime}"></div> |
| 96 | </div> |
| 97 | </div> |
| 98 | <div class="layui-card-body" style="margin-top: 25px;"> |
| 99 | <table class="sw-print-sign"> |
| 100 | <tr> |
binquan.qiu | b19e6e0 | 2020-07-21 13:34:05 +0800 | [diff] [blame^] | 101 | <td width="50%">大理州公安局警务保障处审核盖章:</td> |
Xia Kaixiang | 2163b15 | 2019-12-02 11:03:22 +0800 | [diff] [blame] | 102 | <td width="50%">苍山饭店审核盖章:</td> |
| 103 | </tr> |
| 104 | <tr> |
binquan.qiu | b19e6e0 | 2020-07-21 13:34:05 +0800 | [diff] [blame^] | 105 | <td>经办人:</td> |
Xia Kaixiang | 2163b15 | 2019-12-02 11:03:22 +0800 | [diff] [blame] | 106 | <td>审核人:</td> |
| 107 | </tr> |
| 108 | <tr> |
Xia Kaixiang | 2163b15 | 2019-12-02 11:03:22 +0800 | [diff] [blame] | 109 | <td>审核人:</td> |
binquan.qiu | b19e6e0 | 2020-07-21 13:34:05 +0800 | [diff] [blame^] | 110 | |
Xia Kaixiang | 2163b15 | 2019-12-02 11:03:22 +0800 | [diff] [blame] | 111 | </tr> |
| 112 | </table> |
| 113 | </div> |
| 114 | </div> |
| 115 | </body> |
| 116 | </html> |