Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
urchinpro committed Sep 27, 2023
1 parent 5486c79 commit 94c9bbb
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions api/directions/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -4435,10 +4435,7 @@ def meta_info(request):
@login_required
def patient_open_case(request):
request_data = json.loads(request.body)
print("request_data")
print(request_data)
card_pk = request_data.get("card_pk", None)
print(card_pk)
data_case = {}
if card_pk:
open_case = get_patient_open_case_data(card_pk)
Expand Down
1 change: 0 additions & 1 deletion api/researches/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,6 @@ def researches_params(request):
def researches_update(request):
response = {"ok": False}
request_data = json.loads(request.body)
print(request_data)
pk = request_data.get("pk", -2)
if pk > -2:
department_pk = request_data.get("department")
Expand Down
1 change: 0 additions & 1 deletion api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2635,7 +2635,6 @@ def get_price_data(request):
@group_required('Конструктор: Настройка организации')
def update_price(request):
request_data = json.loads(request.body)
print(request_data)
current_price = None
if request_data["id"] == -1:
if request_data.get("typePrice") == "Работодатель":
Expand Down

0 comments on commit 94c9bbb

Please sign in to comment.