notice.jsp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <%@page import="kr.co.hsnc.common.util.ValueObject"%>
  3. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  4. <%@ page import="com.udapsoft.waf.system.HandlerStorage" %>
  5. <%@ page import="kr.co.hsnc.common.util.*"%>
  6. <%@ page import="kr.co.hsnc.common.sql.*" %>
  7. <%@ include file="/jsp/work/taglib.jsp" %>
  8. <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
  9. <%
  10. ctx.init(request, response);
  11. ValueObject user = ctx.getUser();
  12. HandlerStorage storage = ctx.getHandlerStorage();
  13. ValueObject params = ctx.getParams();
  14. RowSet notiRowSet = storage.getRowSet("notiRowSet");
  15. int rowSize = notiRowSet.size();
  16. if(rowSize > 5) {
  17. rowSize = 5;
  18. }
  19. ValueObject getResultTargetCnt = storage.getValueObject("getResultTargetCnt");
  20. ValueObject getBidCnt = storage.getValueObject("getBidCnt");
  21. ValueObject getSuppContCnt = storage.getValueObject("getSuppContCnt");
  22. ValueObject getPayCnt = storage.getValueObject("getPayCnt");
  23. %>
  24. <!-- Notice Style -->
  25. <!-- <link rel="stylesheet" type="text/css" href="/css/supplier/notice.css" /> -->
  26. <!-- Application Script -->
  27. <script type="text/javascript">
  28. /**
  29. * Global variables
  30. */
  31. /**
  32. * Application Init Function
  33. */
  34. function _onReady(){
  35. }
  36. $(document).ready(function(){
  37. //실적증명
  38. var result_target_cnt = "<%=getResultTargetCnt.get("result_target_cnt")%>";
  39. var result_ing_cnt = "<%=getResultTargetCnt.get("result_ing_cnt")%>";
  40. var result_end_cnt = "<%=getResultTargetCnt.get("result_end_cnt")%>";
  41. //전자입찰
  42. var getBidCnt_1 = "<%=getBidCnt.get("CNT_1") %>";
  43. var getBidCnt_2 = "<%=getBidCnt.get("CNT_2") %>";
  44. var getBidCnt_3 = "<%=getBidCnt.get("CNT_3") %>";
  45. var getBidCnt_4 = "<%=getBidCnt.get("CNT_4") %>";
  46. //전자계약
  47. var getSuppContCnt_1 = "<%=getSuppContCnt.get("CNT_1") %>";
  48. var getSuppContCnt_2 = "<%=getSuppContCnt.get("CNT_2") %>";
  49. var getSuppContCnt_3 = "<%=getSuppContCnt.get("CNT_3") %>";
  50. var getSuppContCnt_4 = "<%=getSuppContCnt.get("CNT_4") %>";
  51. //대급지급
  52. var getPayCnt_1 = "<%=getPayCnt.get("CNT_1") %>";
  53. var getPayCnt_2 = "<%=getPayCnt.get("CNT_2") %>";
  54. var getPayCnt_3 = "<%=getPayCnt.get("CNT_3") %>";
  55. var getPayCnt_4 = "<%=getPayCnt.get("CNT_4") %>";
  56. //실적증명
  57. if(result_target_cnt == "0")
  58. {
  59. $("#result_target").addClass("blue");
  60. }
  61. else
  62. {
  63. $("#result_target").addClass("orange");
  64. $("#result_target").css("cursor", "pointer");
  65. }
  66. if(result_ing_cnt == "0")
  67. {
  68. $("#result_ing").addClass("blue");
  69. }
  70. else
  71. {
  72. $("#result_ing").addClass("orange");
  73. $("#result_ing").css("cursor", "pointer");
  74. }
  75. if(result_end_cnt == "0")
  76. {
  77. $("#result_end").addClass("blue");
  78. }
  79. else
  80. {
  81. $("#result_end").addClass("orange");
  82. $("#result_end").css("cursor", "pointer");
  83. }
  84. //전자입찰
  85. if(getBidCnt_1 == "0")
  86. {
  87. $("#getBidCnt_1").addClass("blue");
  88. }
  89. else
  90. {
  91. $("#getBidCnt_1").addClass("orange");
  92. $("#getBidCnt_1").css("cursor", "pointer");
  93. }
  94. if(getBidCnt_2 == "0")
  95. {
  96. $("#getBidCnt_2").addClass("blue");
  97. }
  98. else
  99. {
  100. $("#getBidCnt_2").addClass("orange");
  101. $("#getBidCnt_2").css("cursor", "pointer");
  102. }
  103. if(getBidCnt_3 == "0")
  104. {
  105. $("#getBidCnt_3").addClass("blue");
  106. }
  107. else
  108. {
  109. $("#getBidCnt_3").addClass("orange");
  110. $("#getBidCnt_3").css("cursor", "pointer");
  111. }
  112. if(getBidCnt_4 == "0")
  113. {
  114. $("#getBidCnt_4").addClass("blue");
  115. }
  116. else
  117. {
  118. $("#getBidCnt_4").addClass("orange");
  119. $("#getBidCnt_4").css("cursor", "pointer");
  120. }
  121. if(getSuppContCnt_1 == "0")
  122. {
  123. $("#getSuppContCnt_1").addClass("blue");
  124. }
  125. else
  126. {
  127. $("#getSuppContCnt_1").addClass("orange");
  128. $("#getSuppContCnt_1").css("cursor", "pointer");
  129. }
  130. if(getSuppContCnt_2 == "0")
  131. {
  132. $("#getSuppContCnt_2").addClass("blue");
  133. }
  134. else
  135. {
  136. $("#getSuppContCnt_2").addClass("orange");
  137. $("#getSuppContCnt_2").css("cursor", "pointer");
  138. }
  139. if(getSuppContCnt_3 == "0")
  140. {
  141. $("#getSuppContCnt_3").addClass("blue");
  142. }
  143. else
  144. {
  145. $("#getSuppContCnt_3").addClass("orange");
  146. $("#getSuppContCnt_3").css("cursor", "pointer");
  147. }
  148. if(getSuppContCnt_4 == "0")
  149. {
  150. $("#getSuppContCnt_4").addClass("blue");
  151. }
  152. else
  153. {
  154. $("#getSuppContCnt_4").addClass("orange");
  155. $("#getSuppContCnt_4").css("cursor", "pointer");
  156. }
  157. if(getPayCnt_1 == "0")
  158. {
  159. $("#getPayCnt_1").addClass("blue");
  160. }
  161. else
  162. {
  163. $("#getPayCnt_1").addClass("orange");
  164. $("#getPayCnt_1").css("cursor", "pointer");
  165. }
  166. if(getPayCnt_2 == "0")
  167. {
  168. $("#getPayCnt_2").addClass("blue");
  169. }
  170. else
  171. {
  172. $("#getPayCnt_2").addClass("orange");
  173. $("#getPayCnt_2").css("cursor", "pointer");
  174. }
  175. if(getPayCnt_3 == "0")
  176. {
  177. $("#getPayCnt_3").addClass("blue");
  178. }
  179. else
  180. {
  181. $("#getPayCnt_3").addClass("orange");
  182. $("#getPayCnt_3").css("cursor", "pointer");
  183. }
  184. if(getPayCnt_4 == "0")
  185. {
  186. $("#getPayCnt_4").addClass("blue");
  187. }
  188. else
  189. {
  190. $("#getPayCnt_4").addClass("orange");
  191. $("#getPayCnt_4").css("cursor", "pointer");
  192. }
  193. });
  194. $(function(){
  195. $("#myPage").click(function(){
  196. $("#form1").attr("action", "/portal/own/MyInfo.screen");
  197. $("#form1").attr("target", "_self");
  198. $("#form1").attr("method", "post");
  199. $("#form1").submit();
  200. });
  201. $("#result_target").click(function(){
  202. location.href="/portal/result/ResultTargetList.screen";
  203. });
  204. $("#result_ing").click(function(){
  205. location.href="/portal/result/ResultIngList.screen";
  206. });
  207. $("#result_end").click(function(){
  208. location.href="/portal/result/ResultTargetList.screen";
  209. });
  210. $("#getBidCnt_1").click(function(){
  211. location.href="/portal/bid/SiteExplanList.screen";
  212. });
  213. $("#getBidCnt_2").click(function(){
  214. location.href="/portal/bid/QuotRequestList.screen";
  215. });
  216. $("#getBidCnt_3").click(function(){
  217. location.href="/portal/bid/TBERequestList.screen";
  218. });
  219. $("#getBidCnt_4").click(function(){
  220. location.href="/portal/bid/SuppBidResultList.screen";
  221. });
  222. $("#getSuppContCnt_1").click(function(){
  223. location.href="/portal/cont/SuppContList.screen";
  224. });
  225. $("#getSuppContCnt_2").click(function(){
  226. location.href="/portal/cont/SuppContResultList.screen";
  227. });
  228. $("#getSuppContCnt_3").click(function(){
  229. location.href="/portal/cont/SuppContList.screen";
  230. });
  231. $("#getSuppContCnt_4").click(function(){
  232. location.href="/portal/cont/SuppContResultList.screen";
  233. });
  234. $("#getPayCnt_1").click(function(){
  235. var job_div = "<%=user.get("job_div")%>";
  236. if(job_div == "P")
  237. {
  238. location.href="/portal/payment/BuyPrepaymentsList.screen";
  239. }
  240. else
  241. {
  242. location.href="/portal/payment/AdvencePayRequestList.screen";
  243. }
  244. });
  245. $("#getPayCnt_2").click(function(){
  246. var job_div = "<%=user.get("job_div")%>";
  247. if(job_div == "P")
  248. {
  249. location.href="/portal/payment/BuyPrepaymentsList.screen";
  250. }
  251. else
  252. {
  253. location.href="/portal/payment/AdvencePayRequestResultList.screen";
  254. }
  255. });
  256. $("#getPayCnt_3").click(function(){
  257. var job_div = "<%=user.get("job_div")%>";
  258. if(job_div == "P")
  259. {
  260. location.href="/portal/payment/SuppPayRequestList.screen";
  261. }
  262. else
  263. {
  264. location.href="/portal/payment/ResolutionRequestList.screen";
  265. }
  266. });
  267. $("#getPayCnt_4").click(function(){
  268. var job_div = "<%=user.get("job_div")%>";
  269. if(job_div == "P")
  270. {
  271. location.href="/portal/payment/SuppPayResultList.screen";
  272. }
  273. else
  274. {
  275. location.href="/portal/payment/ResolutionResultList.screen";
  276. }
  277. });
  278. });
  279. function getNotiList() {
  280. var f = document.form1;
  281. f.fevent.value ="";
  282. f.layerYn.value = "N";
  283. f.action = "/supplier/portal/center/SuppNotiList.screen";
  284. f.target = "_self";
  285. f.submit();
  286. }
  287. function getNotiDetail(seq) {
  288. var f = document.form1;
  289. f.fevent.value ="";
  290. f.layerYn.value = "N";
  291. f.seq.value = seq;
  292. f.action = "/supplier/portal/center/SuppNotiDetail.screen";
  293. f.target = "_self";
  294. f.submit();
  295. }
  296. </script>
  297. <form name="form1" id="form1" method="post" action="" >
  298. <input type="hidden" name="user_id" id="user_id" value="<%=user.get("user_id") %>" />
  299. <input type="hidden" name="p_user_id" id="p_user_id" value="<%=user.get("user_id") %>" />
  300. <input type="hidden" name="corp_id" id="corp_id" value="<%=user.get("corp_id") %>" />
  301. <input type="hidden" name="corp_reg_no" id="corp_reg_no" value="<%=user.get("corp_reg_no") %>" />
  302. <input type="hidden" name="job_idv" id="job_idv" value="<%=user.get("job_div") %>" />
  303. <input type="hidden" name="seq" id="seq" />
  304. <INPUT type="hidden" name="fevent" id="fevent" value="">
  305. <INPUT type="hidden" name="layerYn" id="layerYn">
  306. </form>
  307. <div id="main-banner">
  308. <img src="/img/supplier/main_banner.gif" />
  309. </div>
  310. <div id="main-notice">
  311. <div class="notice">
  312. <table width="100%">
  313. <!--
  314. <thead><a href="#"><img src="/img/supplier/main_notice_title.gif" /></a></thead>
  315. <colgroup>
  316. <col width="10" />
  317. <col width="470"/>
  318. <col width="*" />
  319. </colgroup>
  320. <tbody>
  321. <tr>
  322. <th colspan="3" height="8"></th>
  323. </tr>
  324. <tr>
  325. <td align="left"><img src="/img/supplier/ico/blue_a.gif" /></td>
  326. <td align="left"><a href="#">SGC이앤씨 협력업체 포털 시스템을 오픈하였습니다.</a></td>
  327. <td align="right">2014-05-29</td>
  328. </tr>
  329. <tr>
  330. <td align="left"><img src="/img/supplier/ico/blue_a.gif" /></td>
  331. <td align="left"><a href="#">SGC이앤씨 협력업체 포털 시스템을 오픈하였습니다.</a></td>
  332. <td align="right">2014-05-29</td>
  333. </tr>
  334. <tr>
  335. <td align="left"><img src="/img/supplier/ico/blue_a.gif" /></td>
  336. <td align="left"><a href="#">SGC이앤씨 협력업체 포털 시스템을 오픈하였습니다.</a></td>
  337. <td align="right">2014-05-29</td>
  338. </tr>
  339. <tr>
  340. <td align="left"><img src="/img/supplier/ico/blue_a.gif" /></td>
  341. <td align="left"><a href="#">SGC이앤씨 협력업체 포털 시스템을 오픈하였습니다.</a></td>
  342. <td align="right">2014-05-29</td>
  343. </tr>
  344. <tr>
  345. <td align="left" height="22"><img src="/img/supplier/ico/blue_a.gif" /></td>
  346. <td align="left"><a href="#">SGC이앤씨 협력업체 포털 시스템을 오픈하였습니다.</a></td>
  347. <td align="right">2014-05-29</td>
  348. </tr>
  349. </tbody>
  350. -->
  351. <thead>
  352. <a onClick="javascript:getNotiList();"><img src="/img/supplier/main_notice_title.gif" style="cursor: pointer;"/></a>
  353. </thead>
  354. <colgroup>
  355. <col width="10" />
  356. <col width="470"/>
  357. <col width="*" />
  358. </colgroup>
  359. <tbody>
  360. <tr>
  361. <th colspan="3" height="8"></th>
  362. </tr>
  363. <%
  364. for( int i=0; i<rowSize; i++ ) {
  365. %>
  366. <tr>
  367. <td align="left">
  368. <img src="/img/supplier/ico/blue_a.gif" />
  369. </td>
  370. <td align="left"><a onClick="javascript:getNotiDetail(<%= notiRowSet.getRow(i).get("seq") %>);" style="cursor: pointer;">
  371. <%
  372. if( notiRowSet.getRow(i).get("title").length() > 22 ) {
  373. %>
  374. <%=notiRowSet.getRow(i).get("title").substring(0, 22) + "..."%>
  375. <%
  376. }
  377. else {
  378. %>
  379. <%=notiRowSet.getRow(i).get("title")%>
  380. <%
  381. }
  382. %>
  383. </a>
  384. </td>
  385. <td align="right">
  386. <%= notiRowSet.getRow(i).get("noti_dy").substring(0,4) + "-" +
  387. notiRowSet.getRow(i).get("noti_dy").substring(4,6) + "-" +
  388. notiRowSet.getRow(i).get("noti_dy").substring(6,8) %>
  389. </td>
  390. </tr>
  391. <%
  392. }
  393. %>
  394. </tr>
  395. </tbody>
  396. </table>
  397. </div>
  398. <div class="userInfo">
  399. <div><img src="/img/supplier/main_userinfo_title.gif" id="myPage" name="myPage" style="cursor: pointer;"/></div>
  400. <table width="100%">
  401. <colgroup>
  402. <col width="10" />
  403. <col width="80" />
  404. <col width="*" />
  405. </colgroup>
  406. <tr>
  407. <th align="left"><img src="/img/supplier/ico/blue_b.gif" /></th>
  408. <th align="left">성명</th>
  409. <td align="left"><%=user.get("user_name") %></td>
  410. </tr>
  411. <tr>
  412. <th align="left"><img src="/img/supplier/ico/blue_b.gif" /></th>
  413. <th align="left">전화번호</th>
  414. <td align="left"><%=user.get("tel_num") %></td>
  415. </tr>
  416. <tr>
  417. <th align="left"><img src="/img/supplier/ico/blue_b.gif" /></th>
  418. <th align="left">핸드폰</th>
  419. <td align="left"><%=user.get("hp1") + "-" + user.get("hp2") + "-" + user.get("hp3") %></td>
  420. </tr>
  421. <tr>
  422. <th align="left"><img src="/img/supplier/ico/blue_b.gif" /></th>
  423. <th align="left">이메일</th>
  424. <td align="left"><%=user.get("email") %></td>
  425. </tr>
  426. </table>
  427. </div>
  428. </div>
  429. <div id="main-todo">
  430. <div class="title"><img src="/img/supplier/main_todo_title.gif" /></div>
  431. <table width="100%">
  432. <colgroup>
  433. <col width="1%" />
  434. <col width="10%" />
  435. <col width="42%"/>
  436. <col width="3%" />
  437. <col width="1%" />
  438. <col width="9%" />
  439. <col width="40%" />
  440. </colgroup>
  441. <tbody>
  442. <tr>
  443. <th colspan="3"><img src="/img/supplier/btn/bid.gif" /></th>
  444. <th style="border-style: none;"></th>
  445. <th colspan="3"><img src="/img/supplier/btn/contract.gif" /></th>
  446. </tr>
  447. <tr>
  448. <td><img src="/img/supplier/ico/blue_a.gif" /></td>
  449. <%if(user.get("job_div").equals("P")){ %>
  450. <td class="bold">구매</td>
  451. <td>
  452. 입찰공고<span class="bold" id="getBidCnt_1">(<%=getBidCnt.get("CNT_1") %>)</span>
  453. &gt;
  454. 견적제출<span class="bold" id="getBidCnt_2">(<%=getBidCnt.get("CNT_2") %>)</span>
  455. &gt;
  456. 기술검토자료제출<span class="bold" id="getBidCnt_3">(<%=getBidCnt.get("CNT_3") %>)</span>
  457. &gt;
  458. 입찰결과<span class="bold" id="getBidCnt_4">(<%=getBidCnt.get("CNT_4") %>)</span>
  459. </td>
  460. <%}else{ %>
  461. <td class="bold">외주</td>
  462. <td>
  463. 입찰공고<span class="bold" id="getBidCnt_1">(<%=getBidCnt.get("CNT_1") %>)</span>
  464. &gt;
  465. 견적제출<span class="bold" id="getBidCnt_2">(<%=getBidCnt.get("CNT_2") %>)</span>
  466. &gt;
  467. 기술검토자료제출<span class="bold" id="getBidCnt_3">(<%=getBidCnt.get("CNT_3") %>)</span>
  468. &gt;
  469. 입찰결과<span class="bold" id="getBidCnt_4">(<%=getBidCnt.get("CNT_4") %>)</span>
  470. </td>
  471. <%} %>
  472. <td style="border-style: none;"></td>
  473. <td><img src="/img/supplier/ico/blue_a.gif" /></td>
  474. <td class="bold">신규계약</td>
  475. <td>
  476. 진행중<span class="bold" id="getSuppContCnt_1">(<%=getSuppContCnt.get("CNT_1") %>)</span>
  477. &gt;
  478. 계약완료<span class="bold" id="getSuppContCnt_2">(<%=getSuppContCnt.get("CNT_2") %>)</span>
  479. </td>
  480. </tr>
  481. <tr>
  482. <td style="border-style: none;"></td>
  483. <td style="border-style: none;"></td>
  484. <td style="border-style: none;"></td>
  485. <td style="border-style: none;"></td>
  486. <td><img src="/img/supplier/ico/blue_a.gif" /></td>
  487. <td class="bold">변경계약</td>
  488. <td>
  489. 진행중<span class="bold" id="getSuppContCnt_3">(<%=getSuppContCnt.get("CNT_3") %>)</span>
  490. &gt;
  491. 계약완료<span class="bold" id="getSuppContCnt_4">(<%=getSuppContCnt.get("CNT_4") %>)</span>
  492. </td>
  493. </tr>
  494. <tr>
  495. <th colspan="3"><img src="/img/supplier/btn/payment.gif" /></th>
  496. <%if(user.get("job_div").equals("P")){ %>
  497. <th colspan="4" style="border-style: none;"></th>
  498. <%}else{ %>
  499. <th style="border-style: none;"></th>
  500. <th colspan="3"><img src="/img/supplier/btn/Verification.gif" /></th>
  501. <%} %>
  502. </tr>
  503. <tr>
  504. <td><img src="/img/supplier/ico/blue_a.gif" /></td>
  505. <%if(user.get("job_div").equals("P")){ %>
  506. <td class="bold">구매_선급금</td>
  507. <td>
  508. 진행중<span class="bold" id="getPayCnt_1">(<%=getPayCnt.get("CNT_1") %>)</span>
  509. &gt;
  510. 완료<span class="bold" id="getPayCnt_2">(<%=getPayCnt.get("CNT_2") %>)</span>
  511. </td>
  512. <%}else{ %>
  513. <td class="bold">외주_선급금</td>
  514. <td>
  515. 진행중<span class="bold" id="getPayCnt_1">(<%=getPayCnt.get("CNT_1") %>)</span>
  516. &gt;
  517. 완료<span class="bold" id="getPayCnt_2">(<%=getPayCnt.get("CNT_2") %>)</span>
  518. </td>
  519. <%} %>
  520. <td style="border-style: none;"></td>
  521. <%if(user.get("job_div").equals("P")){ %>
  522. <!-- <td></td> -->
  523. <!-- <td></td> -->
  524. <!-- <td></td> -->
  525. <%}else{ %>
  526. <td><img src="/img/supplier/ico/blue_a.gif" /></td>
  527. <td class="bold">실적증명</td>
  528. <td>
  529. 발급대상<span class="bold" id="result_target">(<%=getResultTargetCnt.get("result_target_cnt") %>)</span>
  530. &gt;
  531. 진행중<span class="bold" id="result_ing">(<%=getResultTargetCnt.get("result_ing_cnt") %>)</span>
  532. &gt;
  533. 발급완료<span class="bold" id="result_end">(<%=getResultTargetCnt.get("result_end_cnt") %>)</span>
  534. </td>
  535. <%} %>
  536. </tr>
  537. <tr>
  538. <td><img src="/img/supplier/ico/blue_a.gif" /></td>
  539. <%if(user.get("job_div").equals("P")){ %>
  540. <td class="bold">구매_대금지급</td>
  541. <td>
  542. 진행중<span class="bold" id="getPayCnt_3">(<%=getPayCnt.get("CNT_3") %>)</span>
  543. &gt;
  544. 완료<span class="bold" id="getPayCnt_4">(<%=getPayCnt.get("CNT_4") %>)</span>
  545. </td>
  546. <%}else{ %>
  547. <td class="bold">외주_기성</td>
  548. <td>
  549. 진행중<span class="bold" id="getPayCnt_3">(<%=getPayCnt.get("CNT_3") %>)</span>
  550. &gt;
  551. 완료<span class="bold" id="getPayCnt_4">(<%=getPayCnt.get("CNT_4") %>)</span>
  552. </td>
  553. <td style="border-top-style: none;"></td>
  554. <td></td>
  555. <td class="bold"></td>
  556. <td></td>
  557. <%} %>
  558. </tr>
  559. </tbody>
  560. </table>
  561. </div>