- tkuser 서비스 신규 추가 (API + Web) - 사용자/권한/프로젝트/부서/작업자/작업장/설비/작업/휴가 통합 관리 - 작업장 탭: 공장→작업장 드릴다운 네비게이션 + 구역지도 클릭 연동 - 작업 탭: 공정(work_types)→작업(tasks) 계층 관리 - 휴가 탭: 유형 관리 + 연차 배정(근로기준법 자동계산) - 전 시스템 SSO 쿠키 인증으로 통합 (.technicalkorea.net 공유) - System 2: 작업 이슈 리포트 기능 강화 - System 3: tkuser API 연동, 페이지 권한 체계 적용 - docker-compose에 tkuser-api, tkuser-web 서비스 추가 - ARCHITECTURE.md, DEPLOYMENT.md 문서 작성 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
84 lines
2.2 KiB
JavaScript
84 lines
2.2 KiB
JavaScript
/**
|
|
* Project Controller
|
|
*
|
|
* 프로젝트 CRUD
|
|
*/
|
|
|
|
const projectModel = require('../models/projectModel');
|
|
|
|
async function getAll(req, res, next) {
|
|
try {
|
|
const projects = await projectModel.getAll();
|
|
res.json({ success: true, data: projects });
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
}
|
|
|
|
async function getActive(req, res, next) {
|
|
try {
|
|
const projects = await projectModel.getActive();
|
|
res.json({ success: true, data: projects });
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
}
|
|
|
|
async function getById(req, res, next) {
|
|
try {
|
|
const project = await projectModel.getById(parseInt(req.params.id));
|
|
if (!project) {
|
|
return res.status(404).json({ success: false, error: '프로젝트를 찾을 수 없습니다' });
|
|
}
|
|
res.json({ success: true, data: project });
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
}
|
|
|
|
async function create(req, res, next) {
|
|
try {
|
|
const { job_no, project_name } = req.body;
|
|
|
|
if (!job_no || !project_name) {
|
|
return res.status(400).json({ success: false, error: 'Job No와 프로젝트명은 필수입니다' });
|
|
}
|
|
|
|
const project = await projectModel.create(req.body);
|
|
res.status(201).json({ success: true, data: project });
|
|
} catch (err) {
|
|
if (err.code === 'ER_DUP_ENTRY') {
|
|
return res.status(409).json({ success: false, error: '이미 존재하는 Job No입니다' });
|
|
}
|
|
next(err);
|
|
}
|
|
}
|
|
|
|
async function update(req, res, next) {
|
|
try {
|
|
const id = parseInt(req.params.id);
|
|
const project = await projectModel.update(id, req.body);
|
|
if (!project) {
|
|
return res.status(404).json({ success: false, error: '프로젝트를 찾을 수 없습니다' });
|
|
}
|
|
res.json({ success: true, data: project });
|
|
} catch (err) {
|
|
if (err.code === 'ER_DUP_ENTRY') {
|
|
return res.status(409).json({ success: false, error: '이미 존재하는 Job No입니다' });
|
|
}
|
|
next(err);
|
|
}
|
|
}
|
|
|
|
async function remove(req, res, next) {
|
|
try {
|
|
const id = parseInt(req.params.id);
|
|
await projectModel.deactivate(id);
|
|
res.json({ success: true, message: '프로젝트가 비활성화되었습니다' });
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
}
|
|
|
|
module.exports = { getAll, getActive, getById, create, update, remove };
|