Skip to content

Commit

Permalink
Merge pull request #4502 from mikhailprivalov/530_fix
Browse files Browse the repository at this point in the history
fix 530 titul
  • Loading branch information
urchinpro authored Dec 1, 2024
2 parents bdb21a1 + 0e8b366 commit 1d78348
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions forms/forms106.py
Original file line number Diff line number Diff line change
Expand Up @@ -1291,16 +1291,16 @@ def form_02(request_data):
cda_data_result.update(primary_reception_data.get("result_by_cda"))

if not cda_data_result.get("п.п.-Группа крови"):
cda_data_result["п.п.-Группа крови"] = group_blood_avo_value
cda_data_result["п.п.-Группа крови"] = group_blood_avo_value if group_blood_avo_value else " "

if not cda_data_result.get("п.п.-резус"):
cda_data_result["п.п.-резус"] = group_rezus_value
cda_data_result["п.п.-резус"] = group_rezus_value if group_rezus_value else " "

if not cda_data_result.get("п.п.-антиген К1"):
cda_data_result["п.п.-антиген К1"] = ""
cda_data_result["п.п.-антиген К1"] = " "

if not cda_data_result.get("п.п.-Kell"):
cda_data_result["п.п.-Kell"] = ""
cda_data_result["п.п.-Kell"] = " "

if current_template_file:
for section in body_paragraphs:
Expand Down

0 comments on commit 1d78348

Please sign in to comment.