Сводка CA работает корректно

This commit is contained in:
2025-09-03 14:22:28 +03:00
parent 1fcb44193d
commit 0a328f9781
2 changed files with 111 additions and 113 deletions

View File

@@ -102,6 +102,9 @@ class ReportService:
# Устанавливаем DataFrame в парсер для использования в геттерах
parser.df = df
print(f"🔍 DEBUG: ReportService.get_data - установлен df в парсер {request.report_type}")
print(f"🔍 DEBUG: DataFrame shape: {df.shape if df is not None else 'None'}")
print(f"🔍 DEBUG: DataFrame columns: {list(df.columns) if df is not None and not df.empty else 'Empty'}")
# Получаем параметры запроса
get_params = request.get_params or {}