견문통계 개인실적 결제처 조건 추가.
parent
a5ac7066fe
commit
423c7ddc1f
|
|
@ -26,6 +26,8 @@ public class TypeStatistics extends BaseModel {
|
||||||
@Transient
|
@Transient
|
||||||
private String userNm;
|
private String userNm;
|
||||||
@Transient
|
@Transient
|
||||||
|
private String reportOrgan;
|
||||||
|
@Transient
|
||||||
private List<String> organList;
|
private List<String> organList;
|
||||||
@Transient
|
@Transient
|
||||||
private List<String> rating;
|
private List<String> rating;
|
||||||
|
|
|
||||||
|
|
@ -542,6 +542,9 @@
|
||||||
<if test='endDate != null and endDate != ""'>
|
<if test='endDate != null and endDate != ""'>
|
||||||
and aa.wrt_dt <= #{endDate}::date+1
|
and aa.wrt_dt <= #{endDate}::date+1
|
||||||
</if>
|
</if>
|
||||||
|
<if test='reportOrgan != null and reportOrgan != ""'>
|
||||||
|
and aa.doc_no like '%'||#{reportOrgan}||'%'
|
||||||
|
</if>
|
||||||
<if test='rating != null'>
|
<if test='rating != null'>
|
||||||
and ab.affair_rate in
|
and ab.affair_rate in
|
||||||
<foreach collection="rating" item="item" index="index" separator="," open="(" close=")">
|
<foreach collection="rating" item="item" index="index" separator="," open="(" close=")">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,15 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<input type="text" class="form-control form-control-sm" name="userNm" placeholder="보고자명" autocomplete="off">
|
<input type="text" class="form-control form-control-sm" name="userNm" placeholder="보고자명" autocomplete="off" th:value="${searchParams.userNm}">
|
||||||
|
</div>
|
||||||
|
<div class="col-auto">
|
||||||
|
<select class="form-select form-select-sm" name="reportOrgan">
|
||||||
|
<option value="">결제처</option>
|
||||||
|
<th:block th:each="code:${session.commonCode.get('OG')}">
|
||||||
|
<option th:value="${code.itemValue}" th:text="${code.itemValue}" th:selected="${code.itemValue eq searchParams.reportOrgan}"></option>
|
||||||
|
</th:block>
|
||||||
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<label><input name="sangbo" type="checkbox" value="OGC003">경찰서상보</label>
|
<label><input name="sangbo" type="checkbox" value="OGC003">경찰서상보</label>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue