feat: 외부연계데이타 응답처리 진행

main
minuk926 2 years ago
parent 052eb970ab
commit bebb6ec058

@ -1,7 +1,15 @@
package kr.xit.fims.biz.ec.service; package kr.xit.fims.biz.ec.service;
import java.util.*; import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.commons.io.FileUtils;
import org.apache.ibatis.session.RowBounds; import org.apache.ibatis.session.RowBounds;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@ -10,8 +18,13 @@ import org.springframework.transaction.annotation.Transactional;
import kr.xit.fims.biz.FimsConst; import kr.xit.fims.biz.FimsConst;
import kr.xit.fims.biz.ec.mapper.IEcCtznSttemntMapper; import kr.xit.fims.biz.ec.mapper.IEcCtznSttemntMapper;
import kr.xit.fims.biz.ec.model.CtznStmtDTO; import kr.xit.fims.biz.ec.model.CtznStmtDTO;
import kr.xit.fims.biz.ec.model.NatlNewspaperSendXmlDTO;
import kr.xit.framework.biz.cmm.model.CmmFileDTO; import kr.xit.framework.biz.cmm.model.CmmFileDTO;
import kr.xit.framework.biz.cmm.service.ICmmFileService; import kr.xit.framework.biz.cmm.service.ICmmFileService;
import kr.xit.framework.support.exception.BizRuntimeException;
import kr.xit.framework.support.util.Checks;
import kr.xit.framework.support.util.constants.MessageKey;
import kr.xit.framework.support.util.xml.XmlParseUtils;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
@ -26,6 +39,10 @@ public class EcCtznSttemntService implements IEcCtznSttemntService {
@Value("#{prop['file.upload.natl-newspaper.path']}") @Value("#{prop['file.upload.natl-newspaper.path']}")
private String uploadNewsPaperPath; private String uploadNewsPaperPath;
@Value("#{prop['file.res.root']}")
private String uploadResPath;
private final IEcCtznSttemntMapper mapper; private final IEcCtznSttemntMapper mapper;
private final ICmmFileService cmmFileService; private final ICmmFileService cmmFileService;
@ -112,6 +129,77 @@ public class EcCtznSttemntService implements IEcCtznSttemntService {
mapper.updateStatusAndRegltIdOfEcCtznSttemntDetail(dto); mapper.updateStatusAndRegltIdOfEcCtznSttemntDetail(dto);
} }
//-----------------------------------------------------
// 단속 처리 결과 전송
//-----------------------------------------------------
@Override
public void sendCtznSttemntRespons(CtznStmtDTO.CtznStmtDtl dto) {
List<CmmFileDTO.FileDtl> fileDtlList = cmmFileService.findFilesByJobSeCodeAndJobId(
CmmFileDTO.FileMst.builder()
.jobSeCode(FimsConst.FileJobSeCode.NATL_NEWS_PAPER_RCV.getCode())
.fileJobId(dto.getInterfaceSeqN()+dto.getCtznSttemntDetailSn())
.build());
List<File> fileList = new ArrayList<>();
String tgtPath = null;
for (CmmFileDTO.FileDtl dtl : fileDtlList) {
if (Checks.isEmpty(tgtPath))
tgtPath = uploadResPath + dtl.getFileCours();
try {
// 대상폴더 미 존재시 생성
File tgtFile = FileUtils.getFile(tgtPath, dtl.getOrginlFileNm());
FileUtils.copyFile(
FileUtils.getFile(uploadRoot + dtl.getFileCours(), dtl.getFileId())
, tgtFile
, true
);
fileList.add(tgtFile);
} catch (IOException e) {
throw BizRuntimeException.create(MessageKey.CUSTOM_MSG, "단속 응답 데이타 생성시 오류 발생[첨부파일 생성 실패]");
}
}
NatlNewspaperSendXmlDTO sendDto = NatlNewspaperSendXmlDTO.builder()
.interfaceSeqN(dto.getInterfaceSeqN())
.pcdRstContL("1. 교통질서 확립에 힘써주신 점에 대해 감사드립니다.\n"
+ "\n"
+ "2. 귀하께서 안전신문고를 통해 신청하신 민원에 대한 검토 결과를 다음과 같이 알려드립니다.\n"
+ "\n"
+ "3. 귀하의 민원내용은 불법 주?정차 신고에 관한 것으로 판단됩니다.\n"
+ "\n"
+ "4. 귀하의 신고에 대해 검토한 결과는 다음과 같습니다.\n"
+ " 가. 해당 차량은 ?도로교통법?제32조, 제33조, 제34조, 제35조에 의거한 불법 주?정차 차량으로 판단됩니다.\n"
+ " 나. 따라서, 위반 차량에 대해 주?정차 위반 과태료 부과 처분이 이루어졌음을 알려드립니다.\n"
+ "\n"
+ "5. 안전을 위한 시민 정신에 감사드리며, 답변 내용에 대한 추가 설명이 필요한 경우 군포시청 차량관리과 주차단속팀 박효주 주무관(☏031-390-0291)에게 연락 주시면 친절히 안내해 드리도록 하겠습니다. 감사합니다.")
.addressV("주소")
.applyGubunC("Y")
.build();
String xmlStr = XmlParseUtils.writeObjectToXml(sendDto, NatlNewspaperSendXmlDTO.class);
byte[] bytes = xmlStr.getBytes();
Path path = Paths.get(tgtPath + "/res.xml");
try {
Files.write(path, bytes);
} catch (IOException e) {
e.printStackTrace();
}
fileList.add(path.toFile());
log.debug("{}", fileList);
}
@Override @Override
@Transactional @Transactional
public void dragAndDropSaveImg(Map<String, Object> paraMap) { public void dragAndDropSaveImg(Map<String, Object> paraMap) {

@ -20,17 +20,21 @@ public interface IEcCtznSttemntService {
//----------------------------------------------------- //-----------------------------------------------------
// 단속자료 생성 - 단속 처리 // 단속자료 생성 - 단속 처리
//----------------------------------------------------- //-----------------------------------------------------
void saveRtReglt(CtznStmtDTO.Request dto); void saveRtReglt(final CtznStmtDTO.Request dto);
//----------------------------------------------------- //-----------------------------------------------------
// 단속자료 생성 - 서손 처리 // 단속자료 생성 - 서손 처리
//----------------------------------------------------- //-----------------------------------------------------
void saveRtErpp(CtznStmtDTO.Request dto); void saveRtErpp(final CtznStmtDTO.Request dto);
void dragAndDropSaveImg(Map<String, Object>paraMap); //-----------------------------------------------------
// 단속 처리 결과 전송
//-----------------------------------------------------
void sendCtznSttemntRespons(final CtznStmtDTO.CtznStmtDtl dto);
void dragAndDropSaveImg(final Map<String, Object>paraMap);
default String getUserUniqId(){ default String getUserUniqId(){
return XitCmmnUtil.getUserUniqId(); return XitCmmnUtil.getUserUniqId();
} }
} }

@ -145,6 +145,19 @@ public class EcCctvCrackdownController {
); );
} }
@RequestMapping("/sendEcExtrlCrackdownRespons")
public ModelAndView sendEcExtrlCrackdownRespons(final String extrlRegltCntcId, final String regltSeCode) {
return ResultResponse.of(
fileService.findFilesByJobSeCodeAndJobId(
CmmFileDTO.FileMst.builder()
.jobSeCode(getFileJobSeCode(regltSeCode))
.fileJobId(extrlRegltCntcId)
.build()).stream()
.filter(dtl -> !Objects.equals("png", dtl.getFileExtsn()))
.collect(Collectors.toList())
);
}
private static String getFileJobSeCode(String regltSeCode) { private static String getFileJobSeCode(String regltSeCode) {
// 01 - 고정형CCTV // 01 - 고정형CCTV
if(Objects.equals(regltSeCode, "01"))//FimsConst.FileJobSeCode.CCTV_FIX)) if(Objects.equals(regltSeCode, "01"))//FimsConst.FileJobSeCode.CCTV_FIX))

@ -6,7 +6,11 @@ import java.util.stream.Collectors;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.ModelAndView;
import kr.xit.fims.biz.FimsConst; import kr.xit.fims.biz.FimsConst;
@ -140,4 +144,22 @@ public class EcCtznSttemntController {
AjaxMessageMapRenderer.success(mav, MessageKey.CMM_SUCCESS); AjaxMessageMapRenderer.success(mav, MessageKey.CMM_SUCCESS);
return mav; return mav;
} }
@RequestMapping("/sendCtznSttemntRespons")
public ModelAndView sendCtznSttemntRespons(final CtznStmtDTO.CtznStmtDtl dto) {
ModelAndView mav = new ModelAndView(FrameworkConstants.JSON_VIEW);
log.debug(dto.toString());
service.sendCtznSttemntRespons(dto);
AjaxMessageMapRenderer.success(mav, MessageKey.CMM_SUCCESS);
return mav;
// return ResultResponse.of(
// fileService.findFilesByJobSeCodeAndJobId(
// CmmFileDTO.FileMst.builder()
// .jobSeCode(getFileJobSeCode(regltSeCode))
// .fileJobId(extrlRegltCntcId)
// .build()).stream()
// .filter(dtl -> !Objects.equals("png", dtl.getFileExtsn()))
// .collect(Collectors.toList())
// );
}
} }

