Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/jsonForZip_pc' into jsonForZip_pc
Browse files Browse the repository at this point in the history
  • Loading branch information
urchinpro committed Dec 8, 2023
2 parents c87dcd4 + ae21e7a commit 22fda0a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
11 changes: 9 additions & 2 deletions api/directions/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2420,9 +2420,16 @@ def directions_paraclinic_result(request):
"patient": patient
}
field_titles = [
"СНИЛС", "Дата осмотра", "Результат медицинского осмотра", "Группы риска", "Группы риска по SCORE",
"СНИЛС",
"Дата осмотра",
"Результат медицинского осмотра",
"Группы риска",
"Группы риска по SCORE",
"Дата присвоения группы здоровья",
"Вредные факторы", "Группа здоровья", "Номер справки", "Дата выдачи справки"
"Вредные факторы",
"Группа здоровья",
"Номер справки",
"Дата выдачи справки",
]
result_protocol = fields_result_only_title_fields(iss, field_titles)
data["result"] = result_protocol
Expand Down
2 changes: 1 addition & 1 deletion api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1683,6 +1683,7 @@ def user_location(request):
if rl and SettingManager.get("l2_rmis_queue", default="false", default_type="b"):
if rl == 1337 and request.user.is_superuser:
from rmis_integration.client import Patients

d = Patients.get_fake_reserves()
else:
d = get_reserves_ecp(date, rl)
Expand Down Expand Up @@ -3357,4 +3358,3 @@ def get_date_medical_examination(request):
request_data = json.loads(request.body)
current_exam = MedicalExamination.get_date(request_data["card_pk"])
return JsonResponse({"data": current_exam})

2 changes: 1 addition & 1 deletion forms/forms112.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def form_02(request_data):

if additional_data_from_file:
with open(additional_data_from_file) as json_file:
data = json.load(json_file)
data = json.loads(json_file)
appendix_paragraphs = data.get('appendix_paragraphs', None)
appendix_route_list = data.get('appendix_route_list', None)
appendix_direction_list = data.get('appendix_direction_list', None)
Expand Down
1 change: 0 additions & 1 deletion forms/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,5 +249,4 @@ def get_epid_data(directions, with_confirm):


def generate_xml(request):

return
8 changes: 4 additions & 4 deletions utils/nsi_directories.py
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@
'низкий риск': '0330c6cd-d54d-4caf-b2b4-46790b3cfda4',
'умеренный риск': 'be2dddf1-70b8-40a2-acc0-9dfdc6bf29d0',
'высокий риск': 'b077b932-d429-4534-bda3-323776b0e3a8',
'очень высокий риск': '5a961da8-b430-48af-83f6-f827297f087c'
'очень высокий риск': '5a961da8-b430-48af-83f6-f827297f087c',
},
},
'9.9.99.9.9.99.99.99.9.999.2': {
Expand All @@ -955,15 +955,15 @@
'Низкий': 'bff9f99c-8b01-4ac9-afbf-6e8b6e6d25fc',
'Средний': 'c57b87e8-d195-47f4-bbe3-5a3056b9bbcc',
'Высокий': '820e43db-54c1-46ce-9c08-85dc0aae8204',
'Очень высокий': '50b7894e-d990-4c40-a1e1-19b043f0c5ff'
'Очень высокий': '50b7894e-d990-4c40-a1e1-19b043f0c5ff',
},
},
'9.9.99.9.9.99.99.99.9.999.3': {
'title': 'Результат медицинского осмотра (ЦПП)',
'values': {
'Медицинские противопоказания к работе не выявлены': '17988ff4-fed9-4c95-b03d-6da09aa9e895',
'Медицинские противопоказания к работе выявлены': '9eda5102-80fe-4444-afcc-4464f6d43a71',
'Выдана справка о необходимости дополнительного медицинского обследования': '20487f06-1140-4659-aa61-7fa8a93eeaa7'
'Выдана справка о необходимости дополнительного медицинского обследования': '20487f06-1140-4659-aa61-7fa8a93eeaa7',
},
}
},
}

0 comments on commit 22fda0a

Please sign in to comment.