Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
7eb8195c
Commit
7eb8195c
authored
Jan 09, 2015
by
arbisoft
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ECOM-528 added donation support for verified courses
parent
7bdbf8f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
common/djangoapps/student/views.py
+11
-4
No files found.
common/djangoapps/student/views.py
View file @
7eb8195c
...
...
@@ -763,10 +763,17 @@ def _allow_donation(course_modes, course_id, enrollment):
donations_enabled
=
DonationConfiguration
.
current
()
.
enabled
is_verified_mode
=
CourseMode
.
has_verified_mode
(
course_modes
[
course_id
])
has_payment_option
=
CourseMode
.
has_payment_options
(
course_id
)
return_val
=
donations_enabled
and
(
not
is_verified_mode
or
(
is_verified_mode
and
enrollment
.
mode
in
[
'audit'
,
'honor'
]))
and
not
has_payment_option
return_val
#TODO Hard coded for the time being
return
True
return_val
=
False
if
donations_enabled
:
if
not
is_verified_mode
:
if
not
has_payment_option
:
return_val
=
True
else
:
if
enrollment
.
mode
in
[
'audit'
,
'honor'
]:
return_val
=
True
# return_val = donations_enabled and ((not is_verified_mode and not has_payment_option) or (is_verified_mode and enrollment.mode in ['audit', 'honor']))
# return_val = donations_enabled and not is_verified_mode and not has_payment_option
return
return_val
def
try_change_enrollment
(
request
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment