Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hypha
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ots
hypha
Commits
511f2c13
Commit
511f2c13
authored
4 years ago
by
sks444
Browse files
Options
Downloads
Patches
Plain Diff
Change determination choice field outcome based on phase
parent
63c9976c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hypha/apply/api/v1/determination/views.py
+12
-8
12 additions, 8 deletions
hypha/apply/api/v1/determination/views.py
with
12 additions
and
8 deletions
hypha/apply/api/v1/determination/views.py
+
12
−
8
View file @
511f2c13
...
...
@@ -111,15 +111,9 @@ class SubmissionDeterminationViewSet(
)
return
Response
(
ser
.
data
)
@action
(
detail
=
False
,
methods
=
[
'
get
'
])
def
fields
(
self
,
request
,
*
args
,
**
kwargs
):
"""
List details of all the form fields that were created by admin for adding determinations.
These field details will be used in frontend to render the determination form.
"""
def
get_form_fields
(
self
):
form_fields
=
super
(
SubmissionDeterminationViewSet
,
self
).
get_form_fields
()
submission
=
self
.
get_submission_object
()
form_fields
=
self
.
get_form_fields
()
field_blocks
=
self
.
get_defined_fields
()
for
field_block
in
field_blocks
:
if
isinstance
(
field_block
.
block
,
DeterminationBlock
):
...
...
@@ -128,6 +122,16 @@ class SubmissionDeterminationViewSet(
)
# Outcome field choices need to be set according to the phase.
form_fields
[
field_block
.
id
].
choices
=
outcome_choices
return
form_fields
@action
(
detail
=
False
,
methods
=
[
'
get
'
])
def
fields
(
self
,
request
,
*
args
,
**
kwargs
):
"""
List details of all the form fields that were created by admin for adding determinations.
These field details will be used in frontend to render the determination form.
"""
form_fields
=
self
.
get_form_fields
()
fields
=
FieldSerializer
(
form_fields
.
items
(),
many
=
True
)
return
Response
(
fields
.
data
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment