Merge branch 'master' of http://118.219.150.34:50501/DBNT/kcscDev
# Conflicts: # kcsc-back-end/src/main/java/com/dbnt/kcscbackend/admin/config/AdminConfigController.javathkim
commit
71fbb763e1
|
|
@ -25,6 +25,7 @@
|
||||||
"react-csv": "^2.2.2",
|
"react-csv": "^2.2.2",
|
||||||
"react-datepicker": "^4.8.0",
|
"react-datepicker": "^4.8.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
|
"react-drag-drop-files": "^2.3.10",
|
||||||
"react-element-to-jsx-string": "^15.0.0",
|
"react-element-to-jsx-string": "^15.0.0",
|
||||||
"react-icons": "^4.11.0",
|
"react-icons": "^4.11.0",
|
||||||
"react-loader-spinner": "^5.4.5",
|
"react-loader-spinner": "^5.4.5",
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,12 @@ export default function FormDialog( {open, setOpen, title, contentText, children
|
||||||
setOpen(true);
|
setOpen(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleClose = () => {
|
const handleClose = (event, reason) => {
|
||||||
setOpen(false);
|
// background를 click해도 dialog가 사라지지 않도록 한다.
|
||||||
|
if(reason !== 'backdropClick' && reason !== 'escapeKeyDown') {
|
||||||
|
// Set 'open' to false, however you would do that with your particular code.
|
||||||
|
setOpen(false);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
import React, { useState } from "react";
|
||||||
|
import { FileUploader } from "react-drag-drop-files";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* https://www.npmjs.com/package/react-drag-drop-files를 참고해주세요.
|
||||||
|
* @param {fileTypes} const fileTypes = ["JPG", "PNG", "GIF"];
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
function FileDragDrop({fileTypes, children, multiple, label, onDrop, handleChange, file, setFile, dropMessageStyle}) {
|
||||||
|
|
||||||
|
return (
|
||||||
|
<FileUploader
|
||||||
|
handleChange={handleChange}
|
||||||
|
name="file"
|
||||||
|
types={fileTypes ? fileTypes : "*"}
|
||||||
|
multiple={multiple && false}
|
||||||
|
label={label}
|
||||||
|
onDrop={onDrop}
|
||||||
|
dropMessageStyle={dropMessageStyle}
|
||||||
|
>
|
||||||
|
{children && children}
|
||||||
|
</FileUploader>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default FileDragDrop;
|
||||||
|
|
@ -15,7 +15,8 @@ import AddIcon from '@mui/icons-material/Add';
|
||||||
|
|
||||||
import styledComponent from "styled-components";
|
import styledComponent from "styled-components";
|
||||||
|
|
||||||
import * as EgovNet from 'api/egovFetch';
|
|
||||||
|
import CODE from 'constants/code';
|
||||||
|
|
||||||
|
|
||||||
const StyledDiv = styledComponent.div`
|
const StyledDiv = styledComponent.div`
|
||||||
|
|
@ -67,20 +68,41 @@ const Item = styled(Paper)(({ theme }) => ({
|
||||||
|
|
||||||
function ListCreateUpdateDelete(props) {
|
function ListCreateUpdateDelete(props) {
|
||||||
|
|
||||||
const handleClickOpen = () => {
|
const handleClickCreate = (e) => {
|
||||||
|
|
||||||
|
const mode = CODE.MODE_CREATE;
|
||||||
|
|
||||||
|
let paramOrgId = props.itemIndex[props.depthSelectedArrayIndex-1];
|
||||||
if( props.depthSelectedArrayIndex === 0 ) {
|
if( props.depthSelectedArrayIndex === 0 ) {
|
||||||
props.setCreateCondition({...props.createCondition, paramCodeLevel : props.paramCodeLevel, paramOrgId : "00"});
|
paramOrgId = "00";
|
||||||
} else {
|
}
|
||||||
if( props.itemIndex[props.depthSelectedArrayIndex-1] === undefined ) {
|
if( props.depthSelectedArrayIndex !== 0 && props.itemIndex[props.depthSelectedArrayIndex-1] === undefined ) {
|
||||||
alert('상위 코드를 선택해주세요.');
|
alert('상위 코드를 선택해주세요.');
|
||||||
props.setIsPopupOpen(false);
|
props.setIsPopupOpen(false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
props.setCreateCondition({...props.createCondition, paramCodeLevel : props.paramCodeLevel, paramOrgId : props.itemIndex[props.depthSelectedArrayIndex-1]});
|
|
||||||
}
|
props.setCreateOrModifyCondition({mode, paramCodeLevel : props.paramCodeLevel, paramOrgId});
|
||||||
props.setIsPopupOpen(true);
|
props.setIsPopupOpen(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleClickModify = (e) => {
|
||||||
|
|
||||||
|
const mode = CODE.MODE_MODIFY;
|
||||||
|
|
||||||
|
let paramOrgId = props.itemIndex[props.depthSelectedArrayIndex-1];
|
||||||
|
if( props.depthSelectedArrayIndex === 0 ) {
|
||||||
|
paramOrgId = "00";
|
||||||
|
}
|
||||||
|
|
||||||
|
const dataKey = e.currentTarget.parentNode.parentNode.parentNode.getAttribute('data-key');
|
||||||
|
const target = props.items[dataKey];
|
||||||
|
|
||||||
|
props.setCreateOrModifyCondition({mode, paramCodeLevel : props.paramCodeLevel, paramOrgId, target });
|
||||||
|
props.setIsPopupOpen(true);
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
const onClickItem = (e, index) => {
|
const onClickItem = (e, index) => {
|
||||||
index = Number(index);
|
index = Number(index);
|
||||||
// 기존 active를 모두 해제 한다.
|
// 기존 active를 모두 해제 한다.
|
||||||
|
|
@ -107,7 +129,7 @@ function ListCreateUpdateDelete(props) {
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={0} md={2} sx={{ pl: 0, '&': {backgroundColor: 'transparent' }}}>
|
<Grid item xs={0} md={2} sx={{ pl: 0, '&': {backgroundColor: 'transparent' }}}>
|
||||||
<Item sx={{ p: 0, '&': { boxShadow: 'none', backgroundColor: '#169bd5', borderRadius: '0px'} }}>
|
<Item sx={{ p: 0, '&': { boxShadow: 'none', backgroundColor: '#169bd5', borderRadius: '0px'} }}>
|
||||||
<IconButton aria-label="add" sx={{ px: 0, borderRadius: '0px', width: '100%', height: '56px'}} onClick={handleClickOpen}>
|
<IconButton aria-label="add" sx={{ px: 0, borderRadius: '0px', width: '100%', height: '56px'}} onClick={handleClickCreate}>
|
||||||
<AddIcon sx={{ px: 0, '&': {color: '#ffffff', width: '30px', height: '30px' }}} />
|
<AddIcon sx={{ px: 0, '&': {color: '#ffffff', width: '30px', height: '30px' }}} />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Item>
|
</Item>
|
||||||
|
|
@ -115,15 +137,13 @@ function ListCreateUpdateDelete(props) {
|
||||||
</Grid>
|
</Grid>
|
||||||
</Typography>
|
</Typography>
|
||||||
<Demo>
|
<Demo>
|
||||||
<List dense={false} sx={{ px: 0, '&': { minHeight: '315px', height: '650px', overflowY: 'auto'}}}>
|
<List dense={false} sx={{ px: 0, '&': { minHeight: '315px', height: '615px', overflowY: 'auto'}}}>
|
||||||
{generate(
|
{generate(
|
||||||
props.items,
|
props.items,
|
||||||
<ListItem
|
<ListItem
|
||||||
secondaryAction={
|
secondaryAction={
|
||||||
<div>
|
<div>
|
||||||
<IconButton sx={{ mx: 0 }} edge="start" aria-label="edit" onClick={(e)=> {
|
<IconButton sx={{ mx: 0 }} edge="start" aria-label="edit" onClick={handleClickModify}>
|
||||||
props.setIsPopupOpen(true);
|
|
||||||
}}>
|
|
||||||
<EditIcon />
|
<EditIcon />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
<IconButton edge="end" aria-label="delete" onClick={(e)=> {
|
<IconButton edge="end" aria-label="delete" onClick={(e)=> {
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin';
|
||||||
function CommitteeCodeMgt(props) {
|
function CommitteeCodeMgt(props) {
|
||||||
|
|
||||||
const [searchCondition, setSearchCondition] = useState({ paramCodeGroup: null, paramCodeLevel: 'LV_01' });
|
const [searchCondition, setSearchCondition] = useState({ paramCodeGroup: null, paramCodeLevel: 'LV_01' });
|
||||||
const [createCondition, setCreateCondition] = useState();
|
const [createOrModifyCondition, setCreateOrModifyCondition] = useState();
|
||||||
|
|
||||||
const [depth01List, setDepth01List] = useState({});
|
const [depth01List, setDepth01List] = useState({});
|
||||||
const [depth02List, setDepth02List] = useState({});
|
const [depth02List, setDepth02List] = useState({});
|
||||||
|
|
@ -30,7 +30,6 @@ function CommitteeCodeMgt(props) {
|
||||||
|
|
||||||
const [confirm, setConfirm] = React.useState();
|
const [confirm, setConfirm] = React.useState();
|
||||||
|
|
||||||
const [editCreateMode, setEditCreateMode] = React.useState(); // 생성 or 수정 여부
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -90,15 +89,7 @@ function CommitteeCodeMgt(props) {
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [searchCondition]);
|
}, [searchCondition]);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
useEffect(function () {
|
|
||||||
if( typeof createCondition !== 'undefined' ) {
|
|
||||||
console.log('%o', createCondition);
|
|
||||||
}
|
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
||||||
}, [createCondition]);
|
|
||||||
|
|
||||||
|
|
||||||
const requestOptions = {
|
const requestOptions = {
|
||||||
method: "GET",
|
method: "GET",
|
||||||
|
|
@ -182,7 +173,7 @@ function CommitteeCodeMgt(props) {
|
||||||
if( Number(depthSelectedIndex[depthSelectedArrayIndex]) === Number(deleteItem.orgId) ) {
|
if( Number(depthSelectedIndex[depthSelectedArrayIndex]) === Number(deleteItem.orgId) ) {
|
||||||
|
|
||||||
for( let i = depthSelectedArrayIndex + 1; i<4; i++ ) {
|
for( let i = depthSelectedArrayIndex + 1; i<4; i++ ) {
|
||||||
//setSearchCondition({...searchCondition, paramCodeLevel : createCondition.paramCodeLevel});
|
//setSearchCondition({...searchCondition, paramCodeLevel : createOrModifyCondition.paramCodeLevel});
|
||||||
depthSelectedIndex[i] = undefined;
|
depthSelectedIndex[i] = undefined;
|
||||||
}
|
}
|
||||||
let forChangeObject = [...depthSelectedIndex];
|
let forChangeObject = [...depthSelectedIndex];
|
||||||
|
|
@ -199,11 +190,6 @@ function CommitteeCodeMgt(props) {
|
||||||
case 2:
|
case 2:
|
||||||
setDepth04List({});
|
setDepth04List({});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -243,16 +229,18 @@ function CommitteeCodeMgt(props) {
|
||||||
|
|
||||||
<div className="contents " id="contents">
|
<div className="contents " id="contents">
|
||||||
{/* <!-- 본문 --> */}
|
{/* <!-- 본문 --> */}
|
||||||
|
|
||||||
<div className="top_tit">
|
<div className="top_tit">
|
||||||
<h1 className="tit_1">위원회 코드 관리</h1>
|
<h1 className="tit_1">위원회 코드 관리</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
flexWrap: 'wrap',
|
flexWrap: 'wrap',
|
||||||
justifyContent: 'space-between',
|
justifyContent: 'space-between',
|
||||||
'& > :not(style)': {
|
'& > :not(style)': {
|
||||||
mt: 4,
|
mt: 0,
|
||||||
width: 245,
|
width: 245,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
|
|
@ -264,8 +252,8 @@ function CommitteeCodeMgt(props) {
|
||||||
itemIndex={depthSelectedIndex}
|
itemIndex={depthSelectedIndex}
|
||||||
setItemIndex={setDepthSelectedIndex}
|
setItemIndex={setDepthSelectedIndex}
|
||||||
depthSelectedArrayIndex={0}
|
depthSelectedArrayIndex={0}
|
||||||
createCondition={createCondition}
|
createOrModifyCondition={createOrModifyCondition}
|
||||||
setCreateCondition={setCreateCondition}
|
setCreateOrModifyCondition={setCreateOrModifyCondition}
|
||||||
paramCodeLevel="LV_01"
|
paramCodeLevel="LV_01"
|
||||||
upParamOrgId="00"
|
upParamOrgId="00"
|
||||||
nameKey="orgNm"
|
nameKey="orgNm"
|
||||||
|
|
@ -280,8 +268,8 @@ function CommitteeCodeMgt(props) {
|
||||||
itemIndex={depthSelectedIndex}
|
itemIndex={depthSelectedIndex}
|
||||||
setItemIndex={setDepthSelectedIndex}
|
setItemIndex={setDepthSelectedIndex}
|
||||||
depthSelectedArrayIndex={1}
|
depthSelectedArrayIndex={1}
|
||||||
createCondition={createCondition}
|
createOrModifyCondition={createOrModifyCondition}
|
||||||
setCreateCondition={setCreateCondition}
|
setCreateOrModifyCondition={setCreateOrModifyCondition}
|
||||||
searchCondition={searchCondition}
|
searchCondition={searchCondition}
|
||||||
setSearchCondition={setSearchCondition}
|
setSearchCondition={setSearchCondition}
|
||||||
paramCodeLevel="LV_02"
|
paramCodeLevel="LV_02"
|
||||||
|
|
@ -297,8 +285,8 @@ function CommitteeCodeMgt(props) {
|
||||||
itemIndex={depthSelectedIndex}
|
itemIndex={depthSelectedIndex}
|
||||||
setItemIndex={setDepthSelectedIndex}
|
setItemIndex={setDepthSelectedIndex}
|
||||||
depthSelectedArrayIndex={2}
|
depthSelectedArrayIndex={2}
|
||||||
createCondition={createCondition}
|
createOrModifyCondition={createOrModifyCondition}
|
||||||
setCreateCondition={setCreateCondition}
|
setCreateOrModifyCondition={setCreateOrModifyCondition}
|
||||||
searchCondition={searchCondition}
|
searchCondition={searchCondition}
|
||||||
setSearchCondition={setSearchCondition}
|
setSearchCondition={setSearchCondition}
|
||||||
paramCodeLevel="LV_03"
|
paramCodeLevel="LV_03"
|
||||||
|
|
@ -314,8 +302,8 @@ function CommitteeCodeMgt(props) {
|
||||||
itemIndex={depthSelectedIndex}
|
itemIndex={depthSelectedIndex}
|
||||||
setItemIndex={setDepthSelectedIndex}
|
setItemIndex={setDepthSelectedIndex}
|
||||||
depthSelectedArrayIndex={3}
|
depthSelectedArrayIndex={3}
|
||||||
createCondition={createCondition}
|
createOrModifyCondition={createOrModifyCondition}
|
||||||
setCreateCondition={setCreateCondition}
|
setCreateOrModifyCondition={setCreateOrModifyCondition}
|
||||||
searchCondition={searchCondition}
|
searchCondition={searchCondition}
|
||||||
setSearchCondition={setSearchCondition}
|
setSearchCondition={setSearchCondition}
|
||||||
paramCodeLevel="LV_04"
|
paramCodeLevel="LV_04"
|
||||||
|
|
@ -345,8 +333,7 @@ function CommitteeCodeMgt(props) {
|
||||||
<CommitteeCodeRegistrationPopup
|
<CommitteeCodeRegistrationPopup
|
||||||
open={isCommitteeCodeRegistrationPopupOpen}
|
open={isCommitteeCodeRegistrationPopupOpen}
|
||||||
setOpen={setIsCommitteeCodeRegistrationPopupOpen}
|
setOpen={setIsCommitteeCodeRegistrationPopupOpen}
|
||||||
createCondition={createCondition}
|
createOrModifyCondition={createOrModifyCondition}
|
||||||
setCreateCondition={setCreateCondition}
|
|
||||||
searchCondition={searchCondition}
|
searchCondition={searchCondition}
|
||||||
setSearchCondition={setSearchCondition}
|
setSearchCondition={setSearchCondition}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -1,53 +1,125 @@
|
||||||
import React from 'react';
|
import React, { useState, useEffect } from 'react';
|
||||||
import TextField from '@mui/material/TextField';
|
import TextField from '@mui/material/TextField';
|
||||||
|
|
||||||
import * as EgovNet from 'api/egovFetch';
|
import * as EgovNet from 'api/egovFetch';
|
||||||
|
|
||||||
|
import CODE from 'constants/code';
|
||||||
|
|
||||||
import FormDialog from '../../../../components/alert/FormDialog';
|
import FormDialog from '../../../../components/alert/FormDialog';
|
||||||
|
|
||||||
function CommitteeCodeRegistrationPopup(props) {
|
function CommitteeCodeRegistrationPopup(props) {
|
||||||
|
|
||||||
|
const [inputValues, setInputValues] = useState({});
|
||||||
|
|
||||||
const handleClickCreateCommitteeCodeManagement = (createCondition) => {
|
const [mode, setMode] = useState("등록");
|
||||||
|
|
||||||
|
useEffect(function () {
|
||||||
|
|
||||||
|
if( typeof props.createOrModifyCondition === "undefined" ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if( typeof props.createOrModifyCondition.mode === "undefined" ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if( createCondition.paramOrgId === undefined ) {
|
//모드가 변경 되면 값을 초기화 한다.
|
||||||
|
setInputValues({});
|
||||||
|
|
||||||
|
if( props.createOrModifyCondition.mode === CODE.MODE_MODIFY ) {
|
||||||
|
setMode("수정");
|
||||||
|
} else if( props.createOrModifyCondition.mode === CODE.MODE_CREATE ) {
|
||||||
|
setMode("등록");
|
||||||
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [props.createOrModifyCondition && props.createOrModifyCondition.mode]);
|
||||||
|
|
||||||
|
useEffect(function () {
|
||||||
|
|
||||||
|
if( typeof props.createOrModifyCondition === "undefined" ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if( typeof props.createOrModifyCondition.mode === "undefined" ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if( props.createOrModifyCondition.mode === CODE.MODE_CREATE ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if( typeof props.createOrModifyCondition.target === "undefined" ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
setInputValues({
|
||||||
|
...inputValues,
|
||||||
|
paramOrgNm : props.createOrModifyCondition.target.orgNm,
|
||||||
|
paramOrgDesc : props.createOrModifyCondition.target.orgDesc,
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [props.createOrModifyCondition && props.createOrModifyCondition.target]);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const handleClickCreateCommitteeCodeManagement = (createOrModifyCondition) => {
|
||||||
|
|
||||||
|
if( createOrModifyCondition.paramOrgId === undefined ) {
|
||||||
alert('상위 코드를 선택해주세요.');
|
alert('상위 코드를 선택해주세요.');
|
||||||
props.setOpen(false);
|
props.setOpen(false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const formData = new FormData();
|
const formData = new FormData();
|
||||||
|
|
||||||
for (let key in createCondition) {
|
for (let key in createOrModifyCondition) {
|
||||||
formData.append(key, createCondition[key]);
|
formData.append(key, createOrModifyCondition[key]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Object.keys(inputValues).forEach(function(key){
|
||||||
|
formData.append(key, inputValues[key]);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
const requestOptions = {
|
const requestOptions = {
|
||||||
method: "POST",
|
method: props.createOrModifyCondition.mode === CODE.MODE_CREATE ? "POST" : props.createOrModifyCondition.mode === CODE.MODE_MODIFY ? "PUT" : "",
|
||||||
body: formData,
|
body: formData,
|
||||||
};
|
};
|
||||||
|
|
||||||
EgovNet.requestFetch(`/admin/config/committee-code-management`,
|
let appendRequestURL = "";
|
||||||
|
if( props.createOrModifyCondition.mode === CODE.MODE_MODIFY ) {
|
||||||
|
appendRequestURL = `/${props.createOrModifyCondition.target.orgId}`;
|
||||||
|
}
|
||||||
|
const requestURL = "/admin/config/committee-code-management" + appendRequestURL;
|
||||||
|
EgovNet.requestFetch(requestURL,
|
||||||
requestOptions,
|
requestOptions,
|
||||||
function (resp) {
|
function (resp) {
|
||||||
//방금 추가한 것만 새로 읽어 드린다.
|
//새로 읽어 드린다.
|
||||||
let paramCodeGroup = props.createCondition.paramOrgId;
|
let paramCodeGroup = props.createOrModifyCondition.paramOrgId;
|
||||||
if( paramCodeGroup === "00" ) {
|
if( paramCodeGroup === "00" ) {
|
||||||
paramCodeGroup = null;
|
paramCodeGroup = null;
|
||||||
}
|
}
|
||||||
props.setSearchCondition({...props.searchCondition, paramCodeGroup, paramCodeLevel : props.createCondition.paramCodeLevel});
|
props.setSearchCondition({...props.searchCondition, paramCodeGroup, paramCodeLevel : props.createOrModifyCondition.paramCodeLevel});
|
||||||
|
|
||||||
props.setOpen(false);
|
props.setOpen(false);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleTextFieldChange = (event) => {
|
const handleTextFieldChange = (e) => {
|
||||||
const elName = event.target.getAttribute('name');
|
setInputValues({
|
||||||
const elValue = event.target.value;
|
...inputValues,
|
||||||
props.setCreateCondition({...props.createCondition, [elName]:elValue});
|
[e.target.name]: e.target.value,
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (// handleClickCreateCommitteeCodeManagement create or modiofy 로 분기처리해야 한다. thkim 20240305 1500
|
||||||
<FormDialog open={props.open} setOpen={props.setOpen} title="위원회 코드 등록" contentText="위원회 코드 항목을 입력해주세요." handleOk={(e) => {handleClickCreateCommitteeCodeManagement(props.createCondition);}} >
|
<FormDialog open={props.open} setOpen={props.setOpen} title={`위원회 코드 ${mode}`} contentText="위원회 코드 항목을 입력해주세요." handleOk={(e) => {handleClickCreateCommitteeCodeManagement(props.createOrModifyCondition);}} >
|
||||||
<TextField
|
<TextField
|
||||||
autoFocus
|
autoFocus
|
||||||
required
|
required
|
||||||
|
|
@ -58,6 +130,7 @@ function CommitteeCodeRegistrationPopup(props) {
|
||||||
type="text"
|
type="text"
|
||||||
fullWidth
|
fullWidth
|
||||||
variant="standard"
|
variant="standard"
|
||||||
|
value={inputValues.paramOrgNm ? inputValues.paramOrgNm : "" }
|
||||||
onChange={handleTextFieldChange}
|
onChange={handleTextFieldChange}
|
||||||
/>
|
/>
|
||||||
<TextField
|
<TextField
|
||||||
|
|
@ -69,6 +142,7 @@ function CommitteeCodeRegistrationPopup(props) {
|
||||||
type="text"
|
type="text"
|
||||||
fullWidth
|
fullWidth
|
||||||
variant="standard"
|
variant="standard"
|
||||||
|
value={inputValues.paramOrgDesc ? inputValues.paramOrgDesc : ""}
|
||||||
onChange={handleTextFieldChange}
|
onChange={handleTextFieldChange}
|
||||||
/>
|
/>
|
||||||
</FormDialog>
|
</FormDialog>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
import React, { useState, useEffect } from 'react';
|
import React, { useState, useEffect } from 'react';
|
||||||
import { Link, useLocation, useNavigate } from 'react-router-dom';
|
import { Link, useLocation, useNavigate } from 'react-router-dom';
|
||||||
import DatePicker from "react-datepicker";
|
import DatePicker from "react-datepicker";
|
||||||
|
import FileDragDrop from "../../../../components/file/FileDragDrop";
|
||||||
|
import AttachFileIcon from '@mui/icons-material/AttachFile';
|
||||||
|
|
||||||
import EgovAttachFile from 'components/EgovAttachFile';
|
import EgovAttachFile from 'components/EgovAttachFile';
|
||||||
import RichTextEditor from "../../../../components/editor/RichTextEditor";
|
import RichTextEditor from "../../../../components/editor/RichTextEditor";
|
||||||
|
|
@ -19,11 +21,30 @@ const StyledDiv = styled.div`
|
||||||
|
|
||||||
.board_view2 {
|
.board_view2 {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
|
dl.file-attach-wrapper dd {
|
||||||
|
padding: 0px;
|
||||||
|
|
||||||
|
|
||||||
|
.file_attach {
|
||||||
|
width: 100%;
|
||||||
|
label {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0px 0px;
|
||||||
|
div {
|
||||||
|
padding: 30px 10px;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function PopupEditor(props) {
|
function PopupEditor(props) {
|
||||||
|
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
@ -38,7 +59,7 @@ function PopupEditor(props) {
|
||||||
const [schdulBgndeMM, setSchdulBgndeMM] = useState();
|
const [schdulBgndeMM, setSchdulBgndeMM] = useState();
|
||||||
const [schdulEnddeHH, setSchdulEnddeHH] = useState();
|
const [schdulEnddeHH, setSchdulEnddeHH] = useState();
|
||||||
const [schdulEnddeMM, setSchdulEnddeMM] = useState();
|
const [schdulEnddeMM, setSchdulEnddeMM] = useState();
|
||||||
const [boardAttachFiles, setBoardAttachFiles] = useState();
|
const [fileName, setFileName] = useState();
|
||||||
|
|
||||||
const [confirm, setConfirm] = React.useState();
|
const [confirm, setConfirm] = React.useState();
|
||||||
|
|
||||||
|
|
@ -118,6 +139,10 @@ function PopupEditor(props) {
|
||||||
});
|
});
|
||||||
setText(rawDetail.contents);
|
setText(rawDetail.contents);
|
||||||
setTextOriginal(rawDetail.contents);
|
setTextOriginal(rawDetail.contents);
|
||||||
|
|
||||||
|
if( rawDetail.fileName ) {
|
||||||
|
setFileName(rawDetail.fileName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
@ -139,7 +164,10 @@ function PopupEditor(props) {
|
||||||
|
|
||||||
//게시글 내용
|
//게시글 내용
|
||||||
formData.delete("contents");
|
formData.delete("contents");
|
||||||
formData.append("contents", text);
|
formData.append("contents", text);
|
||||||
|
|
||||||
|
//첨부파일
|
||||||
|
formData.append("file", file);
|
||||||
|
|
||||||
if (formValidator(formData)) {
|
if (formValidator(formData)) {
|
||||||
const requestOptions = {
|
const requestOptions = {
|
||||||
|
|
@ -165,9 +193,11 @@ function PopupEditor(props) {
|
||||||
|
|
||||||
|
|
||||||
if (modeInfo.mode === CODE.MODE_CREATE) {
|
if (modeInfo.mode === CODE.MODE_CREATE) {
|
||||||
setConfirm({...confirm, open: true, body: "추가하시겠습니까?", yesCallback: requestTask, yesCallbackParams: {requestUrl:modeInfo.editURL}});
|
//setConfirm({...confirm, open: true, body: "추가하시겠습니까?", yesCallback: requestTask, yesCallbackParams: {requestUrl:modeInfo.editURL}});
|
||||||
|
requestTask({requestUrl:modeInfo.editURL});
|
||||||
} else if (modeInfo.mode === CODE.MODE_MODIFY) {
|
} else if (modeInfo.mode === CODE.MODE_MODIFY) {
|
||||||
setConfirm({...confirm, open: true, body: "수정하시겠습니까?", yesCallback: requestTask, yesCallbackParams: {requestUrl:`${modeInfo.editURL}/${location.state?.popupId}`}});
|
//setConfirm({...confirm, open: true, body: "수정하시겠습니까?", yesCallback: requestTask, yesCallbackParams: {requestUrl:`${modeInfo.editURL}/${location.state?.popupId}`}});
|
||||||
|
requestTask({requestUrl:`${modeInfo.editURL}/${location.state?.popupId}`});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -233,7 +263,25 @@ function PopupEditor(props) {
|
||||||
return number < 10 ? "0" + number : number.toString();
|
return number < 10 ? "0" + number : number.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const fileTypes = ["JPG", "PNG", "GIF", "PDF", "HWP", "HWPX", "ZIP", "JPEG", "MP4", "TXT"];
|
||||||
|
const onDrop = (e) => {
|
||||||
|
//alert('ddd');
|
||||||
|
};
|
||||||
|
|
||||||
|
const [file, setFile] = useState(null);
|
||||||
|
const handleChange = (file) => {
|
||||||
|
setFile(file);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
useEffect(function () {
|
||||||
|
if( file ) {
|
||||||
|
console.log('%o', file);
|
||||||
|
}
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [file]);
|
||||||
|
|
||||||
|
|
||||||
const Location = React.memo(function Location() {
|
const Location = React.memo(function Location() {
|
||||||
return (
|
return (
|
||||||
<div className="location">
|
<div className="location">
|
||||||
|
|
@ -263,7 +311,7 @@ function PopupEditor(props) {
|
||||||
{/* <!-- 본문 --> */}
|
{/* <!-- 본문 --> */}
|
||||||
<StyledDiv>
|
<StyledDiv>
|
||||||
<div className="top_tit">
|
<div className="top_tit">
|
||||||
<h1 className="tit_1">팝업 추가</h1>
|
<h1 className="tit_1">팝업 관리</h1>
|
||||||
</div>
|
</div>
|
||||||
{/* <!-- 상단 입력 form --> */}
|
{/* <!-- 상단 입력 form --> */}
|
||||||
<div className='board_view2'>
|
<div className='board_view2'>
|
||||||
|
|
@ -315,22 +363,28 @@ function PopupEditor(props) {
|
||||||
<input type="hidden" name="schdulEnddeMM" defaultValue={schdulEnddeMM} readOnly />
|
<input type="hidden" name="schdulEnddeMM" defaultValue={schdulEnddeMM} readOnly />
|
||||||
</span>
|
</span>
|
||||||
</dd>
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl className="file-attach-wrapper">
|
||||||
|
<dt>첨부파일</dt>
|
||||||
|
<dd>
|
||||||
|
<span className="file_attach">
|
||||||
|
<FileDragDrop
|
||||||
|
className="file-drag-drop"
|
||||||
|
multiple={false}
|
||||||
|
fileTypes={fileTypes}
|
||||||
|
onDrop={onDrop}
|
||||||
|
handleChange={handleChange}
|
||||||
|
dropMessageStyle={{backgroundColor: '#cfe2ff'}}
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<AttachFileIcon />
|
||||||
|
{file ? file.name : fileName ? fileName : "파일을 마우스로 끌어놓으세요."}
|
||||||
|
</div>
|
||||||
|
</FileDragDrop>
|
||||||
|
</span>
|
||||||
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<EgovAttachFile
|
|
||||||
fnChangeFile={(attachfile) => {
|
|
||||||
console.log("====>>> Changed attachfile file = ", attachfile);
|
|
||||||
const arrayConcat = { ...popupDetail}; // 기존 단일 파일 업로드에서 다중파일 객체 추가로 변환(아래 for문으로)
|
|
||||||
for ( let i = 0; i < attachfile.length; i++) {
|
|
||||||
arrayConcat[`file_${i}`] = attachfile[i];
|
|
||||||
}
|
|
||||||
setPopupDetail(arrayConcat);
|
|
||||||
}}
|
|
||||||
fnDeleteFile={(deletedFile) => {
|
|
||||||
console.log("====>>> Delete deletedFile = ", deletedFile);
|
|
||||||
setBoardAttachFiles(deletedFile);
|
|
||||||
}}
|
|
||||||
boardFiles={boardAttachFiles}
|
|
||||||
mode={props.mode} />
|
|
||||||
</div>
|
</div>
|
||||||
{/* <!--// 상단 입력 form --> */}
|
{/* <!--// 상단 입력 form --> */}
|
||||||
|
|
||||||
|
|
@ -339,22 +393,22 @@ function PopupEditor(props) {
|
||||||
{/* <!--// 게시판 --> */}
|
{/* <!--// 게시판 --> */}
|
||||||
|
|
||||||
{/* <!-- 버튼영역 --> */}
|
{/* <!-- 버튼영역 --> */}
|
||||||
<div className="board_btn_area">
|
<div className="board_btn_area">
|
||||||
<div className="left_col btn1">
|
<div className="left_col btn1">
|
||||||
|
<button className="btn btn_blue_h46 w_100"
|
||||||
|
onClick={onClickList}>목록</button>
|
||||||
|
</div>
|
||||||
|
<div className="right_col btn1">
|
||||||
<button className="btn btn_skyblue_h46 w_100"
|
<button className="btn btn_skyblue_h46 w_100"
|
||||||
onClick={() => createPopup()}
|
onClick={() => createPopup()}
|
||||||
> 저장</button>
|
> 저장</button>
|
||||||
{modeInfo.mode === CODE.MODE_MODIFY &&
|
{modeInfo.mode === CODE.MODE_MODIFY &&
|
||||||
<button className="btn btn_skyblue_h46 w_100"
|
<button className="btn btn_red_h46 w_100"
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
onClickDelete(location.state?.popupId);
|
onClickDelete(location.state?.popupId);
|
||||||
}}>삭제</button>
|
}}>삭제</button>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
<div className="right_col btn1">
|
|
||||||
<button className="btn btn_blue_h46 w_100"
|
|
||||||
onClick={onClickList}>목록</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
{/* <!--// 버튼영역 --> */}
|
{/* <!--// 버튼영역 --> */}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,12 +14,26 @@ import styled from "styled-components";
|
||||||
|
|
||||||
const StyledDiv = styled.div`
|
const StyledDiv = styled.div`
|
||||||
.BRD008 {
|
.BRD008 {
|
||||||
.head > span:nth-child(3) {
|
.head {
|
||||||
width: 200px;
|
span:nth-child(3) {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
span:nth-child(4) {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.result .list_item > div:nth-child(3) {
|
.result .list_item {
|
||||||
width: 200px;
|
& > div {
|
||||||
|
&:nth-child(3) {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
&:nth-child(4) {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.board-bot {
|
.board-bot {
|
||||||
|
|
|
||||||
|
|
@ -8613,6 +8613,14 @@ react-dom@^18.2.0:
|
||||||
loose-envify "^1.1.0"
|
loose-envify "^1.1.0"
|
||||||
scheduler "^0.23.0"
|
scheduler "^0.23.0"
|
||||||
|
|
||||||
|
react-drag-drop-files@^2.3.10:
|
||||||
|
version "2.3.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/react-drag-drop-files/-/react-drag-drop-files-2.3.10.tgz#3f6ea316f8ad66a6f76b312cc4108c7c14065b06"
|
||||||
|
integrity sha512-Fv614W9+OtXFB5O+gjompTxQZLYGO7wJeT4paETGiXtiADB9yPOMGYD4A3PMCTY9Be874/wcpl+2dm3MvCIRzg==
|
||||||
|
dependencies:
|
||||||
|
prop-types "^15.7.2"
|
||||||
|
styled-components "^5.3.0"
|
||||||
|
|
||||||
react-element-to-jsx-string@^15.0.0:
|
react-element-to-jsx-string@^15.0.0:
|
||||||
version "15.0.0"
|
version "15.0.0"
|
||||||
resolved "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz"
|
resolved "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz"
|
||||||
|
|
@ -9604,7 +9612,7 @@ style-loader@^3.3.1:
|
||||||
resolved "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz"
|
resolved "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz"
|
||||||
integrity sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==
|
integrity sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==
|
||||||
|
|
||||||
styled-components@^5.3.5:
|
styled-components@^5.3.0, styled-components@^5.3.5:
|
||||||
version "5.3.11"
|
version "5.3.11"
|
||||||
resolved "https://registry.npmjs.org/styled-components/-/styled-components-5.3.11.tgz"
|
resolved "https://registry.npmjs.org/styled-components/-/styled-components-5.3.11.tgz"
|
||||||
integrity sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==
|
integrity sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ package com.dbnt.kcscbackend.admin.config;
|
||||||
import com.dbnt.kcscbackend.admin.config.entity.TcMenu;
|
import com.dbnt.kcscbackend.admin.config.entity.TcMenu;
|
||||||
import com.dbnt.kcscbackend.admin.config.entity.TnPartnerSite;
|
import com.dbnt.kcscbackend.admin.config.entity.TnPartnerSite;
|
||||||
import com.dbnt.kcscbackend.admin.config.model.CreateCommitteeCodeManagementVO;
|
import com.dbnt.kcscbackend.admin.config.model.CreateCommitteeCodeManagementVO;
|
||||||
|
import com.dbnt.kcscbackend.admin.config.model.SetCommitteeCodeManagementVO;
|
||||||
import com.dbnt.kcscbackend.admin.config.service.AdminCommitteeCodeManagementService;
|
import com.dbnt.kcscbackend.admin.config.service.AdminCommitteeCodeManagementService;
|
||||||
import com.dbnt.kcscbackend.commonCode.entity.TcCodeGrp;
|
import com.dbnt.kcscbackend.commonCode.entity.TcCodeGrp;
|
||||||
import com.dbnt.kcscbackend.commonCode.entity.TcCodeItem;
|
import com.dbnt.kcscbackend.commonCode.entity.TcCodeItem;
|
||||||
|
|
@ -563,4 +564,43 @@ public class AdminConfigController extends BaseController {
|
||||||
return resultVO;
|
return resultVO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Operation(
|
||||||
|
summary = "'위원회 코드 관리' 페이지에서 위원회 코드 수정하는 API",
|
||||||
|
description = "관리자 단에서 '환경설정' > '위원회코드 관리' 페이지에서 연필 모양 수정 버튼으로 항목 수정하는 API",
|
||||||
|
tags = {"AdminConfigController"}
|
||||||
|
)
|
||||||
|
@ApiResponses(value = {
|
||||||
|
@ApiResponse(responseCode = "200", description = "등록 성공"),
|
||||||
|
@ApiResponse(responseCode = "403", description = "인가된 사용자가 아님"),
|
||||||
|
})
|
||||||
|
@PutMapping(value = "/committee-code-management/{orgId}")
|
||||||
|
public ResultVO setCommitteeCodeManagement(
|
||||||
|
HttpServletRequest request,
|
||||||
|
@AuthenticationPrincipal LoginVO loginVO,
|
||||||
|
SetCommitteeCodeManagementVO setCommitteeCodeManagementVO,
|
||||||
|
@PathVariable("orgId") Long orgId
|
||||||
|
) throws Exception {
|
||||||
|
ResultVO resultVO = new ResultVO();
|
||||||
|
|
||||||
|
try {
|
||||||
|
resultVO = adminCommitteeCodeManagementService.setCommitteeCodeManagement(resultVO, request, loginVO, setCommitteeCodeManagementVO, orgId);
|
||||||
|
} catch (Exception e) {
|
||||||
|
resultVO.setResultCode(ResponseCode.FAILED.getCode());
|
||||||
|
resultVO.setResultMessage(e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
System.out.println(
|
||||||
|
"\n--------------------------------------------------------------\n" +
|
||||||
|
request.getRequestURI() + " OUT:" +
|
||||||
|
"\n--------------------------------------------------------------\n" +
|
||||||
|
"resultVO.toString():" + "\n" +
|
||||||
|
resultVO.toString() + "\n" +
|
||||||
|
"\n--------------------------------------------------------------\n"
|
||||||
|
);
|
||||||
|
|
||||||
|
return resultVO;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
package com.dbnt.kcscbackend.admin.config.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import lombok.Setter;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
@ApiModel(value = "SetCommitteeCodeManagementVO", description =
|
||||||
|
"관리자 단에서 '환경설정' > '위원회코드 관리' 페이지에서 수정 버튼으로 항목 수정하는 API에 사용된다."
|
||||||
|
)
|
||||||
|
@RequiredArgsConstructor
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@ToString
|
||||||
|
public class SetCommitteeCodeManagementVO extends CreateCommitteeCodeManagementVO implements Serializable {
|
||||||
|
private static final long serialVersionUID = -603047540959527181L;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "cmtSeq")
|
||||||
|
private Long orgId;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package com.dbnt.kcscbackend.admin.config.service;
|
package com.dbnt.kcscbackend.admin.config.service;
|
||||||
|
|
||||||
import com.dbnt.kcscbackend.admin.config.model.CreateCommitteeCodeManagementVO;
|
import com.dbnt.kcscbackend.admin.config.model.CreateCommitteeCodeManagementVO;
|
||||||
|
import com.dbnt.kcscbackend.admin.config.model.SetCommitteeCodeManagementVO;
|
||||||
import com.dbnt.kcscbackend.admin.standardResearch.model.CreateStandardResearchVO;
|
import com.dbnt.kcscbackend.admin.standardResearch.model.CreateStandardResearchVO;
|
||||||
import com.dbnt.kcscbackend.admin.standardResearch.model.UpdateStandardResearchVO;
|
import com.dbnt.kcscbackend.admin.standardResearch.model.UpdateStandardResearchVO;
|
||||||
import com.dbnt.kcscbackend.auth.entity.LoginVO;
|
import com.dbnt.kcscbackend.auth.entity.LoginVO;
|
||||||
|
|
@ -15,7 +16,8 @@ import javax.servlet.http.HttpServletRequest;
|
||||||
public interface AdminCommitteeCodeManagementService {
|
public interface AdminCommitteeCodeManagementService {
|
||||||
public ResultVO createCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, CreateCommitteeCodeManagementVO createCommitteeCodeManagementVO) throws Exception;
|
public ResultVO createCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, CreateCommitteeCodeManagementVO createCommitteeCodeManagementVO) throws Exception;
|
||||||
public ResultVO getCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, Long upCmtSeq, String cmtType) throws Exception;
|
public ResultVO getCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, Long upCmtSeq, String cmtType) throws Exception;
|
||||||
public ResultVO setCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, UpdateStandardResearchVO updateStandardResearchVO, Long popupId) throws Exception;
|
public ResultVO setCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, SetCommitteeCodeManagementVO setCommitteeCodeManagementVO, Long cmtSeq) throws Exception;
|
||||||
public ResultVO deleteCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, Long popupId) throws Exception;
|
public ResultVO deleteCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, Long cmtSeq) throws Exception;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package com.dbnt.kcscbackend.admin.config.service.impl;
|
package com.dbnt.kcscbackend.admin.config.service.impl;
|
||||||
|
|
||||||
import com.dbnt.kcscbackend.admin.config.model.CreateCommitteeCodeManagementVO;
|
import com.dbnt.kcscbackend.admin.config.model.CreateCommitteeCodeManagementVO;
|
||||||
|
import com.dbnt.kcscbackend.admin.config.model.SetCommitteeCodeManagementVO;
|
||||||
import com.dbnt.kcscbackend.admin.config.service.AdminCommitteeCodeManagementService;
|
import com.dbnt.kcscbackend.admin.config.service.AdminCommitteeCodeManagementService;
|
||||||
import com.dbnt.kcscbackend.admin.standardResearch.model.CreateStandardResearchVO;
|
import com.dbnt.kcscbackend.admin.standardResearch.model.CreateStandardResearchVO;
|
||||||
import com.dbnt.kcscbackend.admin.standardResearch.model.UpdateStandardResearchVO;
|
import com.dbnt.kcscbackend.admin.standardResearch.model.UpdateStandardResearchVO;
|
||||||
|
|
@ -13,6 +14,7 @@ import lombok.RequiredArgsConstructor;
|
||||||
import org.egovframe.rte.fdl.cmmn.EgovAbstractServiceImpl;
|
import org.egovframe.rte.fdl.cmmn.EgovAbstractServiceImpl;
|
||||||
import org.egovframe.rte.ptl.mvc.tags.ui.pagination.PaginationInfo;
|
import org.egovframe.rte.ptl.mvc.tags.ui.pagination.PaginationInfo;
|
||||||
import org.springframework.data.domain.Pageable;
|
import org.springframework.data.domain.Pageable;
|
||||||
|
import org.springframework.data.repository.query.Param;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
||||||
|
|
||||||
|
|
@ -107,8 +109,48 @@ public class AdminCommitteeCodeManagementServiceImpl extends EgovAbstractService
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ResultVO setCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, UpdateStandardResearchVO updateStandardResearchVO, Long popupId) throws Exception {
|
public ResultVO setCommitteeCodeManagement(ResultVO resultVO, HttpServletRequest request, LoginVO user, SetCommitteeCodeManagementVO setCommitteeCodeManagementVO, Long cmtSeq) throws Exception {
|
||||||
return null;
|
System.out.println(
|
||||||
|
"\n--------------------------------------------------------------\n" +
|
||||||
|
request.getRequestURI() + " IN:" +
|
||||||
|
"\n--------------------------------------------------------------\n" +
|
||||||
|
"setCommitteeCodeManagementVO:" + "\n" +
|
||||||
|
setCommitteeCodeManagementVO.toString() + "\n" +
|
||||||
|
"cmtSeq:" + "\n" +
|
||||||
|
cmtSeq + "\n" +
|
||||||
|
"\n--------------------------------------------------------------\n"
|
||||||
|
);
|
||||||
|
|
||||||
|
// 유효성 검사 실시
|
||||||
|
int isValid = tnCmtOrgRepository.spIsValidTnCmtOrgId(cmtSeq.intValue());
|
||||||
|
|
||||||
|
if( isValid == 0 ) {
|
||||||
|
throw new Exception("대상이 존재하지 않습니다.");
|
||||||
|
}
|
||||||
|
|
||||||
|
TnCmtOrg tnCmtOrg = tnCmtOrgRepository.findByCmtSeq(cmtSeq);
|
||||||
|
|
||||||
|
Map<String, Object> response = tnCmtOrgRepository.spUpdateTnCmtOrg(
|
||||||
|
cmtSeq.intValue(),
|
||||||
|
setCommitteeCodeManagementVO.getParamOrgNm(),
|
||||||
|
setCommitteeCodeManagementVO.getParamOrgDesc(),
|
||||||
|
tnCmtOrg.getCmtOrder(),
|
||||||
|
user.getId(),
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
Map<String, Object> dto = new HashMap<String, Object>();
|
||||||
|
dto.put("errorMessage", response.get("_error_message") );
|
||||||
|
dto.put("orgId", cmtSeq);
|
||||||
|
|
||||||
|
resultVO.setResult(dto);
|
||||||
|
resultVO.setResultCode(ResponseCode.SUCCESS.getCode());
|
||||||
|
resultVO.setResultMessage(ResponseCode.SUCCESS.getMessage());
|
||||||
|
|
||||||
|
return resultVO;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,9 @@
|
||||||
package com.dbnt.kcscbackend.admin.contents.popUp.controller;
|
package com.dbnt.kcscbackend.admin.contents.popUp.controller;
|
||||||
|
|
||||||
|
|
||||||
import com.dbnt.kcscbackend.admin.committee.schedules.model.CreateScheduleVO;
|
|
||||||
import com.dbnt.kcscbackend.admin.committee.schedules.model.UpdateScheduleVO;
|
|
||||||
import com.dbnt.kcscbackend.admin.committee.schedules.service.EgovIndvdlSchdulManageService;
|
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.model.CreatePopupVO;
|
import com.dbnt.kcscbackend.admin.contents.popUp.model.CreatePopupVO;
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.model.FileVO;
|
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.model.UpdatePopupVO;
|
import com.dbnt.kcscbackend.admin.contents.popUp.model.UpdatePopupVO;
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.service.PopUpApiService;
|
import com.dbnt.kcscbackend.admin.contents.popUp.service.PopUpApiService;
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.utils.EgovFileMngUtil;
|
|
||||||
import com.dbnt.kcscbackend.auth.entity.LoginVO;
|
import com.dbnt.kcscbackend.auth.entity.LoginVO;
|
||||||
import com.dbnt.kcscbackend.config.common.ResponseCode;
|
import com.dbnt.kcscbackend.config.common.ResponseCode;
|
||||||
import com.dbnt.kcscbackend.config.common.ResultVO;
|
import com.dbnt.kcscbackend.config.common.ResultVO;
|
||||||
|
|
@ -26,8 +21,7 @@ import org.springframework.web.multipart.MultipartHttpServletRequest;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
import java.util.List;
|
import java.util.Enumeration;
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
|
|
||||||
@Api("PopUpApiController")
|
@Api("PopUpApiController")
|
||||||
|
|
@ -38,8 +32,6 @@ public class PopUpApiController {
|
||||||
@Resource(name = "popUpApiService")
|
@Resource(name = "popUpApiService")
|
||||||
private PopUpApiService popUpApiService;
|
private PopUpApiService popUpApiService;
|
||||||
|
|
||||||
@Resource(name = "EgovFileMngUtil")
|
|
||||||
private EgovFileMngUtil fileUtil;
|
|
||||||
|
|
||||||
@Operation(
|
@Operation(
|
||||||
summary = "'팝업 관리' 페이지에서 목록 불러오는 API",
|
summary = "'팝업 관리' 페이지에서 목록 불러오는 API",
|
||||||
|
|
@ -95,13 +87,14 @@ public class PopUpApiController {
|
||||||
HttpServletRequest request,
|
HttpServletRequest request,
|
||||||
@AuthenticationPrincipal LoginVO loginVO,
|
@AuthenticationPrincipal LoginVO loginVO,
|
||||||
final MultipartHttpServletRequest multiRequest,
|
final MultipartHttpServletRequest multiRequest,
|
||||||
CreatePopupVO createPopupVO
|
CreatePopupVO createPopupVO,
|
||||||
|
@RequestParam(required = false) MultipartFile file
|
||||||
) throws Exception {
|
) throws Exception {
|
||||||
|
|
||||||
ResultVO resultVO = new ResultVO();
|
ResultVO resultVO = new ResultVO();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
resultVO = popUpApiService.contentsApiPopUpManageCreate(resultVO, request, loginVO, multiRequest, createPopupVO);
|
resultVO = popUpApiService.contentsApiPopUpManageCreate(resultVO, request, loginVO, multiRequest, createPopupVO, file);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
resultVO.setResultCode(ResponseCode.FAILED.getCode());
|
resultVO.setResultCode(ResponseCode.FAILED.getCode());
|
||||||
resultVO.setResultMessage(e.getMessage());
|
resultVO.setResultMessage(e.getMessage());
|
||||||
|
|
@ -136,13 +129,14 @@ public class PopUpApiController {
|
||||||
HttpServletRequest request,
|
HttpServletRequest request,
|
||||||
@AuthenticationPrincipal LoginVO loginVO,
|
@AuthenticationPrincipal LoginVO loginVO,
|
||||||
UpdatePopupVO updatePopupVO,
|
UpdatePopupVO updatePopupVO,
|
||||||
|
@RequestParam(required = false) MultipartFile file,
|
||||||
@PathVariable("popupId") Long popupId
|
@PathVariable("popupId") Long popupId
|
||||||
) throws Exception {
|
) throws Exception {
|
||||||
|
|
||||||
ResultVO resultVO = new ResultVO();
|
ResultVO resultVO = new ResultVO();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
resultVO = popUpApiService.contentsApiPopUpManageUpdate(resultVO, request, loginVO, updatePopupVO, popupId);
|
resultVO = popUpApiService.contentsApiPopUpManageUpdate(resultVO, request, loginVO, updatePopupVO, file, popupId);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
resultVO.setResultCode(ResponseCode.FAILED.getCode());
|
resultVO.setResultCode(ResponseCode.FAILED.getCode());
|
||||||
resultVO.setResultMessage(e.getMessage());
|
resultVO.setResultMessage(e.getMessage());
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,10 @@ import lombok.Getter;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.Setter;
|
import lombok.Setter;
|
||||||
import lombok.ToString;
|
import lombok.ToString;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@ApiModel(value = "CreatePopupVO", description =
|
@ApiModel(value = "CreatePopupVO", description =
|
||||||
"관리자 단에서 '컨텐츠 관리' > '팝업 관리' 페이지에서 팝업을 추가하는 API에 사용된다." + ""
|
"관리자 단에서 '컨텐츠 관리' > '팝업 관리' 페이지에서 팝업을 추가하는 API에 사용된다." + ""
|
||||||
|
|
@ -28,4 +30,6 @@ public class CreatePopupVO implements Serializable {
|
||||||
private String title;
|
private String title;
|
||||||
@ApiModelProperty(value = "contents")
|
@ApiModelProperty(value = "contents")
|
||||||
private String contents;
|
private String contents;
|
||||||
|
//@ApiModelProperty(value = "file")
|
||||||
|
//private MultipartFile file;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@ import java.io.Serializable;
|
||||||
@ApiModel(value = "UpdatePopupVO", description =
|
@ApiModel(value = "UpdatePopupVO", description =
|
||||||
"관리자 단에서 '컨텐츠 관리' > '팝업 관리' 페이지에서 팝업을 수정하는 API에 사용된다." + ""
|
"관리자 단에서 '컨텐츠 관리' > '팝업 관리' 페이지에서 팝업을 수정하는 API에 사용된다." + ""
|
||||||
)
|
)
|
||||||
@RequiredArgsConstructor
|
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
@ToString
|
@ToString
|
||||||
|
|
|
||||||
|
|
@ -9,15 +9,16 @@ import org.springframework.data.domain.Pageable;
|
||||||
import org.springframework.security.core.annotation.AuthenticationPrincipal;
|
import org.springframework.security.core.annotation.AuthenticationPrincipal;
|
||||||
import org.springframework.web.bind.annotation.PathVariable;
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
|
||||||
public interface PopUpApiService {
|
public interface PopUpApiService {
|
||||||
public ResultVO contentsApiPopUpManageList(ResultVO resultVO, HttpServletRequest request, LoginVO user, Pageable pageable) throws Exception;
|
public ResultVO contentsApiPopUpManageList(ResultVO resultVO, HttpServletRequest request, LoginVO user, Pageable pageable) throws Exception;
|
||||||
public ResultVO contentsApiPopUpManageCreate(ResultVO resultVO, HttpServletRequest request, LoginVO user, final MultipartHttpServletRequest multiRequest, CreatePopupVO createPopupVO) throws Exception;
|
public ResultVO contentsApiPopUpManageCreate(ResultVO resultVO, HttpServletRequest request, LoginVO user, final MultipartHttpServletRequest multiRequest, CreatePopupVO createPopupVO, MultipartFile file) throws Exception;
|
||||||
public ResultVO contentsApiPopUpManageRead(ResultVO resultVO, HttpServletRequest request, LoginVO user, Long popupId) throws Exception;
|
public ResultVO contentsApiPopUpManageRead(ResultVO resultVO, HttpServletRequest request, LoginVO user, Long popupId) throws Exception;
|
||||||
public ResultVO contentsApiPopUpManageUpdate(ResultVO resultVO, HttpServletRequest request, LoginVO user, UpdatePopupVO updatePopupVO, Long popupId) throws Exception;
|
public ResultVO contentsApiPopUpManageUpdate(ResultVO resultVO, HttpServletRequest request, LoginVO user, UpdatePopupVO updatePopupVO, MultipartFile file, Long popupId) throws Exception;
|
||||||
public ResultVO contentsApiPopUpManageDelete(ResultVO resultVO, HttpServletRequest request, LoginVO user, Long popupId) throws Exception;
|
public ResultVO contentsApiPopUpManageDelete(ResultVO resultVO, HttpServletRequest request, LoginVO user, Long popupId) throws Exception;
|
||||||
public ResultVO contentsApiPopUpManageUpdateActivationSwitch(ResultVO resultVO, HttpServletRequest request, LoginVO user, String checked, Long popupId) throws Exception;
|
public ResultVO contentsApiPopUpManageUpdateActivationSwitch(ResultVO resultVO, HttpServletRequest request, LoginVO user, String checked, Long popupId) throws Exception;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,16 @@ import com.dbnt.kcscbackend.admin.contents.popUp.model.FileVO;
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.model.UpdatePopupVO;
|
import com.dbnt.kcscbackend.admin.contents.popUp.model.UpdatePopupVO;
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.repository.TnPopupMngRepositoryWithoutPopupContents;
|
import com.dbnt.kcscbackend.admin.contents.popUp.repository.TnPopupMngRepositoryWithoutPopupContents;
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.service.PopUpApiService;
|
import com.dbnt.kcscbackend.admin.contents.popUp.service.PopUpApiService;
|
||||||
|
import com.dbnt.kcscbackend.file.entity.TnAttachFile;
|
||||||
|
import com.dbnt.kcscbackend.file.repository.TnAttachFileRepository;
|
||||||
|
import com.dbnt.kcscbackend.file.service.EgovFileMngUtil;
|
||||||
import com.dbnt.kcscbackend.auth.entity.LoginVO;
|
import com.dbnt.kcscbackend.auth.entity.LoginVO;
|
||||||
import com.dbnt.kcscbackend.commonCode.entity.TnPopupMng;
|
import com.dbnt.kcscbackend.commonCode.entity.TnPopupMng;
|
||||||
import com.dbnt.kcscbackend.commonCode.repository.TnPopupMngRepository;
|
import com.dbnt.kcscbackend.commonCode.repository.TnPopupMngRepository;
|
||||||
import com.dbnt.kcscbackend.config.common.ResponseCode;
|
import com.dbnt.kcscbackend.config.common.ResponseCode;
|
||||||
import com.dbnt.kcscbackend.config.common.ResultVO;
|
import com.dbnt.kcscbackend.config.common.ResultVO;
|
||||||
|
import com.dbnt.kcscbackend.file.service.FileService;
|
||||||
|
import com.dbnt.kcscbackend.util.NetworkUtil;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import org.egovframe.rte.fdl.cmmn.EgovAbstractServiceImpl;
|
import org.egovframe.rte.fdl.cmmn.EgovAbstractServiceImpl;
|
||||||
import org.egovframe.rte.ptl.mvc.tags.ui.pagination.PaginationInfo;
|
import org.egovframe.rte.ptl.mvc.tags.ui.pagination.PaginationInfo;
|
||||||
|
|
@ -19,11 +24,12 @@ import org.springframework.stereotype.Service;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
import org.springframework.web.multipart.MultipartHttpServletRequest;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
import java.io.File;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
import java.time.format.DateTimeFormatter;
|
import java.time.format.DateTimeFormatter;
|
||||||
import java.util.HashMap;
|
import java.util.*;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
|
@ -34,6 +40,10 @@ public class PopUpApiServiceImpl extends EgovAbstractServiceImpl implements PopU
|
||||||
private final TnPopupMngRepository tnPopupMngRepository;
|
private final TnPopupMngRepository tnPopupMngRepository;
|
||||||
private final TnPopupMngRepositoryWithoutPopupContents tnPopupMngRepositoryWithoutPopupContents;
|
private final TnPopupMngRepositoryWithoutPopupContents tnPopupMngRepositoryWithoutPopupContents;
|
||||||
|
|
||||||
|
private final TnAttachFileRepository tnAttachFileRepository;
|
||||||
|
|
||||||
|
private final FileService fileService;
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ResultVO contentsApiPopUpManageList(ResultVO resultVO, HttpServletRequest request, LoginVO user, Pageable pageable) throws Exception {
|
public ResultVO contentsApiPopUpManageList(ResultVO resultVO, HttpServletRequest request, LoginVO user, Pageable pageable) throws Exception {
|
||||||
|
|
@ -93,7 +103,7 @@ public class PopUpApiServiceImpl extends EgovAbstractServiceImpl implements PopU
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ResultVO contentsApiPopUpManageCreate(ResultVO resultVO, HttpServletRequest request, LoginVO user, final MultipartHttpServletRequest multiRequest, CreatePopupVO createPopupVO) throws Exception {
|
public ResultVO contentsApiPopUpManageCreate(ResultVO resultVO, HttpServletRequest request, LoginVO user, final MultipartHttpServletRequest multiRequest, CreatePopupVO createPopupVO, MultipartFile file) throws Exception {
|
||||||
|
|
||||||
System.out.println(
|
System.out.println(
|
||||||
"\n--------------------------------------------------------------\n" +
|
"\n--------------------------------------------------------------\n" +
|
||||||
|
|
@ -104,21 +114,14 @@ public class PopUpApiServiceImpl extends EgovAbstractServiceImpl implements PopU
|
||||||
"\n--------------------------------------------------------------\n"
|
"\n--------------------------------------------------------------\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
// 첨부파일 관련 첨부파일ID 생성
|
|
||||||
List<FileVO> _result = null;
|
|
||||||
String _atchFileId = "";
|
|
||||||
|
|
||||||
final Map<String, MultipartFile> files = multiRequest.getFileMap();
|
String fileGrpId = fileService.addTnAttachFile(request, user, file, this.getMiddlePath());
|
||||||
|
|
||||||
if (!files.isEmpty()) {
|
|
||||||
//_atchFileId = fileMngService.insertFileInfs(_result); //파일이 생성되고나면 생성된 첨부파일 ID를 리턴한다.
|
|
||||||
}
|
|
||||||
|
|
||||||
Map<String, Object> response = tnPopupMngRepository.spAddTnPopupMng(
|
Map<String, Object> response = tnPopupMngRepository.spAddTnPopupMng(
|
||||||
createPopupVO.getTitle(),
|
createPopupVO.getTitle(),
|
||||||
createPopupVO.getStartDate(),
|
createPopupVO.getStartDate(),
|
||||||
createPopupVO.getEndDate(),
|
createPopupVO.getEndDate(),
|
||||||
null,
|
fileGrpId,
|
||||||
createPopupVO.getContents(),
|
createPopupVO.getContents(),
|
||||||
"kcsc_admin",
|
"kcsc_admin",
|
||||||
null,
|
null,
|
||||||
|
|
@ -169,6 +172,14 @@ public class PopUpApiServiceImpl extends EgovAbstractServiceImpl implements PopU
|
||||||
dto.put("schdulBgnde", tnPopupMng.getPopupStartDate().plusHours(9).format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss"))); // 날짜/시간의 시작 일시 - yyyyMMddHHmmss
|
dto.put("schdulBgnde", tnPopupMng.getPopupStartDate().plusHours(9).format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss"))); // 날짜/시간의 시작 일시 - yyyyMMddHHmmss
|
||||||
dto.put("schdulEndde", tnPopupMng.getPopupEndDate().plusHours(9).format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss"))); // 날짜/시간의 종료 일시 - yyyyMMddHHmmss
|
dto.put("schdulEndde", tnPopupMng.getPopupEndDate().plusHours(9).format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss"))); // 날짜/시간의 종료 일시 - yyyyMMddHHmmss
|
||||||
|
|
||||||
|
//첨부파일명을 가져온다.
|
||||||
|
TnAttachFile tnAttachFile = tnAttachFileRepository.findByFileGrpId(tnPopupMng.getFileGrpId()).orElse(null);
|
||||||
|
|
||||||
|
if( tnAttachFile != null ) {
|
||||||
|
dto.put("fileName", tnAttachFile.getFileOldName());
|
||||||
|
} else {
|
||||||
|
dto.put("fileName", null);
|
||||||
|
}
|
||||||
|
|
||||||
resultVO.setResult(dto);
|
resultVO.setResult(dto);
|
||||||
resultVO.setResultCode(ResponseCode.SUCCESS.getCode());
|
resultVO.setResultCode(ResponseCode.SUCCESS.getCode());
|
||||||
|
|
@ -178,16 +189,16 @@ public class PopUpApiServiceImpl extends EgovAbstractServiceImpl implements PopU
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ResultVO contentsApiPopUpManageUpdate(ResultVO resultVO, HttpServletRequest request, LoginVO user, UpdatePopupVO updatePopupVO, Long popupId) throws Exception {
|
public ResultVO contentsApiPopUpManageUpdate(ResultVO resultVO, HttpServletRequest request, LoginVO user, UpdatePopupVO updatePopupVO, MultipartFile file, Long popupId) throws Exception {
|
||||||
System.out.println(
|
System.out.println(
|
||||||
"\n--------------------------------------------------------------\n" +
|
"\n--------------------------------------------------------------\n" +
|
||||||
request.getRequestURI() + " IN:" +
|
request.getRequestURI() + " IN:" +
|
||||||
"\n--------------------------------------------------------------\n" +
|
"\n--------------------------------------------------------------\n" +
|
||||||
"updatePopupVO:" + "\n" +
|
"updatePopupVO:" + "\n" +
|
||||||
updatePopupVO.toString() + "\n" +
|
updatePopupVO.toString() + "\n" +
|
||||||
"popupId:" + "\n" +
|
"popupId:" + "\n" +
|
||||||
popupId + "\n" +
|
popupId + "\n" +
|
||||||
"\n--------------------------------------------------------------\n"
|
"\n--------------------------------------------------------------\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
// 유효성 검사 실시
|
// 유효성 검사 실시
|
||||||
|
|
@ -201,14 +212,16 @@ public class PopUpApiServiceImpl extends EgovAbstractServiceImpl implements PopU
|
||||||
throw new Exception("종료일시는 시작일시보다 앞 설 수 없습니다.");
|
throw new Exception("종료일시는 시작일시보다 앞 설 수 없습니다.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String fileGrpId = fileService.addTnAttachFile(request, user, file, this.getMiddlePath());
|
||||||
|
|
||||||
Map<String, Object> response = tnPopupMngRepository.spUpdateTnPopupMng(
|
Map<String, Object> response = tnPopupMngRepository.spUpdateTnPopupMng(
|
||||||
popupId.intValue(),
|
popupId.intValue(),
|
||||||
updatePopupVO.getTitle(),
|
updatePopupVO.getTitle(),
|
||||||
updatePopupVO.getStartDate(),
|
updatePopupVO.getStartDate(),
|
||||||
updatePopupVO.getEndDate(),
|
updatePopupVO.getEndDate(),
|
||||||
null,
|
fileGrpId,
|
||||||
updatePopupVO.getContents(),
|
updatePopupVO.getContents(),
|
||||||
"kcsc_admin",
|
user.getId(),
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
null
|
null
|
||||||
|
|
@ -311,4 +324,24 @@ public class PopUpApiServiceImpl extends EgovAbstractServiceImpl implements PopU
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 파일이 저장될 중간 경로를 생성한다.
|
||||||
|
* D:/kcscUploadFiles/XXXX/abc.jpg XXXX에 해당하는 경로다.
|
||||||
|
* @return 중간 경로
|
||||||
|
*/
|
||||||
|
private String getMiddlePath() {
|
||||||
|
//파일이 저장될 경로를 생성한다.
|
||||||
|
String domainPath = "popup";
|
||||||
|
Date nowDate = new Date();
|
||||||
|
String strNowYyyy = new SimpleDateFormat("yyyy").format(nowDate);
|
||||||
|
String strNowYyyyMmdd = new SimpleDateFormat("yyyyMMdd").format(nowDate);
|
||||||
|
String middlePath = domainPath + "/" + strNowYyyy + "/" + strNowYyyyMmdd + "/";
|
||||||
|
|
||||||
|
return middlePath;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
package com.dbnt.kcscbackend.admin.standardResearch;
|
package com.dbnt.kcscbackend.admin.standardResearch;
|
||||||
|
|
||||||
|
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.utils.EgovFileMngUtil;
|
import com.dbnt.kcscbackend.file.service.EgovFileMngUtil;
|
||||||
import com.dbnt.kcscbackend.admin.standardResearch.model.CreateStandardResearchVO;
|
import com.dbnt.kcscbackend.admin.standardResearch.model.CreateStandardResearchVO;
|
||||||
import com.dbnt.kcscbackend.admin.standardResearch.model.UpdateStandardResearchVO;
|
import com.dbnt.kcscbackend.admin.standardResearch.model.UpdateStandardResearchVO;
|
||||||
import com.dbnt.kcscbackend.admin.standardResearch.service.AdminStandardResearchService;
|
import com.dbnt.kcscbackend.admin.standardResearch.service.AdminStandardResearchService;
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,26 @@ public interface TnCmtOrgRepository extends JpaRepository<TnCmtOrg, TnCmtOrg.TnC
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
@Query(value = "CALL sp_update_tn_cmt_org (" +
|
||||||
|
":_cmt_seq, " +
|
||||||
|
":_cmt_nm, " +
|
||||||
|
":_cmt_desc, " +
|
||||||
|
":_cmt_order, " +
|
||||||
|
":_modi_id, " +
|
||||||
|
":_result_count, " +
|
||||||
|
":_result_code, " +
|
||||||
|
":_error_message)",
|
||||||
|
nativeQuery = true)
|
||||||
|
Map<String, Object> spUpdateTnCmtOrg(
|
||||||
|
@Param("_cmt_seq") Integer cmtSeq,
|
||||||
|
@Param("_cmt_nm") String cmtNm,
|
||||||
|
@Param("_cmt_desc") String cmtDesc,
|
||||||
|
@Param("_cmt_order") Integer cmtOrder,
|
||||||
|
@Param("_modi_id") String modiId,
|
||||||
|
@Param("_result_count") Integer resultCount,
|
||||||
|
@Param("_result_code") String resultCode,
|
||||||
|
@Param("_error_message") String errorMessage
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
@Query(value = "CALL sp_delete_tn_cmt_org (" +
|
@Query(value = "CALL sp_delete_tn_cmt_org (" +
|
||||||
|
|
|
||||||
|
|
@ -826,7 +826,6 @@ public class EgovStringUtil {
|
||||||
*
|
*
|
||||||
* @param
|
* @param
|
||||||
* @return Timestamp 값
|
* @return Timestamp 값
|
||||||
* @exception MyException
|
|
||||||
* @see
|
* @see
|
||||||
*/
|
*/
|
||||||
public static String getTimeStamp() {
|
public static String getTimeStamp() {
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,48 @@ package com.dbnt.kcscbackend.file.repository;
|
||||||
|
|
||||||
import com.dbnt.kcscbackend.file.entity.TnAttachFile;
|
import com.dbnt.kcscbackend.file.entity.TnAttachFile;
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
import org.springframework.data.jpa.repository.Query;
|
||||||
|
import org.springframework.data.jpa.repository.query.Procedure;
|
||||||
|
import org.springframework.data.repository.query.Param;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
|
|
||||||
public interface TnAttachFileRepository extends JpaRepository<TnAttachFile, Integer> {
|
public interface TnAttachFileRepository extends JpaRepository<TnAttachFile, Integer> {
|
||||||
|
|
||||||
Optional<TnAttachFile> findByFileGrpId(String fileGrpId);
|
Optional<TnAttachFile> findByFileGrpId(String fileGrpId);
|
||||||
|
|
||||||
|
@Procedure("make_file_grp_id")
|
||||||
|
String makeFileGrpId( String modiId );
|
||||||
|
|
||||||
|
@Query(value = "CALL sp_add_tn_attach_file (" +
|
||||||
|
":_file_grp_id, " +
|
||||||
|
":_file_order, " +
|
||||||
|
":_file_old_name, " +
|
||||||
|
":_file_new_name, " +
|
||||||
|
":_file_path, " +
|
||||||
|
":_file_size, " +
|
||||||
|
":_file_ext, " +
|
||||||
|
":_ip_address, " +
|
||||||
|
":_modi_id, " +
|
||||||
|
":_result_count, " +
|
||||||
|
":_result_code, " +
|
||||||
|
":_error_message)",
|
||||||
|
nativeQuery = true)
|
||||||
|
Map<String, Object> spAddTnAttachFile(
|
||||||
|
@Param("_file_grp_id") String _file_grp_id,
|
||||||
|
@Param("_file_order") Integer _file_order,
|
||||||
|
@Param("_file_old_name") String _file_old_name,
|
||||||
|
@Param("_file_new_name") String _file_new_name,
|
||||||
|
@Param("_file_path") String _file_path,
|
||||||
|
@Param("_file_size") Long _file_size,
|
||||||
|
@Param("_file_ext") String _file_ext,
|
||||||
|
@Param("_ip_address") String _ip_address,
|
||||||
|
@Param("_modi_id") String _modi_id,
|
||||||
|
@Param("_result_count") Integer resultCount,
|
||||||
|
@Param("_result_code") String resultCode,
|
||||||
|
@Param("_error_message") String errorMessage
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
package com.dbnt.kcscbackend.admin.contents.popUp.utils;
|
package com.dbnt.kcscbackend.file.service;
|
||||||
|
|
||||||
import com.dbnt.kcscbackend.admin.contents.popUp.model.FileVO;
|
import com.dbnt.kcscbackend.admin.contents.popUp.model.FileVO;
|
||||||
|
import com.dbnt.kcscbackend.admin.contents.popUp.utils.EgovStringUtil;
|
||||||
|
import com.dbnt.kcscbackend.admin.contents.popUp.utils.EgovWebUtil;
|
||||||
|
import com.dbnt.kcscbackend.config.util.EgovNumberUtil;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.egovframe.rte.fdl.idgnr.EgovIdGnrService;
|
import org.egovframe.rte.fdl.idgnr.EgovIdGnrService;
|
||||||
import org.egovframe.rte.fdl.property.EgovPropertyService;
|
import org.egovframe.rte.fdl.property.EgovPropertyService;
|
||||||
|
|
@ -12,10 +15,7 @@ import javax.annotation.Resource;
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Map.Entry;
|
import java.util.Map.Entry;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -43,6 +43,8 @@ public class EgovFileMngUtil {
|
||||||
@Resource(name = "propertiesService")
|
@Resource(name = "propertiesService")
|
||||||
protected EgovPropertyService propertyService;
|
protected EgovPropertyService propertyService;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 첨부파일에 대한 목록 정보를 취득한다.
|
* 첨부파일에 대한 목록 정보를 취득한다.
|
||||||
*
|
*
|
||||||
|
|
@ -50,87 +52,97 @@ public class EgovFileMngUtil {
|
||||||
* @return
|
* @return
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public List<FileVO> parseFileInf(Map<String, MultipartFile> files, String KeyStr, int fileKeyParam, String atchFileId, String storePath) throws Exception {
|
public List<FileVO> parseFileInf(Map<String, MultipartFile> files, String KeyStr, int fileKeyParam, String middlePath, String storePath) throws Exception {
|
||||||
int fileKey = fileKeyParam;
|
int fileKey = fileKeyParam;
|
||||||
|
|
||||||
String storePathString = "";
|
|
||||||
String atchFileIdString = "";
|
|
||||||
|
|
||||||
if ("".equals(storePath) || storePath == null) {
|
String storePathString = "";
|
||||||
storePathString = propertyService.getString("Globals.fileStorePath");
|
String atchFileIdString = "";
|
||||||
} else {
|
|
||||||
storePathString = propertyService.getString(storePath);
|
|
||||||
}
|
|
||||||
|
|
||||||
atchFileId = atchFileId.replaceAll("\\s", "");
|
|
||||||
|
|
||||||
if ("".equals(atchFileId) || atchFileId == null) {
|
if ("".equals(storePath) || storePath == null) {
|
||||||
atchFileIdString = "testest_thkim-temp-20240124_1446";
|
storePathString = propertyService.getString("Globals.fileStorePath");
|
||||||
} else {
|
} else {
|
||||||
atchFileIdString = atchFileId;
|
storePathString = propertyService.getString(storePath);
|
||||||
}
|
}
|
||||||
|
|
||||||
File saveFolder = new File(EgovWebUtil.filePathBlackList(storePathString));
|
middlePath = middlePath.replaceAll("\\s", "");
|
||||||
|
|
||||||
if (!saveFolder.exists() || saveFolder.isFile()) {
|
if ("".equals(middlePath) || middlePath == null) {
|
||||||
saveFolder.mkdirs();
|
atchFileIdString = EgovStringUtil.getTimeStamp() + EgovNumberUtil.getRandomNum(0, 9) + EgovNumberUtil.getRandomNum(0, 9) + "";
|
||||||
}
|
} else {
|
||||||
|
atchFileIdString = middlePath;
|
||||||
|
}
|
||||||
|
|
||||||
Iterator<Entry<String, MultipartFile>> itr = files.entrySet().iterator();
|
File saveFolder = new File(EgovWebUtil.filePathBlackList(storePathString));
|
||||||
MultipartFile file;
|
|
||||||
String filePath = "";
|
|
||||||
List<FileVO> result = new ArrayList<FileVO>();
|
|
||||||
FileVO fvo;
|
|
||||||
|
|
||||||
while (itr.hasNext()) {
|
if (!saveFolder.exists() || saveFolder.isFile()) {
|
||||||
Entry<String, MultipartFile> entry = itr.next();
|
saveFolder.mkdirs();
|
||||||
|
}
|
||||||
|
|
||||||
file = entry.getValue();
|
Iterator<Entry<String, MultipartFile>> itr = files.entrySet().iterator();
|
||||||
String orginFileName = file.getOriginalFilename();
|
MultipartFile file;
|
||||||
|
String filePath = "";
|
||||||
//--------------------------------------
|
List<FileVO> result = new ArrayList<FileVO>();
|
||||||
// 원 파일명이 null인 경우 처리
|
FileVO fvo;
|
||||||
//--------------------------------------
|
|
||||||
if (orginFileName == null) {
|
|
||||||
orginFileName = "";
|
|
||||||
}
|
|
||||||
////------------------------------------
|
|
||||||
|
|
||||||
//--------------------------------------
|
while (itr.hasNext()) {
|
||||||
// 원 파일명이 없는 경우 처리
|
Entry<String, MultipartFile> entry = itr.next();
|
||||||
// (첨부가 되지 않은 input file type)
|
|
||||||
//--------------------------------------
|
|
||||||
if ("".equals(orginFileName)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
////------------------------------------
|
|
||||||
|
|
||||||
int index = orginFileName.lastIndexOf(".");
|
|
||||||
//String fileName = orginFileName.substring(0, index);
|
|
||||||
String fileExt = orginFileName.substring(index + 1);
|
|
||||||
String newName = KeyStr + EgovStringUtil.getTimeStamp() + fileKey;
|
|
||||||
long _size = file.getSize();
|
|
||||||
|
|
||||||
if (!"".equals(orginFileName)) {
|
file = entry.getValue();
|
||||||
filePath = storePathString + File.separator + newName;
|
String orginFileName = file.getOriginalFilename();
|
||||||
file.transferTo(new File(EgovWebUtil.filePathBlackList(filePath)));
|
|
||||||
}
|
|
||||||
fvo = new FileVO();
|
|
||||||
fvo.setFileExtsn(fileExt);
|
|
||||||
fvo.setFileStreCours(storePathString);
|
|
||||||
fvo.setFileMg(Long.toString(_size));
|
|
||||||
fvo.setOrignlFileNm(orginFileName);
|
|
||||||
fvo.setStreFileNm(newName);
|
|
||||||
fvo.setAtchFileId(atchFileIdString);
|
|
||||||
fvo.setFileSn(String.valueOf(fileKey));
|
|
||||||
|
|
||||||
//writeFile(file, newName, storePathString);
|
//--------------------------------------
|
||||||
result.add(fvo);
|
// 원 파일명이 null인 경우 처리
|
||||||
|
//--------------------------------------
|
||||||
|
if (orginFileName == null) {
|
||||||
|
orginFileName = "";
|
||||||
|
}
|
||||||
|
////------------------------------------
|
||||||
|
|
||||||
fileKey++;
|
//--------------------------------------
|
||||||
}
|
// 원 파일명이 없는 경우 처리
|
||||||
|
// (첨부가 되지 않은 input file type)
|
||||||
|
//--------------------------------------
|
||||||
|
if ("".equals(orginFileName)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
////------------------------------------
|
||||||
|
|
||||||
return result;
|
int index = orginFileName.lastIndexOf(".");
|
||||||
|
//String fileName = orginFileName.substring(0, index);
|
||||||
|
String fileExt = orginFileName.substring(index + 1);
|
||||||
|
String newName = KeyStr + EgovStringUtil.getTimeStamp() + fileKey;
|
||||||
|
long _size = file.getSize();
|
||||||
|
|
||||||
|
if (!"".equals(orginFileName)) {
|
||||||
|
|
||||||
|
filePath = storePathString + File.separator + middlePath + File.separator;
|
||||||
|
|
||||||
|
File savePath = new File(EgovWebUtil.filePathBlackList(filePath));
|
||||||
|
if (!savePath.exists() || savePath.isFile()) {
|
||||||
|
savePath.mkdirs();
|
||||||
|
}
|
||||||
|
|
||||||
|
file.transferTo(new File(EgovWebUtil.filePathBlackList(savePath.getAbsolutePath() + File.separator + newName + "." + fileExt)));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fvo = new FileVO();
|
||||||
|
fvo.setFileExtsn(fileExt);
|
||||||
|
fvo.setFileStreCours(storePathString.replaceAll("\\\\", "/"));
|
||||||
|
fvo.setFileMg(Long.toString(_size));
|
||||||
|
fvo.setOrignlFileNm(orginFileName);
|
||||||
|
fvo.setStreFileNm(newName);
|
||||||
|
fvo.setAtchFileId(atchFileIdString.replaceAll("\\\\", "/"));
|
||||||
|
fvo.setFileSn(String.valueOf(fileKey));
|
||||||
|
|
||||||
|
//writeFile(file, newName, storePathString);
|
||||||
|
result.add(fvo);
|
||||||
|
|
||||||
|
fileKey++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -1,10 +1,22 @@
|
||||||
package com.dbnt.kcscbackend.file.service;
|
package com.dbnt.kcscbackend.file.service;
|
||||||
|
|
||||||
|
import com.dbnt.kcscbackend.admin.contents.popUp.model.FileVO;
|
||||||
|
import com.dbnt.kcscbackend.auth.entity.LoginVO;
|
||||||
import com.dbnt.kcscbackend.file.entity.TnAttachFile;
|
import com.dbnt.kcscbackend.file.entity.TnAttachFile;
|
||||||
import com.dbnt.kcscbackend.file.repository.TnAttachFileRepository;
|
import com.dbnt.kcscbackend.file.repository.TnAttachFileRepository;
|
||||||
|
import com.dbnt.kcscbackend.util.NetworkUtil;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Iterator;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
|
|
@ -12,6 +24,9 @@ public class FileService {
|
||||||
|
|
||||||
private final TnAttachFileRepository tnAttachFileRepository;
|
private final TnAttachFileRepository tnAttachFileRepository;
|
||||||
|
|
||||||
|
@Resource(name = "EgovFileMngUtil")
|
||||||
|
private EgovFileMngUtil fileUtil;
|
||||||
|
|
||||||
@Transactional
|
@Transactional
|
||||||
public TnAttachFile selectTnAttachFile(TnAttachFile tnAttachFile) {
|
public TnAttachFile selectTnAttachFile(TnAttachFile tnAttachFile) {
|
||||||
if(tnAttachFile.getFileSeq()!=null){
|
if(tnAttachFile.getFileSeq()!=null){
|
||||||
|
|
@ -24,4 +39,63 @@ public class FileService {
|
||||||
tnAttachFileRepository.save(tnAttachFile);
|
tnAttachFileRepository.save(tnAttachFile);
|
||||||
return tnAttachFile;
|
return tnAttachFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TN_ATTACH_FILE table에 insert 후, 파일 그룹 ID를 return 한다.
|
||||||
|
* TN_ATTACH_FILE 참고.
|
||||||
|
* @param request
|
||||||
|
* @param user
|
||||||
|
* @param file
|
||||||
|
* @param middlePath 파일이 저장될 중간 경로다.
|
||||||
|
* D:/kcscUploadFiles/XXXX/abc.jpg XXXX에 해당하는 경로다.
|
||||||
|
* 참고로 D:/kcscUploadFiles 값은 application-xxx.properties에 있는 Globals.fileStorePath를 통해 얻는다.
|
||||||
|
* @return 파일 그룹 ID
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public String addTnAttachFile(HttpServletRequest request, LoginVO user, MultipartFile file, String middlePath) throws Exception {
|
||||||
|
String ipAddress = NetworkUtil.getClientIpAddress(request);
|
||||||
|
|
||||||
|
String fileGrpId = null;
|
||||||
|
if( file != null && !file.isEmpty()) {
|
||||||
|
|
||||||
|
Map<String, MultipartFile> filesMap = new HashMap<String, MultipartFile>();
|
||||||
|
filesMap.put("file", file);
|
||||||
|
|
||||||
|
//String fileGrpId = UUID.randomUUID().toString();
|
||||||
|
fileGrpId = tnAttachFileRepository.makeFileGrpId(user.getId());
|
||||||
|
|
||||||
|
List<FileVO> files = fileUtil.parseFileInf(filesMap, "", 0, middlePath, null);
|
||||||
|
|
||||||
|
int nCount = 1;
|
||||||
|
// 업로드된 file을 tnAttachFile에 insert한다.
|
||||||
|
for (Iterator<FileVO> iter = files.iterator(); iter.hasNext(); nCount++) {
|
||||||
|
|
||||||
|
FileVO item = iter.next();
|
||||||
|
|
||||||
|
tnAttachFileRepository.spAddTnAttachFile(
|
||||||
|
fileGrpId,
|
||||||
|
nCount,
|
||||||
|
item.getOrignlFileNm(),
|
||||||
|
item.getStreFileNm() + "." + item.getFileExtsn(),
|
||||||
|
(item.getFileStreCours() + File.separator + item.getAtchFileId()).replaceAll("\\\\", "/"),
|
||||||
|
Long.parseLong(item.getFileMg()),
|
||||||
|
item.getFileExtsn(),
|
||||||
|
ipAddress,
|
||||||
|
user.getId(),
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return fileGrpId;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
package com.dbnt.kcscbackend.util;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
|
||||||
|
public final class NetworkUtil {
|
||||||
|
private static final String[] HEADERS_TO_TRY = {
|
||||||
|
"X-Forwarded-For",
|
||||||
|
"Proxy-Client-IP",
|
||||||
|
"WL-Proxy-Client-IP",
|
||||||
|
"HTTP_X_FORWARDED_FOR",
|
||||||
|
"HTTP_X_FORWARDED",
|
||||||
|
"HTTP_X_CLUSTER_CLIENT_IP",
|
||||||
|
"HTTP_CLIENT_IP",
|
||||||
|
"HTTP_FORWARDED_FOR",
|
||||||
|
"HTTP_FORWARDED",
|
||||||
|
"HTTP_VIA",
|
||||||
|
"REMOTE_ADDR" };
|
||||||
|
|
||||||
|
public static String getClientIpAddress(HttpServletRequest request) {
|
||||||
|
for (String header : HEADERS_TO_TRY) {
|
||||||
|
String ip = request.getHeader(header);
|
||||||
|
if (ip != null && !ip.isEmpty() && !"unknown".equalsIgnoreCase(ip)) {
|
||||||
|
return ip;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return request.getRemoteAddr();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -31,5 +31,5 @@ logging.level.com.atoz_develop.mybatissample.repository=TRACE
|
||||||
|
|
||||||
# File Config
|
# File Config
|
||||||
Globals.posblAtchFileSize=5242880
|
Globals.posblAtchFileSize=5242880
|
||||||
Globals.fileStorePath=D:\\kcsc
|
Globals.fileStorePath=D:\\kcscUploadFiles
|
||||||
Globals.addedOptions=false
|
Globals.addedOptions=false
|
||||||
|
|
|
||||||
|
|
@ -37,5 +37,5 @@ logging.level.com.atoz_develop.mybatissample.repository=TRACE
|
||||||
|
|
||||||
# File Config
|
# File Config
|
||||||
Globals.posblAtchFileSize=5242880
|
Globals.posblAtchFileSize=5242880
|
||||||
Globals.fileStorePath=D:\\kcsc
|
Globals.fileStorePath=D:\\kcscUploadFiles
|
||||||
Globals.addedOptions=false
|
Globals.addedOptions=false
|
||||||
|
|
@ -34,5 +34,5 @@ logging.level.com.atoz_develop.mybatissample.repository=info
|
||||||
|
|
||||||
# File Config
|
# File Config
|
||||||
Globals.posblAtchFileSize=5242880
|
Globals.posblAtchFileSize=5242880
|
||||||
Globals.fileStorePath=C:\\kcsc_web\\uploadedFile
|
Globals.fileStorePath=D:\\kcscUploadFiles
|
||||||
Globals.addedOptions=false
|
Globals.addedOptions=false
|
||||||
|
|
|
||||||
|
|
@ -34,5 +34,5 @@ logging.level.com.atoz_develop.mybatissample.repository=info
|
||||||
|
|
||||||
# File Config
|
# File Config
|
||||||
Globals.posblAtchFileSize=5242880
|
Globals.posblAtchFileSize=5242880
|
||||||
Globals.fileStorePath=/docker/kcscDev/uploadFiles
|
Globals.fileStorePath=D:\\kcscUploadFiles
|
||||||
Globals.addedOptions=false
|
Globals.addedOptions=false
|
||||||
|
|
@ -18,3 +18,8 @@ Globals.admin.allow-ip = 218.49.16.81,218.49.21.183,218.49.16.168,218.49.17.102,
|
||||||
|
|
||||||
#?????? ???? ?
|
#?????? ???? ?
|
||||||
#?? : ??? ??? "egovframe"? ????? ???? ????? ????.
|
#?? : ??? ??? "egovframe"? ????? ???? ????? ????.
|
||||||
|
|
||||||
|
|
||||||
|
# filesize limit
|
||||||
|
spring.servlet.multipart.maxFileSize=10MB
|
||||||
|
spring.servlet.multipart.maxRequestSize=10MB
|
||||||
Loading…
Reference in New Issue