refactor: 프로젝트 구조 개선 및 테스트 시스템 강화
Some checks failed
Flutter Test & Quality Check / Test on macos-latest (push) Has been cancelled
Flutter Test & Quality Check / Test on ubuntu-latest (push) Has been cancelled
Flutter Test & Quality Check / Build APK (push) Has been cancelled

주요 변경사항:
- CLAUDE.md: 프로젝트 규칙 v2.0으로 업데이트, 아키텍처 명확화
- 불필요한 문서 제거: NEXT_TASKS.md, TEST_PROGRESS.md, test_results 파일들
- 테스트 시스템 개선: 실제 API 테스트 스위트 추가 (15개 새 테스트 파일)
- License 관리: DTO 모델 개선, API 응답 처리 최적화
- 에러 처리: Interceptor 로직 강화, 상세 로깅 추가
- Company/User/Warehouse 테스트: 자동화 테스트 안정성 향상
- Phone Utils: 전화번호 포맷팅 로직 개선
- Overview Controller: 대시보드 데이터 로딩 최적화
- Analysis Options: Flutter 린트 규칙 추가

테스트 개선:
- company_real_api_test.dart: 실제 API 회사 관리 테스트
- equipment_in/out_real_api_test.dart: 장비 입출고 API 테스트
- license_real_api_test.dart: 라이선스 관리 API 테스트
- user_real_api_test.dart: 사용자 관리 API 테스트
- warehouse_location_real_api_test.dart: 창고 위치 API 테스트
- filter_sort_test.dart: 필터링/정렬 기능 테스트
- pagination_test.dart: 페이지네이션 테스트
- interactive_search_test.dart: 검색 기능 테스트
- overview_dashboard_test.dart: 대시보드 통합 테스트

코드 품질:
- 모든 서비스에 에러 처리 강화
- DTO 모델 null safety 개선
- 테스트 커버리지 확대
- 불필요한 로그 파일 제거로 리포지토리 정리

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
JiWoong Sul
2025-08-07 17:16:30 +09:00
parent fe05094392
commit c8dd1ff815
79 changed files with 12558 additions and 9761 deletions

View File

@@ -7,7 +7,7 @@ class PhoneUtils {
static final TextInputFormatter phoneInputFormatter =
_PhoneTextInputFormatter();
/// 전화번호 포맷팅 (뒤 4자리 하이)
/// 전화번호 포맷팅 (뒤 4자리 하이)
static String formatPhoneNumber(String phoneNumber) {
final digitsOnly = phoneNumber.replaceAll(RegExp(r'[^\d]'), '');
if (digitsOnly.isEmpty) return '';
@@ -21,6 +21,46 @@ class PhoneUtils {
}
return digitsOnly;
}
/// 접두사에 따른 전화번호 포맷팅
/// 010, 070, 050 등 0x0 번호: 0000-0000
/// 02, 031 등 지역번호: 000-0000 또는 0000-0000
static String formatPhoneNumberByPrefix(String prefix, String phoneNumber) {
final digitsOnly = phoneNumber.replaceAll(RegExp(r'[^\d]'), '');
if (digitsOnly.isEmpty) return '';
// 0x0 형태의 번호 (010, 070, 050 등)
if (prefix.length == 3 && prefix.startsWith('0') && prefix[2] == '0') {
// 8자리 처리: 0000-0000
if (digitsOnly.length == 8) {
return '${digitsOnly.substring(0, 4)}-${digitsOnly.substring(4)}';
} else if (digitsOnly.length > 8) {
final trimmed = digitsOnly.substring(0, 8);
return '${trimmed.substring(0, 4)}-${trimmed.substring(4)}';
} else if (digitsOnly.length > 4) {
return '${digitsOnly.substring(0, 4)}-${digitsOnly.substring(4)}';
}
}
// 지역번호 (02, 031, 032 등)
else {
// 7자리: 000-0000
if (digitsOnly.length == 7) {
return '${digitsOnly.substring(0, 3)}-${digitsOnly.substring(3)}';
}
// 8자리: 0000-0000
else if (digitsOnly.length == 8) {
return '${digitsOnly.substring(0, 4)}-${digitsOnly.substring(4)}';
}
// 그 외: 마지막 4자리 앞에 하이픈
else if (digitsOnly.length > 4) {
final frontPart = digitsOnly.substring(0, digitsOnly.length - 4);
final backPart = digitsOnly.substring(digitsOnly.length - 4);
return '$frontPart-$backPart';
}
}
return digitsOnly;
}
/// 포맷된 전화번호에서 숫자만 추출
static String extractDigitsOnly(String formattedPhoneNumber) {