어댑터 JSON 으로 가져오기 할 때 중복체크하는 기능 추가
This commit is contained in:
@@ -184,39 +184,125 @@ $(document).ready(function() {
|
|||||||
$("#btn_clone").hide();
|
$("#btn_clone").hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
FilePond.registerPlugin(FilePondPluginFileValidateType);
|
// 25.12.11 파일 가져오기 할 때 중복 검사 기능추가.
|
||||||
// FilePond 인스턴스 생성
|
FilePond.registerPlugin(FilePondPluginFileValidateType);
|
||||||
const pond = FilePond.create(document.querySelector('.filepond'), {
|
|
||||||
instantUpload: false, // 파일을 즉시 업로드하지 않음
|
let uploadErrors = [];
|
||||||
allowRevert: false,
|
let processedCount = 0;
|
||||||
acceptedFileTypes: ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/json'],
|
let totalFiles = 0;
|
||||||
// 서버 설정
|
|
||||||
|
// FilePond 인스턴스 생성
|
||||||
|
const pond = FilePond.create(document.querySelector('.filepond'), {
|
||||||
|
instantUpload: false,
|
||||||
|
allowRevert: false,
|
||||||
|
acceptedFileTypes: ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/json'],
|
||||||
|
|
||||||
|
// 서버 설정
|
||||||
server: {
|
server: {
|
||||||
process: {
|
process: {
|
||||||
url: url_file + '?cmd=LIST_IMPORT_FILE&serviceType=' + sessionStorage["serviceType"],
|
url: url_file + '?cmd=LIST_IMPORT_FILE&serviceType=' + sessionStorage["serviceType"],
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
// 필요한 경우 headers나 다른 설정 추가
|
ondata: (formData) => {
|
||||||
},
|
const chkBox = document.querySelector('#uploadModal input[name="importDupliCheck"]');
|
||||||
// revert, load, restore, fetch 설정 (필요한 경우)
|
const isChecked = chkBox ? chkBox.checked : false;
|
||||||
},
|
formData.append('importDupliCheck', isChecked);
|
||||||
// 다른 필요한 옵션 추가
|
return formData;
|
||||||
});
|
},
|
||||||
|
onerror: (response) => {
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
pond.on('processfiles', () => {
|
// 파일 처리 결과 수신
|
||||||
// 여기에 모든 파일 업로드 완료 후 실행할 코드를 작성
|
pond.on('processfile', (error, file) => {
|
||||||
console.debug('모든 파일의 처리가 완료되었습니다.');
|
processedCount++;
|
||||||
$('#btn_search').click();
|
|
||||||
});
|
|
||||||
|
|
||||||
// "업로드 시작" 버튼 클릭 이벤트 핸들러
|
if (error) {
|
||||||
document.getElementById('uploadButton').addEventListener('click', function() {
|
let errorMsg = '';
|
||||||
pond.processFiles(); // 선택된 모든 파일을 업로드
|
|
||||||
});
|
if (error.body) {
|
||||||
|
errorMsg = error.body;
|
||||||
|
} else if (typeof error === 'string') {
|
||||||
|
errorMsg = error;
|
||||||
|
} else {
|
||||||
|
errorMsg = '가져오기 중 오류가 발생 했습니다.';
|
||||||
|
}
|
||||||
|
|
||||||
|
let fileName = 'UnKnown';
|
||||||
|
if (file) {
|
||||||
|
if(file.filename) fileName = file.filename;
|
||||||
|
else if (file.file && file.file.name) fileName = file.file.name;
|
||||||
|
}
|
||||||
|
|
||||||
|
uploadErrors.push('파일명 [ ' + fileName + '] \n MESSAGE : ' + errorMsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 모든 파일 처리 완료 시
|
||||||
|
if (processedCount >= totalFiles) {
|
||||||
|
setTimeout(() => {
|
||||||
|
if (uploadErrors.length > 0) {
|
||||||
|
const msg = "파일 처리 중 오류가 발생했습니다. \n" + uploadErrors.join('\n');
|
||||||
|
|
||||||
|
// 실패 시 변수 초기화
|
||||||
|
uploadErrors = [];
|
||||||
|
processedCount = 0;
|
||||||
|
|
||||||
|
$('#btn_search').click();
|
||||||
|
alert(msg);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
alert('모든 파일이 성공적으로 업로드 되었습니다.');
|
||||||
|
$('#uploadModal').modal('hide');
|
||||||
|
$('#btn_search').click();
|
||||||
|
}
|
||||||
|
}, 100);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 업로드 버튼 클릭 이벤트
|
||||||
|
document.getElementById('uploadButton').addEventListener('click', function(e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
|
||||||
|
uploadErrors = [];
|
||||||
|
processedCount = 0;
|
||||||
|
|
||||||
|
const currentFiles = pond.getFiles();
|
||||||
|
totalFiles = currentFiles.length;
|
||||||
|
|
||||||
|
if (totalFiles === 0) {
|
||||||
|
alert("업로드 할 파일을 선택하세요.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const chkBox = document.getElementById('importDupliCheck');
|
||||||
|
|
||||||
|
if (chkBox && !chkBox.checked) {
|
||||||
|
if (!confirm("중복검사를 체크하지 않는 경우 기존 값은 덮어 씌워집니다. \n진행하시겠습니까?")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pond.processFiles();
|
||||||
|
});
|
||||||
|
|
||||||
|
// 모달이 닫힐 때만 초기화
|
||||||
|
$('#uploadModal').on('hidden.bs.modal', function(e) {
|
||||||
|
resetPond();
|
||||||
|
});
|
||||||
|
|
||||||
|
function resetPond() {
|
||||||
|
pond.removeFiles();
|
||||||
|
|
||||||
|
const chkBox = document.getElementById('importDupliCheck');
|
||||||
|
if (chkBox) chkBox.checked = false;
|
||||||
|
|
||||||
|
processedCount = 0;
|
||||||
|
totalFiles = 0;
|
||||||
|
uploadErrors = [];
|
||||||
|
}
|
||||||
|
|
||||||
// 모달 닫기 이벤트 핸들러
|
|
||||||
$('#uploadModal').on('hidden.bs.modal', function (e) {
|
|
||||||
pond.removeFiles(); // 모달이 닫힐 때 파일 목록에서 모든 파일 제거
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function jqGridInit() {
|
function jqGridInit() {
|
||||||
@@ -412,6 +498,9 @@ function jqGridInit() {
|
|||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
|
<!-- 파일 업로드 시 중복체크 -->
|
||||||
|
<input type="checkbox" id="importDupliCheck" name="importDupliCheck">
|
||||||
|
<label class="form-check-label" for="importDupliCheck">중복검사</label>
|
||||||
<input type="file" class="filepond" name="file" multiple data-allow-reorder="true" data-max-file-size="3MB" data-max-files="10">
|
<input type="file" class="filepond" name="file" multiple data-allow-reorder="true" data-max-file-size="3MB" data-max-files="10">
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ import org.springframework.data.domain.Page;
|
|||||||
import org.springframework.data.domain.Pageable;
|
import org.springframework.data.domain.Pageable;
|
||||||
import org.springframework.data.web.SortDefault;
|
import org.springframework.data.web.SortDefault;
|
||||||
import org.springframework.http.HttpHeaders;
|
import org.springframework.http.HttpHeaders;
|
||||||
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.http.ResponseEntity;
|
import org.springframework.http.ResponseEntity;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
@@ -432,7 +433,7 @@ public class AdapterController extends OnlBaseAnnotationController {
|
|||||||
|
|
||||||
@PostMapping(value = "/onl/admin/adapter/adapterMan.file", params = "cmd=LIST_IMPORT_FILE")
|
@PostMapping(value = "/onl/admin/adapter/adapterMan.file", params = "cmd=LIST_IMPORT_FILE")
|
||||||
public ResponseEntity<?> listImportFromFile(
|
public ResponseEntity<?> listImportFromFile(
|
||||||
@RequestParam("file") MultipartFile file) {
|
@RequestParam("file") MultipartFile file, boolean importDupliCheck) {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
@@ -445,7 +446,7 @@ public class AdapterController extends OnlBaseAnnotationController {
|
|||||||
|
|
||||||
synchronized (obj) {
|
synchronized (obj) {
|
||||||
AdapterGroupUI importedUI = service
|
AdapterGroupUI importedUI = service
|
||||||
.importAdapterFromJson(file);
|
.importAdapterFromJson(file, importDupliCheck);
|
||||||
|
|
||||||
Map<String, String> resultMap = service
|
Map<String, String> resultMap = service
|
||||||
.reloadSync(importedUI);
|
.reloadSync(importedUI);
|
||||||
@@ -456,6 +457,10 @@ public class AdapterController extends OnlBaseAnnotationController {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} catch (IllegalStateException dupEx) {
|
||||||
|
return ResponseEntity
|
||||||
|
.status(HttpStatus.CONFLICT)
|
||||||
|
.body(dupEx.getMessage());
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
logger.error(e);
|
logger.error(e);
|
||||||
return ResponseEntity.internalServerError()
|
return ResponseEntity.internalServerError()
|
||||||
|
|||||||
+19
-4
@@ -565,7 +565,7 @@ public class AdapterManService extends OnlBaseService {
|
|||||||
return adapterPropLoader.findSnaAppcodeProps((String) map.get("searchPrptygroupName"));
|
return adapterPropLoader.findSnaAppcodeProps((String) map.get("searchPrptygroupName"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public AdapterGroupUI importAdapterFromJson(MultipartFile file) throws Exception {
|
public AdapterGroupUI importAdapterFromJson(MultipartFile file, boolean importDupliCheck) throws Exception {
|
||||||
if (file.isEmpty()) {
|
if (file.isEmpty()) {
|
||||||
throw new IOException("File is empty");
|
throw new IOException("File is empty");
|
||||||
}
|
}
|
||||||
@@ -575,12 +575,27 @@ public class AdapterManService extends OnlBaseService {
|
|||||||
objectMapper.addMixIn(AdapterGroupUI.class, AdapterGroupUIMixIn.class);
|
objectMapper.addMixIn(AdapterGroupUI.class, AdapterGroupUIMixIn.class);
|
||||||
AdapterGroupUI adapterGroupUI = objectMapper.readValue(inputStream, AdapterGroupUI.class);
|
AdapterGroupUI adapterGroupUI = objectMapper.readValue(inputStream, AdapterGroupUI.class);
|
||||||
|
|
||||||
if(!adapterGroupService.existsById(adapterGroupUI.getAdptrbzwkgroupname())){
|
String adapterGrpupName = adapterGroupUI.getAdptrbzwkgroupname();
|
||||||
|
boolean adapterGroupExists = adapterGroupService.existsById(adapterGroupUI.getAdptrbzwkgroupname());
|
||||||
|
|
||||||
|
if (adapterGroupExists) {
|
||||||
|
|
||||||
|
if (importDupliCheck) {
|
||||||
|
throw new IllegalStateException("AdapterGroup already exists [ " + adapterGrpupName + " ]" );
|
||||||
|
} else {
|
||||||
|
update(adapterGroupUI);
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
insert(adapterGroupUI);
|
insert(adapterGroupUI);
|
||||||
}else{
|
|
||||||
update(adapterGroupUI);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if(!adapterGroupService.existsById(adapterGroupUI.getAdptrbzwkgroupname())){
|
||||||
|
// insert(adapterGroupUI);
|
||||||
|
// }else{
|
||||||
|
// update(adapterGroupUI);
|
||||||
|
// }
|
||||||
|
|
||||||
return adapterGroupUI;
|
return adapterGroupUI;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user