@ -0,0 +1,72 @@
package kr.xit.framework.support.util;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
import kr.xit.framework.support.exception.BizRuntimeException;
import kr.xit.framework.support.util.constants.MessageKey;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class FileUtils {
/**
* zip
* @param filePath source file path
* @param fileNameList source file name list
* @param zipFilePath zip file folder
* @param zipFileName zip file name
*/
public void compressZip(final String filePath, final List<String> fileNameList, final String zipFilePath, final String zipFileName) {
List<File> fileList = new ArrayList<>();
fileNameList.forEach(s -> fileList.add(new File(filePath, s)));
compressZip(fileList, zipFilePath, zipFileName);
}
/**
* Zip
* @param fileList zip file name list
* @param zipFilePath zip file folder
* @param zipFileName zip file name
*/
public void compressZip(final List<File> fileList, final String zipFilePath, final String zipFileName) {
File zipFile = new File(zipFilePath, zipFileName);
byte[] buff = new byte[4096];
// 압축파일 생성
try(ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(zipFile))){
// 파일 압축
fileList.forEach(f -> {
try(FileInputStream fis = new FileInputStream(f)){
// 압축파일 지정
ZipEntry ze = new ZipEntry(f.getName());
zos.putNextEntry(ze);
// 압축 파일에 추가
int len;
while ((len = fis.read(buff)) > 0) zos.write(buff, 0, len);
zos.closeEntry();
} catch (IOException e) {
throw new RuntimeException(e);
}
});
} catch (FileNotFoundException e) {
log.error("zip파일 생성 오류::{}", e.getLocalizedMessage());
throw BizRuntimeException.create(MessageKey.CUSTOM_MSG, "zip 파일생성 오류[대상파일 미존재]");
} catch (IOException e) {
log.error("zip파일 생성 오류::{}", e.getLocalizedMessage());
throw BizRuntimeException.create(MessageKey.CUSTOM_MSG, "zip 파일생성 오류[대상파일 미존재]");
}
}
}

@ -37,7 +37,7 @@ public class XmlParseUtils {
} }
@SuppressWarnings("UnusedReturnValue") @SuppressWarnings("UnusedReturnValue")
public static <T> String readObjectToXml(final T t, final Class<T> clz){ public static <T> String writeObjectToXml(final T t, final Class<T> clz){
StringWriter sw = new StringWriter(); StringWriter sw = new StringWriter();
// xml 생성 // xml 생성
@ -82,7 +82,7 @@ public class XmlParseUtils {
+ "5. 안전을 위한 시민 정신에 감사드리며, 답변 내용에 대한 추가 설명이 필요한 경우 군포시청 차량관리과 주차단속팀 박효주 주무관(☏031-390-0291)에게 연락 주시면 친절히 안내해 드리도록 하겠습니다. 감사합니다.") + "5. 안전을 위한 시민 정신에 감사드리며, 답변 내용에 대한 추가 설명이 필요한 경우 군포시청 차량관리과 주차단속팀 박효주 주무관(☏031-390-0291)에게 연락 주시면 친절히 안내해 드리도록 하겠습니다. 감사합니다.")
.addressV("ldlldl") .addressV("ldlldl")
.applyGubunC("Y").build(); .applyGubunC("Y").build();
String xmlStr = XmlParseUtils.readObjectToXml(sendDto, NatlNewspaperSendXmlDTO.class); String xmlStr = XmlParseUtils.writeObjectToXml(sendDto, NatlNewspaperSendXmlDTO.class);
log.debug(xmlStr); log.debug(xmlStr);
log.debug("\n\n\n"); log.debug("\n\n\n");

@ -135,3 +135,5 @@ file.rcv.root=/data/fims/extnl/rcv
file.rcv.backup.root=/data/fims/extnl/backup file.rcv.backup.root=/data/fims/extnl/backup
file.rcv.natl-newspaper.path=/natl-newspaper file.rcv.natl-newspaper.path=/natl-newspaper
file.rcv.busonly-cctv.path=/busonly file.rcv.busonly-cctv.path=/busonly
file.res.root=/data/fims/extnl/res

@ -137,3 +137,5 @@ file.rcv.root=D:/data/fims/extnl/rcv
file.rcv.backup.root=D:/data/fims/extnl/backup file.rcv.backup.root=D:/data/fims/extnl/backup
file.rcv.natl-newspaper.path=/natl-newspaper file.rcv.natl-newspaper.path=/natl-newspaper
file.rcv.busonly-cctv.path=/busonly file.rcv.busonly-cctv.path=/busonly
file.res.root=D:/data/fims/extnl/res

@ -115,6 +115,16 @@
pageId = GRID.store.data.rawData[props.rowKey]; pageId = GRID.store.data.rawData[props.rowKey];
fnBiz.pagePopup('detail', {interfaceSeqN: rowData.interfaceSeqN, ctznSttemntDetailSn: rowData.ctznSttemntDetailSn}); fnBiz.pagePopup('detail', {interfaceSeqN: rowData.interfaceSeqN, ctznSttemntDetailSn: rowData.ctznSttemntDetailSn});
} }
,onClickSendResponse: function(props){
const rowData = props.grid.getRow(props.rowKey);
cmmBizAjax('단속 데이타 전송 처리', {
url: '<c:url value="/fims/biz/ec/sendCtznSttemntRespons.do"/>'
, data: rowData
})
//fnBiz.pagePopup('sendResponse', {data: rowData});
}
} }
/************************************************************************** /**************************************************************************
@ -207,7 +217,7 @@
}, },
{ {
header: '처리상태', header: '처리상태',
name: 'ctznSttemntProcessSttus', name: 'ctznSttemntDetailProcessSttus',
minWidth: 80, minWidth: 80,
sortable: false, sortable: false,
align: 'center' align: 'center'
@ -242,6 +252,28 @@
formatter({value}){ formatter({value}){
return setDateTimeFmt(value); return setDateTimeFmt(value);
} }
},
{
header: '단속',
name: '단속',
minWidth: 130,
sortable: false,
align: 'center',
renderer: {
type: CustomButtonRenderer,
options: {
formatter: (props)=>{
if(props.grid.getRow(props.rowKey).ctznSttemntDetailProcessSttus === '01') {
return {
formatter: '단속처리'
, element: "text"
}
}
}
,eventFunction: fnBiz.onClickSendResponse
,eventType: "click"
}
}
} }
]; ];

@ -92,12 +92,11 @@
// blockUI 적용 // blockUI 적용
$(document).ajaxStart(function(handler){ $(document).ajaxStart(function(handler){
const br = '<br/>'; const br = '<br/>';
const msg = '처리중...'+br; const msg = '처리중...';
const loading = '<img class="loading-bar" src="${ctx}/resources/framework/images/common/ajax-loading.gif" style="margin-left: -20px;" alt="조회 프로그래스바" />'; const loading = '<img class="loading-bar" src="${ctx}/resources/framework/images/common/ajax-loading.gif" style="margin-left: -20px;" alt="조회 프로그래스바" />';
// const loading = '<h2>진행상항</h2><progress id="progress" value="50" min="0" max="100"></progress>'; // const loading = '<h2>진행상항</h2><progress id="progress" value="50" min="0" max="100"></progress>';
$.blockUI({ message : br+msg+br+br+loading+br+br}); $.blockUI({ message : br+msg+br+br+loading+br+br});
}).ajaxStop(function(){ }).ajaxStop(function(){
//closeBar();
$.unblockUI(); $.unblockUI();
}); });

@ -297,10 +297,11 @@ const cmmBizAjax = (workType, param, isPopup = true) => {
if(workType === 'add') confirmMsg = `등록 ${confirmMsg}`; if(workType === 'add') confirmMsg = `등록 ${confirmMsg}`;
else if(workType === 'modify') confirmMsg = `변경 ${confirmMsg}`; else if(workType === 'modify') confirmMsg = `변경 ${confirmMsg}`;
else if(workType === 'remove') confirmMsg = `삭제 ${confirmMsg}`; else if(workType === 'remove') confirmMsg = `삭제 ${confirmMsg}`;
else{ else confirmMsg = `${workType} ${confirmMsg}`;
alert('workType이 부정확 합니다.'); // else{
return false; // alert('workType이 부정확 합니다.');
} // return false;
// }
param = $.extend(param, { param = $.extend(param, {
success: ()=>{ success: ()=>{

Loading…
Cancel
Save