Goals -System refactored - Platzhaltersystem enhanced (als draft) #53

Merged
Lars merged 86 commits from develop into main 2026-03-31 11:46:48 +02:00
Showing only changes of commit 0e89850df8 - Show all commits

View File

@ -542,7 +542,8 @@ def get_active_goals(profile_id: str) -> List[Dict]:
cur = get_cursor(conn)
cur.execute("""
SELECT id, goal_type, name, target_value, target_date,
current_value, start_value, progress_pct, status, is_primary
current_value, start_value, start_date, progress_pct,
status, is_primary, created_at
FROM goals
WHERE profile_id = %s
AND status IN ('active', 'in_progress')