Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
Add extraction batch ID to InhibitionCalculateDilutionFactor response
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronstephenson committed May 13, 2019
1 parent 7def1ed commit 852a3d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lideservices/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1429,7 +1429,8 @@ def post(self, request):
# if cq > 36.0 or cq is None:
# suggested_dilution_factor = 10
new_data = {"id": inhib.id, "sample": sample, "cq_value": cq,
"suggested_dilution_factor": suggested_dilution_factor}
"suggested_dilution_factor": suggested_dilution_factor,
"extraction_batch": eb.id}
response_data.append(new_data)
else:
is_valid = False
Expand Down

0 comments on commit 852a3d5

Please sign in to comment.