feat: Phase 5 API 개발 완료 (사용자 초대, 알림설정, 계정관리, 거래명세서)

5.1 사용자 초대 기능:
- UserInvitation 마이그레이션, 모델, 서비스, 컨트롤러, Swagger
- 초대 발송/수락/취소/재발송 API

5.2 알림설정 확장:
- NotificationSetting 마이그레이션, 모델, 서비스, 컨트롤러, Swagger
- 채널별/유형별 알림 설정 관리

5.3 계정정보 수정 API:
- 회원탈퇴, 사용중지, 약관동의 관리
- AccountService, AccountController, Swagger

5.4 매출 거래명세서 API:
- 거래명세서 조회/발행/이메일발송
- SaleService 확장, Swagger 문서화
This commit is contained in:
2025-12-19 14:52:53 +09:00
parent c7b25710a0
commit 3020026abf
31 changed files with 2735 additions and 8 deletions

View File

@@ -270,6 +270,13 @@
'purchase' => '매입',
],
// 매출 관리
'sale' => [
'confirmed' => '매출이 확정되었습니다.',
'statement_issued' => '거래명세서가 발행되었습니다.',
'statement_sent' => '거래명세서가 발송되었습니다.',
],
// 급여 관리
'payroll' => [
'fetched' => '급여를 조회했습니다.',
@@ -316,4 +323,27 @@
'internal' => [
'token_exchanged' => '토큰이 발급되었습니다.',
],
// 사용자 초대 관리
'invitation' => [
'sent' => '초대가 발송되었습니다.',
'accepted' => '초대가 수락되었습니다.',
'cancelled' => '초대가 취소되었습니다.',
'resent' => '초대가 재발송되었습니다.',
],
// 알림 설정 관리
'notification_setting' => [
'fetched' => '알림 설정을 조회했습니다.',
'updated' => '알림 설정이 수정되었습니다.',
'bulk_updated' => '알림 설정이 일괄 저장되었습니다.',
'initialized' => '알림 설정이 초기화되었습니다.',
],
// 계정 관리
'account' => [
'withdrawn' => '회원 탈퇴가 완료되었습니다.',
'suspended' => '사용 중지가 완료되었습니다.',
'agreements_updated' => '약관 동의 정보가 수정되었습니다.',
],
];