From 01828034c463ee6ba0634bc2b3a6ffbeeed66fa9 Mon Sep 17 00:00:00 2001 From: Cali Stenson Date: Wed, 13 Mar 2019 13:41:29 -0400 Subject: [PATCH] Update enrollment course_price to verified price. --- common/djangoapps/student/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/djangoapps/student/models.py b/common/djangoapps/student/models.py index 863a0d0016..bc4d2ad565 100644 --- a/common/djangoapps/student/models.py +++ b/common/djangoapps/student/models.py @@ -54,7 +54,7 @@ from edx_django_utils.cache import RequestCache import lms.lib.comment_client as cc from student.signals import UNENROLL_DONE, ENROLL_STATUS_CHANGE, ENROLLMENT_TRACK_UPDATED from lms.djangoapps.certificates.models import GeneratedCertificate -from course_modes.models import CourseMode, get_cosmetic_display_price +from course_modes.models import CourseMode, get_cosmetic_verified_display_price from courseware.models import ( CourseDynamicUpgradeDeadlineConfiguration, DynamicUpgradeDeadlineConfiguration, @@ -1077,7 +1077,7 @@ class CourseEnrollment(models.Model): @property def course_price(self): - return get_cosmetic_display_price(self.course) + return get_cosmetic_verified_display_price(self.course) @property def course_id(self):