feat(approvals): Approval Flow v2 프런트엔드 전면 개편

- 환경/라우터 모듈에 approval_flow_v2 토글을 추가하고 FeatureFlags 초기화를 연결 (.env*, lib/core/**)
- ApiClient 빌더·ApiRoutes 확장과 ApprovalRepositoryRemote 리팩터링으로 include·액션 시그니처를 정합화
- ApprovalFlow·ApprovalDraft 엔티티/레포/유즈케이스를 도입해 서버 초안과 단계 액션(승인·회수·재상신)을 지원
- Approval 컨트롤러·히스토리·템플릿 페이지와 공유 위젯을 재작성해 감사 로그·회수 UX·템플릿 CRUD를 반영
- Inbound/Outbound/Rental 컨트롤러·페이지에 결재 섹션을 삽입하고 대시보드 pending 카드 요약을 갱신
- SuperportDialog·FormField 등 공통 위젯을 보강하고 승인 위젯 가이드를 추가해 UI 가이드를 정리
- 결재/재고 테스트 픽스처와 단위·위젯·통합 테스트를 확장하고 flutter_test_config로 스테이징 호스트를 허용
- Approval Flow 레포트/플랜 문서를 업데이트하고 ApprovalFlow_System_Integration_and_ChangePlan.md를 추가
- 실행: flutter analyze, flutter test
This commit is contained in:
JiWoong Sul
2025-10-31 01:05:39 +09:00
parent 259b056072
commit d76f765814
133 changed files with 13878 additions and 947 deletions

View File

@@ -296,7 +296,7 @@ void main() {
_buildApp(
Center(
child: SizedBox(
width: 260,
width: 320,
child: CustomerPage(routeUri: Uri(path: '/masters/customers')),
),
),

View File

@@ -348,7 +348,7 @@ void main() {
_buildApp(
Center(
child: SizedBox(
width: 260,
width: 320,
child: ProductPage(routeUri: Uri(path: '/masters/products')),
),
),

View File

@@ -42,7 +42,9 @@ void main() {
expect(selectedId, equals(1));
final editableText = tester.widget<EditableText>(find.byType(EditableText));
final editableText = tester.widget<EditableText>(
find.byType(EditableText),
);
expect(editableText.controller.text, '테스트 제조사 (V001)');
});
});

View File

@@ -242,7 +242,7 @@ void main() {
_buildApp(
Center(
child: SizedBox(
width: 260,
width: 320,
child: VendorPage(routeUri: Uri(path: '/masters/vendors')),
),
),

View File

@@ -277,7 +277,7 @@ void main() {
_buildApp(
Center(
child: SizedBox(
width: 260,
width: 320,
child: WarehousePage(routeUri: Uri(path: '/masters/warehouses')),
),
),