단속내역서,단속확인서 출력대상 확인 화면 추가
parent
7152c66825
commit
ccd39384b4
@ -0,0 +1,91 @@
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
|
||||
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
|
||||
|
||||
<c:set var="prefixName" scope="request">출력대상-단속내역서/단속확인서</c:set>
|
||||
|
||||
<div class="d-flex flex-row justify-content-evenly">
|
||||
<div class="card">
|
||||
<div class="row mt-4 mb-3 justify-content-start">
|
||||
<div class="col-md-12">
|
||||
<div class="float-start ps-4">
|
||||
<button type="button" id="" class="btn btn-excel">엑셀</button>
|
||||
<button type="button" id="" class="btn btn-info">단속내역서출력</button>
|
||||
<button type="button" id="" class="btn btn-info">단속확인서출력</button>
|
||||
<label>
|
||||
<input type="checkbox" id="" name="" class="form-check-input"/>
|
||||
개인정보 비공개(내역서)
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card-datatable text-nowrap">
|
||||
<div class="dataTables_wrapper dt-bootstrap5 no-footer">
|
||||
<div class="table-responsive"
|
||||
style="overflow-x:scroll; height:300px; overflow-y:scroll;" >
|
||||
<table class="table-layout-fixed dataTable datatables-ajax table table-bordered no-footer"
|
||||
id="table--${pageName}" aria-describedby="DataTables_Table_0_info">
|
||||
<thead class="sticky-thead" >
|
||||
<tr id="theadTr--${pageName}">
|
||||
<th style="width:120px">시군구명</th>
|
||||
<th style="width:180px">과태료명</th>
|
||||
<th style="width:120px">대체차량번호</th>
|
||||
<th style="width:120px">차량번호</th>
|
||||
<th style="width:120px">단속구분</th>
|
||||
<th style="width:200px">단속일시</th>
|
||||
<th style="width:200px">단속장소</th>
|
||||
<th style="width:120px">고지번호</th>
|
||||
<th style="width:120px">수납일자</th>
|
||||
<th style="width:120px">처리상태</th>
|
||||
<th style="width:120px">수납금액</th>
|
||||
<th style="width:120px">잔액</th>
|
||||
<th style="width:120px">성명</th>
|
||||
<th style="width:200px">주소</th>
|
||||
<th style="width:200px">번지</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="tbody--${pageName}">
|
||||
</tbody>
|
||||
<template id="found--${pageName}">
|
||||
<tr>
|
||||
<td>{SGG_NM}</td>
|
||||
<td>{TASK_SE_NM}</td>
|
||||
<td>{RPM_SZR_VHRNO}</td>
|
||||
<td>{VHRNO}</td>
|
||||
<th>{CRDN_SE_NM}</th>
|
||||
<td>{CRDN_YMD_TM}</td>
|
||||
<td>{CRDN_PLC}</td>
|
||||
<td>{GOJI_NO}</td>
|
||||
<td>{RCVMT_YMD}</td>
|
||||
<td>{CRDN_STTS_NM}</td>
|
||||
<td>{RCVMT_AMT}</td>
|
||||
<td>{SUM_AMT}</td>
|
||||
<td>{RTPYR_NM}</td>
|
||||
<td>{RTPYR_ADDR}</td>
|
||||
<td>{RTPYR_DTL_ADDR}</td>
|
||||
</tr>
|
||||
</template>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form id="frmEdit--${pageName}">
|
||||
<input type="text" name="dialogId" hidden />
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
|
||||
pageObject["${pageName}"] = {};
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
var $P = pageObject["${pageName}"];
|
||||
|
||||
$P.crdnIds = ${crdnIds};
|
||||
|
||||
});
|
||||
|
||||
</script>
|
Loading…
Reference in New Issue