feat(frontend): update allocation UI and services

Enhance allocation management interface:
- Allocations page: modal-based editing, variance display
- Updated services: allocationService with bulk ops, projectMonthPlanService
- Project and team member pages: reconciliation status indicators
- Navigation config: add planning and reports links

Part of enhanced-allocation change.
This commit is contained in:
2026-03-08 18:23:00 -04:00
parent 9b0f42fdf5
commit dd8055f6b7
7 changed files with 180 additions and 89 deletions

View File

@@ -35,6 +35,8 @@ export interface UpdateProjectRequest {
code?: string;
title?: string;
type_id?: number;
status_id?: number;
approved_estimate?: number | null;
}
export const projectService = {