From 01fcfb19e0010496fcb6697d80dcd7532eb9d358 Mon Sep 17 00:00:00 2001 From: well Date: Fri, 1 Nov 2024 15:28:24 +0800 Subject: [PATCH] fix key --- forms/forms107.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/forms/forms107.py b/forms/forms107.py index ff81b416f8..587ef6bd59 100644 --- a/forms/forms107.py +++ b/forms/forms107.py @@ -531,11 +531,11 @@ def form_03(request_data): ] assignments_data = [ [ - Paragraph(f'{" ".join(i["research_title"])}', style), - Paragraph(f'{i["create_date"]}', styleCenter), - Paragraph(f'{i["who_assigned"]}', styleCenter), - Paragraph(f'{i["time_confirmation"]}', styleCenter), - Paragraph(f'{i["who_confirm"]}', styleCenter), + Paragraph(f'{" ".join(i["researchTitle"])}', style), + Paragraph(f'{i["createDate"]}', styleCenter), + Paragraph(f'{i["whoAssigned"]}', styleCenter), + Paragraph(f'{i["timeConfirmation"]}', styleCenter), + Paragraph(f'{i["whoConfirm"]}', styleCenter), ] for i in assignments ]