ContInfo.jsp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. <%@page import="com.udapsoft.waf.common.util.Formatter2"%>
  2. <%@ page contentType="text/html; charset=utf-8" %>
  3. <%
  4. if (isViewWrite == "W"){
  5. %>
  6. <!-- 계약 정보 : 시작 -->
  7. <div class="application-info magT10">
  8. <div class="application-sub-title">
  9. <span class="title">기본정보</span>
  10. </div>
  11. <div class="application-location">
  12. </div>
  13. </div>
  14. <TABLE class="form-table">
  15. <colgroup>
  16. <col width="120px" />
  17. <col width="24%"/>
  18. <col width="120px" />
  19. <col width="24%"/>
  20. <col width="120px" />
  21. <col/>
  22. </colgroup>
  23. <TR height="25">
  24. <TH>현장명</TH>
  25. <TD><%=ContInfo.get("DEPT_NAME")%></TD>
  26. <TH>발주의뢰번호</TH>
  27. <TD><%=ContInfo.get("DEMANDED_NO")%></TD>
  28. <TH>발주의뢰자</TH>
  29. <TD><%= ContInfo.get("EMP_NM")%></TD>
  30. </TR>
  31. <TR height="25">
  32. <TH>발주의뢰일</TH>
  33. <TD><%= ContInfo.get("DEMANDED_DATE")%></TD>
  34. <TH>발주의뢰부서</TH>
  35. <TD><%= ContInfo.get("REQ_DEPT_NM")%></TD>
  36. <TH>통화구분</TH>
  37. <TD><%= InputText.get("CURRENCY_GB", ContInfo.get("CURRENCY_GB"), 97, 20, "required,desc=통화구분,readOnly,persize") %><INPUT TYPE="hidden" name="sosuNum" ID="sosuNum" value="<%= ContInfo.get("SOSUNUM")%>"><%//=CommCodeManager.getSelectCodeList("911", "CURRENCY_GB", "width:150px;disabled", "", ContInfo.get("CURRENCY_GB")) %></TD>
  38. </TR>
  39. <TR height="25">
  40. <TH>계약명</TH>
  41. <TD colspan="5"><%= ContInfo.get("CST_DOC_NAME")%></TD>
  42. </TR>
  43. <%
  44. //2019.11.18 자유서식인 경우 해외업체 아니어도 대금지급 여부 노출되도록 수정 요청(송영주 과장님)
  45. //if((params.get("TEMPLATE_CD").equals("9") || params.get("TEMPLATE_CD").equals("10")) && ContInfo.get("IN_OUT_DIV").equals("O")){
  46. if(params.get("TEMPLATE_CD").equals("9") || params.get("TEMPLATE_CD").equals("10")){
  47. %>
  48. <TR height="25">
  49. <TH class="required">전자계약 여부</TH>
  50. <TD>
  51. <LABEL for="ELEC_CON_YN1"><INPUT id="ELEC_CON_YN1" type="radio" name="ELEC_CON_YN" value="Y" <%=(ContInfo.get("ELEC_CON_YN").equals("Y") || ContInfo.get("ELEC_CON_YN").equals("")) ? "checked=\"checked\"" : "" %>>온라인</LABEL>
  52. <LABEL for="ELEC_CON_YN2"><INPUT id="ELEC_CON_YN2" type="radio" name="ELEC_CON_YN" value="N" <%=ContInfo.get("ELEC_CON_YN").equals("N") ? "checked=\"checked\"" : "" %>>오프라인</LABEL>
  53. </TD>
  54. <TH >대금지급 여부</TH>
  55. <TD colspan="3">
  56. <LABEL for="ERP_CHECK_YN1"><INPUT id="ERP_CHECK_YN1" type="radio" name="ERP_CHECK_YN" value="Y" <%=(ContInfo.get("ERP_CHECK_YN").equals("Y") || ContInfo.get("ERP_CHECK_YN").equals("")) ? "checked=\"checked\"" : "" %>>예 (ERP거래처 등록 후 작성완료)</LABEL>
  57. <LABEL for="ERP_CHECK_YN2"><INPUT id="ERP_CHECK_YN2" type="radio" name="ERP_CHECK_YN" value="N" onclick="javascipt:erpCheckYn();" <%=ContInfo.get("ERP_CHECK_YN").equals("N") ? "checked=\"checked\"" : "" %>>아니요(관리목적 계약 등록건)</LABEL>
  58. </TD>
  59. </TR>
  60. <%}else{ %>
  61. <%if(ContInfo.get("IN_OUT_DIV").equals("O")){ %>
  62. <TR height="25">
  63. <TH class="required">전자계약 여부</TH>
  64. <TD colspan="5">
  65. <LABEL for="ELEC_CON_YN1"><INPUT id="ELEC_CON_YN1" type="radio" name="ELEC_CON_YN" value="Y" disabled>온라인</LABEL>
  66. <LABEL for="ELEC_CON_YN2"><INPUT id="ELEC_CON_YN2" type="radio" name="ELEC_CON_YN" value="N" checked="checked">오프라인</LABEL>
  67. <INPUT type="hidden" name="ERP_CHECK_YN" VALUE ="<%=ContInfo.get("ERP_CHECK_YN") %>"/>
  68. </TD>
  69. </TR>
  70. <%}else{ %>
  71. <TR height="25">
  72. <TH class="required">전자계약 여부</TH>
  73. <TD colspan="5">
  74. <LABEL for="ELEC_CON_YN1"><INPUT id="ELEC_CON_YN1" type="radio" name="ELEC_CON_YN" value="Y" <%=(ContInfo.get("ELEC_CON_YN").equals("Y") || ContInfo.get("ELEC_CON_YN").equals("")) ? "checked=\"checked\"" : "" %>>온라인</LABEL>
  75. <LABEL for="ELEC_CON_YN2"><INPUT id="ELEC_CON_YN2" type="radio" name="ELEC_CON_YN" value="N" <%=ContInfo.get("ELEC_CON_YN").equals("N") ? "checked=\"checked\"" : "" %>>오프라인</LABEL>
  76. <INPUT type="hidden" name="ERP_CHECK_YN" VALUE ="<%=ContInfo.get("ERP_CHECK_YN") %>"/>
  77. </TD>
  78. </TR>
  79. <%} %>
  80. <%} %>
  81. </TABLE>
  82. <%
  83. /*
  84. 분개유형
  85. */
  86. %>
  87. <%@ include file="/jsp/ko_KR/buyer/cont/purchase/payItem.jsp" %>
  88. <%@ include file="/jsp/ko_KR/buyer/cont/purchase/stampDuty.jsp" %>
  89. <%@ include file="/jsp/ko_KR/buyer/cont/purchase/promiseDocList.jsp" %>
  90. <div class="application-info magT10">
  91. <div class="application-sub-title">
  92. <span class="title">당사정보(원사업자) </span><font color="red">*필수입력항목</font>
  93. </div>
  94. <div class="application-location">
  95. <%if (!ContInfo.get("O_SIGN_DATE").equals("")){%>
  96. 서명일시 : <%= ContInfo.get("O_SIGN_DATE") %>
  97. <%}%>
  98. </div>
  99. </div>
  100. <TABLE class="form-table">
  101. <colgroup>
  102. <col width="120px" />
  103. <col width="24%"/>
  104. <col width="120px" />
  105. <col width="24%"/>
  106. <col width="120px" />
  107. <col/>
  108. </colgroup>
  109. <TR height="25">
  110. <TH>업체명</TH>
  111. <TD colspan="3"><%= InputText.get("O_MEMBER_NAME", ContInfo.get("O_MEMBER_NAME"), 97, 60, "required,desc=업체명,readOnly,persize") %></TD>
  112. <TH>대표자명</TH>
  113. <TD><%= InputText.get("O_BOSS_NAME", ContInfo.get("O_BOSS_NAME"), 97, 30, "required,desc=대표자명,readOnly,persize") %></TD>
  114. </TR>
  115. <TR height="25">
  116. <TH>주소</TH>
  117. <TD colspan="5"><%= InputText.get("O_ADDRESS", ContInfo.get("O_ADDRESS"), 97, 200, "required,desc=주소,readOnly,persize") %></TD>
  118. <!-- TH class="required">승인자</TH>
  119. <TD>
  120. <INPUT type="hidden" name="CON_CONFIRM_ID" id="CON_CONFIRM_ID" value="<%=ContInfo.get("CON_CONFIRM_ID")%>" />
  121. <%= InputText.get("CON_CONFIRM_NAME", ContInfo.get("CON_CONFIRM_NAME"), 80, 100, "required,desc=승인자,persize,readOnly") %>
  122. <IMG id="btn_sitedescchrgprsnid" src="/img/buyer/button/bt_search_right.gif" alt="승인자" border="0" align="absmiddle" style="cursor:pointer;" onClick="JavaScript:SearchUser('','CON_CONFIRM_NAME','CON_CONFIRM_ID');">
  123. </TD -->
  124. </TR>
  125. <TR height="25">
  126. <TH class="required">담당부서</TH>
  127. <TD><%= InputText.get("O_DIVISION", ContInfo.get("O_DIVISION"), 97, 50, "required,desc=담당부서,persize,hangule") %></TD>
  128. <TH class="required">담당자명</TH>
  129. <TD>
  130. <%= InputText.get("O_USER_NAME", ContInfo.get("O_USER_NAME"), 88, 100, "required,desc=담당자명,persize,readOnly") %>
  131. <IMG id="btn_sitedescchrgprsnid" src="/img/buyer/button/bt_search_right.gif" alt="담당자" border="0" align="absmiddle" style="cursor:pointer;" onClick="JavaScript:SearchUser('','','');">
  132. </TD>
  133. <TH>직급</TH>
  134. <TD><%= InputText.get("O_POSITION", ContInfo.get("O_POSITION"), 97, 20, "desc=직급,persize,hangule") %></TD>
  135. </TR>
  136. <TR height="25">
  137. <TH class="required">담당자 연락처</TH>
  138. <TD><%= InputText.get("O_TEL_NUM", ContInfo.get("O_TEL_NUM"), 63, 15, "required,desc=담당자 연락처,persize") %> ex)02-0000-0000</TD>
  139. <TH class="required">담당자 HP</TH>
  140. <TD><%= InputText.get("O_HP", ContInfo.get("O_HP"), 61, 15, "required,desc=담당자 HP,persize") %> ex)010-0000-0000</TD>
  141. <TH class="required">담당자 EMAIL</TH>
  142. <TD><%= InputText.get("O_EMAIL", ContInfo.get("O_EMAIL"), 97, 100, "required,desc=담당자 EMAIL,persize") %></TD>
  143. </TR>
  144. <!-- 계약정보 : 종료 -->
  145. </table>
  146. <div class="application-info magT10">
  147. <div class="application-sub-title">
  148. <span class="title">계약업체정보(수급 사업자) </span><font color="red">*필수입력항목</font>
  149. </div>
  150. <div class="application-location">
  151. <%if (!ContInfo.get("C_SIGN_DATE").equals("")){%>
  152. 서명일시 : <%= ContInfo.get("C_SIGN_DATE") %>
  153. <%}%>
  154. </div>
  155. </div>
  156. <TABLE class="form-table">
  157. <colgroup>
  158. <col width="120px" />
  159. <col width="24%"/>
  160. <col width="120px" />
  161. <col width="24%"/>
  162. <col width="120px" />
  163. <col/>
  164. </colgroup>
  165. <TR height="25">
  166. <TH>업체명</TH>
  167. <TD colspan="3"><%= InputText.get("C_MEMBER_NAME", ContInfo.get("C_MEMBER_NAME"), 97, 60, "required,desc=업체명,readOnly,persize") %></TD>
  168. <TH>대표자명</TH>
  169. <TD><%= InputText.get("C_BOSS_NAME", ContInfo.get("C_BOSS_NAME"), 97, 30, "required,desc=대표자명,persize", "", "onblur=\"javascript:replaceInput(this, 'c_boss_name', __html);\"") %></TD>
  170. </TR>
  171. <TR height="25">
  172. <TH class="required">주소</TH>
  173. <TD colspan="5"><%= InputText.get("C_ADDRESS", ContInfo.get("C_ADDRESS"), 97, 200, "required,desc=주소,persize,hangule", "", "onblur=\"javascript:replaceInput(this, 'c_address', __html);\"") %></TD>
  174. </TR>
  175. <TR height="25">
  176. <TH>담당부서</TH>
  177. <TD><%= InputText.get("C_DIVISION", ContInfo.get("C_DIVISION"), 97, 60, "desc=담당부서,persize,hangule") %></TD>
  178. <TH class="required">담당자명</TH>
  179. <TD><%= InputText.get("C_USER_NAME", ContInfo.get("C_USER_NAME"), 97, 100, "required,desc=담당자명,persize,hangule") %></TD>
  180. <TH>직급</TH>
  181. <TD><%= InputText.get("C_POSITION", ContInfo.get("C_POSITION"), 97, 20, "desc=직급,persize,hangule") %></TD>
  182. </TR>
  183. <TR height="25">
  184. <TH class="required">담당자 연락처</TH>
  185. <TD><%= InputText.get("C_TEL_NUM", ContInfo.get("C_TEL_NUM"), 63, 15, "required,desc=담당자 연락처,persize") %> ex)02-0000-0000</TD>
  186. <TH class="required">담당자 HP</TH>
  187. <TD><%= InputText.get("C_HP", ContInfo.get("C_HP"), 61, 15, "required,desc=담당자 HP,persize") %> ex)010-0000-0000</TD>
  188. <TH class="required">담당자 EMAIL</TH>
  189. <TD><%= InputText.get("C_EMAIL", ContInfo.get("C_EMAIL"), 97, 100, "required,desc=담당자 EMAIL,persize") %></TD>
  190. </TR>
  191. </table>
  192. <div <%if(ContInfo.getInt("MOD_NO") <= 0){%>style="display:none;"<%}%>>
  193. <!-- 계약정보 : 종료 -->
  194. <div class="application-info magT10">
  195. <div class="application-sub-title">
  196. <span class="title">결재정보 </span>
  197. </div>
  198. </div>
  199. <TABLE class="form-table">
  200. <colgroup>
  201. <col width="120px" />
  202. <col/>
  203. <col width="120px" />
  204. <col/>
  205. <col width="120px" />
  206. <col/>
  207. <col width="120px" />
  208. <col/>
  209. </colgroup>
  210. <TR height="25">
  211. <TH style="text-align: center; padding-left:0px;">당초 도급금액</TH>
  212. <TD><%= InputText.get("FRST_CON_AMT", Formatter2.currency(ContInfo.getDouble("FRST_CON_AMT"), 0), 97, 100, "required,desc=당초 도급금액,persize,Number,right","number") %></TD>
  213. <TH style="text-align: center; padding-left:0px;">당초 실행예산</TH>
  214. <TD><%= InputText.get("FRST_EXE_AMT", Formatter2.currency(ContInfo.getDouble("FRST_EXE_AMT"), 0), 97, 100, "required,desc=당초 실행예산,persize,Number,right","number") %></TD>
  215. <TH style="text-align: center; padding-left:0px;">변경 도급금액</TH>
  216. <TD><%= InputText.get("CHG_CON_AMT", Formatter2.currency(ContInfo.getDouble("CHG_CON_AMT"), 0), 97, 100, "required,desc=변경 도급금액,persize,Number,right","number") %></TD>
  217. <TH style="text-align: center; padding-left:0px;">변경 실행예산</TH>
  218. <TD><%= InputText.get("CHG_EXE_AMT", Formatter2.currency(ContInfo.getDouble("CHG_EXE_AMT"), 0), 97, 100, "required,desc=변경 실행예산,persize,Number,right","number") %></TD>
  219. </TR>
  220. <TR height="75">
  221. <TH>내부특기사항</TH>
  222. <TD colspan="3"><TEXTAREA name="IN_SPE_INFO" id="IN_SPE_INFO" style="width:95%;height:74px" rows="1" class="input"><%=ContInfo.get("IN_SPE_INFO") %></TEXTAREA> </TD>
  223. <TH>내부변경사유</TH>
  224. <TD colspan="3"><TEXTAREA name="IN_CHG_INFO" id="IN_CHG_INFO" style="width:95%;height:74px" rows="1" class="input"><%=ContInfo.get("IN_CHG_INFO") %></TEXTAREA></TD>
  225. </TR>
  226. <!-- 계약정보 : 종료 -->
  227. </table>
  228. </div>
  229. <%
  230. /*
  231. 대금 계획 2016.4.26 변경계약일때 계약완료후 대금계획 작성.
  232. */
  233. if(ContInfo.get("PAY_DIV").equals("2") && ContInfo.getInt("MOD_NO") <= 0 ){
  234. %>
  235. <%@ include file="/jsp/ko_KR/buyer/cont/purchase/PayPlan.jsp" %>
  236. <%
  237. }
  238. %>
  239. <%
  240. }else if (isViewWrite=="V"){
  241. %>
  242. <!-- 계약 정보 : 시작 -->
  243. <div class="application-info magT10">
  244. <div class="application-sub-title">
  245. <span class="title">기본정보</span>
  246. </div>
  247. <div class="application-location">
  248. </div>
  249. </div>
  250. <TABLE class="form-table">
  251. <colgroup>
  252. <col width="120px" />
  253. <col width="24%"/>
  254. <col width="120px" />
  255. <col width="24%"/>
  256. <col width="120px" />
  257. <col/>
  258. </colgroup>
  259. <TR height="25">
  260. <TH>현장명</TH>
  261. <TD><%=ContInfo.get("DEPT_NAME")%></TD>
  262. <TH>발주의뢰번호</TH>
  263. <TD><%=ContInfo.get("DEMANDED_NO")%></TD>
  264. <TH>발주의뢰자</TH>
  265. <TD><%= ContInfo.get("EMP_NM")%></TD>
  266. </TR>
  267. <TR height="25">
  268. <TH>발주의뢰일</TH>
  269. <TD><%= ContInfo.get("DEMANDED_DATE")%></TD>
  270. <TH>발주의뢰부서</TH>
  271. <TD><%= ContInfo.get("REQ_DEPT_NM")%></TD>
  272. <TH>통화구분</TH>
  273. <TD><%=ContInfo.get("CURRENCY_GB")%><INPUT TYPE="HIDDEN" name="sosuNum" ID="sosuNum" value="<%= ContInfo.get("SOSUNUM")%>"></TD>
  274. </TR>
  275. <TR height="25">
  276. <TH>계약명</TH>
  277. <TD colspan="3"><%= ContInfo.get("CST_DOC_NAME")%></TD>
  278. <TH>계약번호</TH>
  279. <TD><%=ContInfo.get("ORD_DOC_NO")%></TD>
  280. </TR>
  281. <%
  282. //2019.11.18 자유서식인 경우 해외업체 아니어도 대금지급 여부 노출되도록 수정 요청(송영주 과장님)
  283. //<% if((params.get("TEMPLATE_CD").equals("9") || params.get("TEMPLATE_CD").equals("10")) && ContInfo.get("IN_OUT_DIV").equals("O")){
  284. if(params.get("TEMPLATE_CD").equals("9") || params.get("TEMPLATE_CD").equals("10")){
  285. %>
  286. <TR height="25">
  287. <TH>전자계약 여부</TH>
  288. <TD>
  289. <%=ContInfo.get("ELEC_CON_YN").equals("Y") ? "온라인" : "오프라인" %>
  290. </TD>
  291. <TH >대금지급 여부</TH>
  292. <TD colspan="3">
  293. <%=ContInfo.get("ERP_CHECK_YN").equals("Y") ? "예 (ERP거래처 등록 후 작성완료)" : "아니요(관리목적 계약 등록건)" %>
  294. <LABEL for="ERP_CHECK_YN1" style="display:none"><INPUT id="ERP_CHECK_YN1" type="radio" name="ERP_CHECK_YN" value="Y" <%=(ContInfo.get("ERP_CHECK_YN").equals("Y") || ContInfo.get("ERP_CHECK_YN").equals("")) ? "checked=\"checked\"" : "" %>>예</LABEL>
  295. <LABEL for="ERP_CHECK_YN2" style="display:none"><INPUT id="ERP_CHECK_YN2" type="radio" name="ERP_CHECK_YN" value="N" <%=ContInfo.get("ERP_CHECK_YN").equals("N") ? "checked=\"checked\"" : "" %>>아니요</LABEL>
  296. </TD>
  297. </TR>
  298. <%}else{ %>
  299. <TR height="25">
  300. <TH>전자계약 여부</TH>
  301. <TD colspan="5">
  302. <%=ContInfo.get("ELEC_CON_YN").equals("Y") ? "온라인" : "오프라인" %>
  303. </TD>
  304. </TR>
  305. <%} %>
  306. </TABLE>
  307. <%
  308. /*
  309. 분개유형
  310. */
  311. %>
  312. <%@ include file="/jsp/ko_KR/buyer/cont/purchase/payItem.jsp" %>
  313. <%@ include file="/jsp/ko_KR/buyer/cont/purchase/stampDuty.jsp" %>
  314. <%@ include file="/jsp/ko_KR/buyer/cont/purchase/promiseDocList.jsp" %>
  315. <div class="application-info magT10">
  316. <div class="application-sub-title">
  317. <span class="title">당사정보(원사업자) </span>
  318. </div>
  319. <div class="application-location">
  320. <%if (!ContInfo.get("O_SIGN_DATE").equals("")){%>
  321. 서명일시 : <%= ContInfo.get("O_SIGN_DATE") %>
  322. <%}%>
  323. </div>
  324. </div>
  325. <TABLE class="form-table">
  326. <colgroup>
  327. <col width="120px" />
  328. <col width="24%"/>
  329. <col width="120px" />
  330. <col width="24%"/>
  331. <col width="120px" />
  332. <col/>
  333. </colgroup>
  334. <TR height="25">
  335. <TH>업체명</TH>
  336. <TD colspan="3"><%= ContInfo.get("O_MEMBER_NAME")%></TD>
  337. <TH>대표자명</TH>
  338. <TD><%= ContInfo.get("O_BOSS_NAME")%></TD>
  339. </TR>
  340. <TR height="25">
  341. <TH>주소</TH>
  342. <TD colspan="5"><%= ContInfo.get("O_ADDRESS")%></TD>
  343. <!-- TH>승인자</TH>
  344. <TD><%= ContInfo.get("CON_CONFIRM_NAME")%></TD -->
  345. </TR>
  346. <TR height="25">
  347. <TH>담당부서</TH>
  348. <TD><%= ContInfo.get("O_DIVISION")%></TD>
  349. <TH>담당자명</TH>
  350. <TD><%= ContInfo.get("O_USER_NAME")%></TD>
  351. <TH>직급</TH>
  352. <TD><%= ContInfo.get("O_POSITION")%></TD>
  353. </TR>
  354. <TR height="25">
  355. <TH>담당자 연락처</TH>
  356. <TD><%= ContInfo.get("O_TEL_NUM")%></TD>
  357. <TH>담당자 HP</TH>
  358. <TD><%= ContInfo.get("O_HP")%></TD>
  359. <TH>담당자 EMAIL</TH>
  360. <TD><%= ContInfo.get("O_EMAIL")%></TD>
  361. </TR>
  362. <!-- 계약정보 : 종료 -->
  363. </table>
  364. <div class="application-info magT10">
  365. <div class="application-sub-title">
  366. <span class="title">계약업체정보(수급 사업자)</span>
  367. <!-- 2017.03.07 계약완료후 담당자 정보 수정 -->
  368. <% if (storage.getUser().get("RIGHT_NAME").equals("ADMIN NEW") || storage.getUser().get("RIGHT_NAME").equals("PURCHASE")){%>
  369. <span class="btnSearch center" id="btnChgSuppInfo" ><a href="javascript:void(0);">담당자정보변경</a></span>
  370. <%}%>
  371. </div>
  372. <div class="application-location">
  373. <%if (!ContInfo.get("C_SIGN_DATE").equals("")){%>
  374. 서명일시 : <%= ContInfo.get("C_SIGN_DATE") %>
  375. <%}%>
  376. </div>
  377. </div>
  378. <TABLE class="form-table">
  379. <colgroup>
  380. <col width="120px" />
  381. <col width="24%"/>
  382. <col width="120px" />
  383. <col width="24%"/>
  384. <col width="120px" />
  385. <col/>
  386. </colgroup>
  387. <TR height="25">
  388. <TH>업체명</TH>
  389. <TD colspan="3"><%= ContInfo.get("C_MEMBER_NAME")%></TD>
  390. <TH>대표자명</TH>
  391. <TD><%= ContInfo.get("C_BOSS_NAME")%></TD>
  392. </TR>
  393. <TR height="25">
  394. <TH>주소</TH>
  395. <TD colspan="5"><%= ContInfo.get("C_ADDRESS")%></TD>
  396. </TR>
  397. <TR height="25">
  398. <TH>담당부서</TH>
  399. <TD><%= ContInfo.get("C_DIVISION")%></TD>
  400. <% if (storage.getUser().get("RIGHT_NAME").equals("ADMIN NEW") || storage.getUser().get("RIGHT_NAME").equals("PURCHASE")){%>
  401. <TH>담당자명</TH>
  402. <TD><%= InputText.get("C_USER_NAME", ContInfo.get("C_USER_NAME"), 97, 100, "required,desc=담당자명,persize,hangule") %></TD>
  403. <TH>직급</TH>
  404. <TD><%= InputText.get("C_POSITION", ContInfo.get("C_POSITION"), 97, 20, "desc=직급,persize,hangule") %></TD>
  405. </TR>
  406. <TR height="25">
  407. <TH>담당자 연락처</TH>
  408. <TD><%= InputText.get("C_TEL_NUM", ContInfo.get("C_TEL_NUM"), 63, 15, "required,desc=담당자 연락처,persize") %></TD>
  409. <TH>담당자 HP</TH>
  410. <TD><%= InputText.get("C_HP", ContInfo.get("C_HP"), 61, 15, "required,desc=담당자 HP,persize") %> ex)010-0000-0000</TD>
  411. <TH>담당자 EMAIL</TH>
  412. <TD><%= InputText.get("C_EMAIL", ContInfo.get("C_EMAIL"), 97, 100, "required,desc=담당자 EMAIL,persize") %></TD>
  413. <%}else{%>
  414. <TH>담당자명</TH>
  415. <TD><%= ContInfo.get("C_USER_NAME")%></TD>
  416. <TH>직급</TH>
  417. <TD><%= ContInfo.get("C_POSITION")%></TD>
  418. </TR>
  419. <TR height="25">
  420. <TH>담당자 연락처</TH>
  421. <TD><%= ContInfo.get("C_TEL_NUM")%></TD>
  422. <TH>담당자 HP</TH>
  423. <TD><%= ContInfo.get("C_HP")%> </TD>
  424. <TH>담당자 EMAIL</TH>
  425. <TD><%= ContInfo.get("C_EMAIL")%></TD>
  426. <%}%>
  427. </TR>
  428. <!-- 계약정보 : 종료 -->
  429. </table>
  430. <!-- 계약정보 : 종료 -->
  431. <div <%if(ContInfo.getInt("MOD_NO") <= 0){%>style="display:none;"<%}%>>
  432. <div class="application-info magT10">
  433. <div class="application-sub-title">
  434. <span class="title">결재정보 </span>
  435. </div>
  436. </div>
  437. <TABLE class="form-table">
  438. <colgroup>
  439. <col width="120px" />
  440. <col width="15%"/>
  441. <col width="120px" />
  442. <col width="15%"/>
  443. <col width="120px" />
  444. <col width="15%"/>
  445. <col width="120px" />
  446. <col width="15%"/>
  447. <col/>
  448. </colgroup>
  449. <TR height="25">
  450. <TH style="text-align: center; padding-left:0px;">당초 도급금액</TH>
  451. <TD style="text-align: right;"><%= Formatter2.currency(ContInfo.getDouble("FRST_CON_AMT"), 0)%></TD>
  452. <TH style="text-align: center; padding-left:0px;">당초 실행금액</TH>
  453. <TD style="text-align: right;"><%= Formatter2.currency(ContInfo.getDouble("FRST_EXE_AMT"), 0)%></TD>
  454. <TH style="text-align: center; padding-left:0px;">변경 도급금액</TH>
  455. <TD style="text-align: right;"><%= Formatter2.currency(ContInfo.getDouble("CHG_CON_AMT"), 0)%></TD>
  456. <TH style="text-align: center; padding-left:0px;">변경 실행금액</TH>
  457. <TD style="text-align: right;"><%= Formatter2.currency(ContInfo.getDouble("CHG_EXE_AMT"), 0) %></TD>
  458. </TR>
  459. <TR height="75">
  460. <TH>내부특기사항</TH>
  461. <TD colspan="3"><TEXTAREA name="IN_SPE_INFO" id="IN_SPE_INFO" style="width:95%;height:74px" rows="1" class="input" readonly><%=ContInfo.get("IN_SPE_INFO") %></TEXTAREA> </TD>
  462. <TH>내부변경사유</TH>
  463. <TD colspan="3"><TEXTAREA name="IN_CHG_INFO" id="IN_CHG_INFO" style="width:95%;height:74px" rows="1" class="input" readonly><%=ContInfo.get("IN_CHG_INFO") %></TEXTAREA></TD>
  464. </TR>
  465. <!-- 계약정보 : 종료 -->
  466. </table>
  467. </div>
  468. <%
  469. /*
  470. 대금 계획 2016.4.26 변경계약일때 계약완료후 대금계획 작성.
  471. */
  472. if(ContInfo.get("PAY_DIV").equals("2") && ContInfo.getInt("MOD_NO") <= 0 ){
  473. %>
  474. <%@ include file="/jsp/ko_KR/buyer/cont/purchase/PayPlan.jsp" %>
  475. <%
  476. }
  477. if (ContInfo.get("PAY_DIV").equals("2") && ContInfo.getInt("MOD_NO") > 0 && ContInfo.get("STATUS_CD").equals("50")){
  478. %>
  479. <%@ include file="/jsp/ko_KR/buyer/cont/purchase/PayPlan.jsp" %>
  480. <%
  481. }
  482. %>
  483. <%
  484. }
  485. %>