1ㅊㅏ완료

This commit is contained in:
2026-01-05 02:00:13 +09:00
parent 1bbad6efa7
commit 185161db16
30 changed files with 4331 additions and 837 deletions

View File

@@ -1,22 +1,4 @@
import { query, insertReturning, execute } from '../../../utils/db'
import { getWeekInfo } from '../../../utils/week-calc'
import { getClientIp } from '../../../utils/ip'
import { getCurrentUserEmail } from '../../../utils/user'
interface ProjectItem {
projectId: number
workDescription?: string
planDescription?: string
}
interface CreateReportBody {
reportYear?: number
reportWeek?: number
projects: ProjectItem[]
issueDescription?: string
vacationDescription?: string
remarkDescription?: string
}
import { query, execute, queryOne } from '../../../utils/db'
/**
* 주간보고 작성
@@ -28,73 +10,79 @@ export default defineEventHandler(async (event) => {
throw createError({ statusCode: 401, message: '로그인이 필요합니다.' })
}
const body = await readBody<CreateReportBody>(event)
const clientIp = getClientIp(event)
const userEmail = await getCurrentUserEmail(event)
const clientIp = getHeader(event, 'x-forwarded-for') || 'unknown'
const user = await queryOne<any>(`SELECT employee_email FROM wr_employee_info WHERE employee_id = $1`, [userId])
const userEmail = user?.employee_email || ''
if (!body.projects || body.projects.length === 0) {
throw createError({ statusCode: 400, message: '최소 1개 이상의 프로젝트를 추가해주세요.' })
const body = await readBody<{
reportYear: number
reportWeek: number
weekStartDate: string
weekEndDate: string
tasks: {
projectId: number
taskType: 'WORK' | 'PLAN'
taskDescription: string
taskHours: number
isCompleted?: boolean
}[]
issueDescription?: string
vacationDescription?: string
remarkDescription?: string
}>(event)
// 필수값 체크
if (!body.reportYear || !body.reportWeek || !body.weekStartDate || !body.weekEndDate) {
throw createError({ statusCode: 400, message: '주차 정보가 필요합니다.' })
}
// 주차 정보 (기본값: 이번 주)
const weekInfo = getWeekInfo()
const year = body.reportYear || weekInfo.year
const week = body.reportWeek || weekInfo.week
if (!body.tasks || body.tasks.length === 0) {
throw createError({ statusCode: 400, message: '최소 1개 이상의 Task가 필요합니다.' })
}
// 중복 체크
const existing = await query(`
SELECT report_id FROM wr_weekly_report
const existing = await queryOne<any>(`
SELECT report_id FROM wr_weekly_report
WHERE author_id = $1 AND report_year = $2 AND report_week = $3
`, [parseInt(userId), year, week])
`, [userId, body.reportYear, body.reportWeek])
if (existing.length > 0) {
throw createError({ statusCode: 409, message: '이미 해당 주차 보고서가 존재합니다.' })
if (existing) {
throw createError({ statusCode: 409, message: '해당 주차에 이미 작성된 보고서가 있습니다.' })
}
// 주차 날짜 계산
const dates = getWeekInfo(new Date(year, 0, 4 + (week - 1) * 7))
// 마스터 생성
const report = await insertReturning(`
// 마스터 등록
const result = await queryOne<any>(`
INSERT INTO wr_weekly_report (
author_id, report_year, report_week,
week_start_date, week_end_date,
author_id, report_year, report_week, week_start_date, week_end_date,
issue_description, vacation_description, remark_description,
report_status, created_ip, created_email, updated_ip, updated_email
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, 'DRAFT', $9, $10, $9, $10)
RETURNING *
RETURNING report_id
`, [
parseInt(userId),
year,
week,
dates.startDateStr,
dates.endDateStr,
body.issueDescription || null,
body.vacationDescription || null,
body.remarkDescription || null,
clientIp,
userEmail
userId, body.reportYear, body.reportWeek, body.weekStartDate, body.weekEndDate,
body.issueDescription || null, body.vacationDescription || null, body.remarkDescription || null,
clientIp, userEmail
])
// 프로젝트별 실적 저장
for (const proj of body.projects) {
const reportId = result.report_id
// Task 등록
for (const task of body.tasks) {
await execute(`
INSERT INTO wr_weekly_report_project (
report_id, project_id, work_description, plan_description,
INSERT INTO wr_weekly_report_task (
report_id, project_id, task_type, task_description, task_hours, is_completed,
created_ip, created_email, updated_ip, updated_email
) VALUES ($1, $2, $3, $4, $5, $6, $5, $6)
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $7, $8)
`, [
report.report_id,
proj.projectId,
proj.workDescription || null,
proj.planDescription || null,
clientIp,
userEmail
reportId, task.projectId, task.taskType, task.taskDescription, task.taskHours || 0,
task.taskType === 'WORK' ? (task.isCompleted !== false) : null,
clientIp, userEmail
])
}
return {
success: true,
reportId: report.report_id
reportId,
message: '주간보고가 작성되었습니다.'
}
})