기업회원 첨부파일 뷰어에 기업유형 등 항목 추가
@15fdce717f3fed703e32c542da1064badd05657c
--- src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
+++ src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
... | ... | @@ -5062,6 +5062,7 @@ |
| 5062 | 5062 |
String hstSttus = mberCmpHstVO.getHstSttus(); |
| 5063 | 5063 |
String hstType = mberCmpHstVO.getHstType(); |
| 5064 | 5064 |
String mberNm = mberCmpHstVO.getMberNm(); |
| 5065 |
+ String bizType = mberCmpHstVO.getBizType(); |
|
| 5065 | 5066 |
String bizNo = mberCmpHstVO.getBizNo(); |
| 5066 | 5067 |
String ceoNm = mberCmpHstVO.getCeoNm(); |
| 5067 | 5068 |
String mberId = mberCmpHstVO.getMberId(); |
... | ... | @@ -5093,12 +5094,22 @@ |
| 5093 | 5094 |
} |
| 5094 | 5095 |
} |
| 5095 | 5096 |
|
| 5097 |
+ //기업유형 |
|
| 5098 |
+ ComDefaultCodeVO voComCode = new ComDefaultCodeVO(); |
|
| 5099 |
+ voComCode.setCodeId("ITN033");
|
|
| 5100 |
+ model.addAttribute("bizTypeList", cmmUseService.selectCmmCodeDetail(voComCode));
|
|
| 5101 |
+ |
|
| 5102 |
+ // 유형 코드조회 |
|
| 5103 |
+ voComCode.setCodeId("ITN048");
|
|
| 5104 |
+ model.addAttribute("hstTypeList", cmmUseService.selectCmmCodeDetail(voComCode));
|
|
| 5105 |
+ |
|
| 5096 | 5106 |
model.addAttribute("pdfPath", path);
|
| 5097 | 5107 |
model.addAttribute("fileType", fileType);
|
| 5098 | 5108 |
model.addAttribute("docuDiv", docuDiv);
|
| 5099 | 5109 |
model.addAttribute("atchFileId", atchFileId);
|
| 5100 | 5110 |
model.addAttribute("workAtchFileId", workAtchFileId);
|
| 5101 | 5111 |
model.addAttribute("mberNm", mberNm);
|
| 5112 |
+ model.addAttribute("bizType", bizType);
|
|
| 5102 | 5113 |
model.addAttribute("bizNo", bizNo);
|
| 5103 | 5114 |
model.addAttribute("ceoNm", ceoNm);
|
| 5104 | 5115 |
model.addAttribute("hstManagerNm", hstManagerNm);
|
--- src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp
... | ... | @@ -331,20 +331,24 @@ |
| 331 | 331 |
<table class="tbType1"> |
| 332 | 332 |
<colgroup> |
| 333 | 333 |
<col style="width: *%"> |
| 334 |
- <col style="width: 12%"> |
|
| 335 |
- <col style="width: 15%"> |
|
| 336 |
- <col style="width: 15%"> |
|
| 337 |
- <col style="width: 12%"> |
|
| 338 | 334 |
<col style="width: 6%"> |
| 335 |
+ <col style="width: 10%"> |
|
| 336 |
+ <col style="width: 13%"> |
|
| 337 |
+ <col style="width: 10%"> |
|
| 338 |
+ <col style="width: 12%"> |
|
| 339 |
+ <col style="width: 8%"> |
|
| 340 |
+ <col style="width: 5%"> |
|
| 339 | 341 |
<col style="width: 5%"> |
| 340 | 342 |
</colgroup> |
| 341 | 343 |
<thead> |
| 342 | 344 |
<tr> |
| 343 | 345 |
<th>기업명</th> |
| 346 |
+ <th>구분</th> |
|
| 344 | 347 |
<th>사업자번호</th> |
| 345 | 348 |
<th>대표자</th> |
| 346 | 349 |
<th>담당자</th> |
| 347 | 350 |
<th>휴대폰</th> |
| 351 |
+ <th>유형</th> |
|
| 348 | 352 |
<th>사업자</th> |
| 349 | 353 |
<th>재직</th> |
| 350 | 354 |
</tr> |
... | ... | @@ -352,11 +356,21 @@ |
| 352 | 356 |
<tbody> |
| 353 | 357 |
<tr> |
| 354 | 358 |
<td title="${mberNm}">${mberNm}</td>
|
| 359 |
+ <td> |
|
| 360 |
+ <c:forEach var="item" items="${bizTypeList}" varStatus="status">
|
|
| 361 |
+ <c:if test="${bizType == item.code}"><c:out value="${fn:substring(item.codeNm,0,2)}"/></c:if>
|
|
| 362 |
+ </c:forEach> |
|
| 363 |
+ </td> |
|
| 355 | 364 |
<td title="${bizNo}">${bizNo}</td>
|
| 356 | 365 |
<td title="${ceoNm}">${ceoNm}</td>
|
| 357 | 366 |
<td title="${hstManagerNm}">${hstManagerNm}</td>
|
| 358 | 367 |
<td title="${hstMbtlNum}">${hstMbtlNum}</td>
|
| 359 | 368 |
<td> |
| 369 |
+ <c:forEach var="item" items="${hstTypeList}" varStatus="status">
|
|
| 370 |
+ <c:if test="${hstType == item.code}"><c:out value="${item.codeNm}"/></c:if>
|
|
| 371 |
+ </c:forEach> |
|
| 372 |
+ </td> |
|
| 373 |
+ <td> |
|
| 360 | 374 |
<c:if test="${not empty atchFileId}">
|
| 361 | 375 |
<c:import url="/cmm/fms/selectMberFileInfs.do" charEncoding="utf-8"> |
| 362 | 376 |
<c:param name="param_atchFileId" value="${atchFileId}" />
|
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?