ERP-node/WebContent/WEB-INF/view/salesmgmt/common/tabBaseFee.jsp

73 lines
2.0 KiB
Plaintext

<%
/**
* 탭영역 공통 옵션정보
* @since 2021.10.01
* @author kim
* @version 1.0
*
* << 개정 이력 >>
*
* 수정일 수정자 수정내용
* ---------------- --------------------- --------------------------------------------------------
* 2021.10.01 김효일 최초작성
**/
%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="com.pms.common.utils.*"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ page import="java.util.*" %>
<%@ include file= "/init.jsp" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><%=Constants.SYSTEM_NAME%></title>
<script type="text/javascript">
$(function(){
$(document).ready(function(){
});
});
</script>
</head>
<body class="backcolor">
<form name="tabSearchForm" id="tabSearchForm" method="get" onsubmit="return false;">
<div class="plm_menu_name_ieg" style="display:flex;">
</div>
<table class="plm_table">
<colgroup>
<col width="10%" />
<col width="20%" />
<col width="20%" />
<col width="*" />
</colgroup>
<thead>
<tr class="plm_thead">
<td>순번</td>
<td>명칭</td>
<td>금액</td>
<td>비고</td>
</tr>
</thead>
<c:choose>
<c:when test="${empty additionalFees}">
<tr style="text-align:center;">
<td align="center" colspan="4">조회된 데이터가 없습니다.</td>
</tr>
</c:when>
<c:otherwise>
<c:forEach var="item" items="${additionalFees}" varStatus="varStatus">
<tr>
<td>${item.EOPT_CD}</td>
<td>${item.EOPT_NM}</td>
<td>${item.TOT_AMT}</td>
<td>${item.REM_NM}</td>
</tr>
</c:forEach>
</c:otherwise>
</c:choose>
</table>
</form>
</body>
</html>