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
2 changed files with 5 additions and 7 deletions
Showing only changes of commit 202c36fad7 - Show all commits

View File

@ -383,14 +383,15 @@ def calculate_body_progress_score(profile_id: str, focus_weights: Optional[Dict]
def _score_weight_trend(profile_id: str) -> Optional[int]:
"""Score weight trend alignment with goals (0-100)"""
from goal_utils import get_goals_by_type
from goal_utils import get_active_goals
goals = get_goals_by_type(profile_id, 'weight')
if not goals:
goals = get_active_goals(profile_id)
weight_goals = [g for g in goals if g.get('type_key') == 'weight']
if not weight_goals:
return None
# Use primary or first active goal
goal = next((g for g in goals if g.get('is_primary')), goals[0])
goal = next((g for g in weight_goals if g.get('is_primary')), weight_goals[0])
current = goal.get('current_value')
target = goal.get('target_value')

View File

@ -392,9 +392,6 @@ def calculate_nutrition_score(profile_id: str, focus_weights: Optional[Dict] = N
def _score_calorie_adherence(profile_id: str) -> Optional[int]:
"""Score calorie target adherence (0-100)"""
# Get goal (if exists)
from goal_utils import get_goals_by_type
# Check for energy balance goal
# For now, use energy balance calculation
balance = calculate_energy_balance_7d(profile_id)