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

Commit

Permalink
Ensure Individual Sample Report is saved as the correct type in the c…
Browse files Browse the repository at this point in the history
…orrect folder
  • Loading branch information
aaronstephenson committed Oct 16, 2019
1 parent c210475 commit 53a1432
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "lide",
"organization": "U.S. Geological Survey",
"description": "Web services for LILI (LIDE (Laboratory for Infectious Disease and the Environment) Information Management System)",
"version": "v0.120.1",
"version": "v0.120.2",
"status": "Release Candidate",

"permissions": {
Expand Down
2 changes: 1 addition & 1 deletion lideservices/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def summary_statistics(self, request):
def results(self, request):
sample = request.query_params.get('sample', None)
target = request.query_params.get('target', None)
report_type = ReportType.objects.filter(id=2).first()
report_type = ReportType.objects.filter(id=3).first()
status = Status.objects.filter(id=1).first()
report_file = ReportFile.objects.create(
report_type=report_type, status=status, created_by=request.user, modified_by=request.user)
Expand Down

0 comments on commit 53a1432

Please sign in to comment.