12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <%--
- - FileName : stampDescPopup.jsp
- - Author(s) : Eno Lee
- - Date : 2015.01.12
- - Description: 인지세안내
- --%>
- <%@ page contentType="text/html; charset=utf-8" %>
- <%@ page import="kr.co.hsnc.common.sql.RowSet" %>
- <%@ page import="kr.co.hsnc.common.util.ValueObject" %>
- <%@ page import="com.udapsoft.waf.system.*" %>
- <%@ page import="com.udapsoft.waf.common.*" %>
- <%@ page import="kr.co.udapsoft.common.*" %>
- <%@ page import="com.udapsoft.waf.common.ui.HTMLMaker" %>
- <%@ page import="com.udapsoft.waf.system.HandlerStorage" %>
- <%@ include file="/jsp/work/taglib.jsp" %>
- <modular:search id="form1">
- <modular:key id="fevent" />
- </modular:search>
- <FORM id="form1" name="form1" method="post" modular:type="search">
- <INPUT type="hidden" name="fevent" id="fevent" value="">
- <!-- 검색조건 시작 -->
- <table class="form-table">
- <colgroup>
- <col width="200" />
- <col width="100" />
- </colgroup>
- <tr>
- <th style="text-align: center; height:25px;">계약금액(VAT포함)</th>
- <th style="text-align: center;">납부금액</th>
- </tr>
- <tr>
- <td style="height:25px;">1천만원 초과 ~ 3천만원 이하</td>
- <td style="text-align: center;">2만원</td>
- </tr>
- <tr>
- <td style="height:25px;">3천만원 초과 ~ 5천만원 이하</td>
- <td style="text-align: center;">4만원</td>
- </tr>
- <tr>
- <td style="height:25px;">5천만원 초과 ~ 1억원 이하</td>
- <td style="text-align: center;">7만원</td>
- </tr>
- <tr>
- <td style="height:25px;">1억원 초과 ~ 10억원 이하</td>
- <td style="text-align: center;">15만원</td>
- </tr>
- <tr>
- <td style="height:25px;">10억원 초과</td>
- <td style="text-align: center;">35만원</td>
- </tr>
- </table>
- </form>
|