Merge branch 'hylee'

This commit is contained in:
hylee 2022-10-21 11:30:55 +09:00
commit 301b07735d
4 changed files with 26 additions and 8 deletions

View File

@ -654,7 +654,7 @@ public class ApmController {
// List<FileVO> fileList = fileService.selectFileInfs(fileVO); // List<FileVO> fileList = fileService.selectFileInfs(fileVO);
// model.addAttribute("fileList", fileList); // model.addAttribute("fileList", fileList);
// } // }
model.addAttribute("exmp", exmp); model.addAttribute("exmpList", exmp);
model.addAttribute("ccTy", adjstReqVO.getCcTy()); model.addAttribute("ccTy", adjstReqVO.getCcTy());
model.addAttribute("exmpCd", adjstReqVO.getExmpCd()); model.addAttribute("exmpCd", adjstReqVO.getExmpCd());

View File

@ -28,6 +28,8 @@ import java.util.List;
* - 직권조정결정서 "60"; * - 직권조정결정서 "60";
* - 불성립종결통보서 "70"; * - 불성립종결통보서 "70";
* - 확정증명원 "80"; * - 확정증명원 "80";
*
*
* =========================================================== * ===========================================================
* DATE AUTHOR NOTE * DATE AUTHOR NOTE
* ----------------------------------------------------------- * * ----------------------------------------------------------- *

View File

@ -35,7 +35,7 @@ $(document).ready(function(){
// 신청취지 텍스트에 추가 // 신청취지 텍스트에 추가
function addText(obj){ function addText(obj){
$('#reqCn1').text($('#reqCn1').text()+obj.text); $('#reqCn1').text($('#reqCn1').text().trim()+' '+obj.text);
} }
</script> </script>

View File

@ -1312,7 +1312,6 @@ var AdjstReq = {
else if (exmpCd == '02') else if (exmpCd == '02')
{ {
uri = "adjstReqOpenExamplePop2.do"; uri = "adjstReqOpenExamplePop2.do";
} }
commonPopLayeropen( commonPopLayeropen(
@ -1325,8 +1324,25 @@ var AdjstReq = {
); );
}, },
openExpExamplePop : function(exmpCd){ openExpExamplePop : function(exmpCd){
/*
- 01 : 신청취지
- 02 : 신청원인
- 04 : 답변서
- 05 : 사건진행도움말
*/
var uri = '';
if(exmpCd == '01')
{
uri = "adjstReqOpenExamplePop.do";
}
else if (exmpCd == '02')
{
uri = "adjstReqOpenExamplePop2.do";
}
commonPopLayeropen( commonPopLayeropen(
"/web/kccadr/adjstExp/popup/adjstReqOpenExamplePop.do" "/web/kccadr/adjst/popup/"+uri
// "/web/kccadr/adjstExp/popup/"+uri
, 1100 , 1100
, 600 , 600
, {ccTy : $("#ccTy").val(), exmpCd : exmpCd} , {ccTy : $("#ccTy").val(), exmpCd : exmpCd}