本文整理汇总了Python中enroll.models.Student.year方法的典型用法代码示例。如果您正苦于以下问题:Python Student.year方法的具体用法?Python Student.year怎么用?Python Student.year使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类enroll.models.Student
的用法示例。
在下文中一共展示了Student.year方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: form2student
# 需要导入模块: from enroll.models import Student [as 别名]
# 或者: from enroll.models.Student import year [as 别名]
def form2student(form,course):
st = Student()
st.status = 'n'
st.course_key=str(course.key())
st.init_reg()
st.init_ref_base()
st.addressing = form.cleaned_data['addressing']
st.name = form.cleaned_data['name']
st.surname = form.cleaned_data['surname']
st.student = form.cleaned_data['student']
st.long_period = form.cleaned_data['long_period']
st.year = form.cleaned_data['year']
st.email = form.cleaned_data['email']
st.no_email_ad = form.cleaned_data['no_email_ad']
st.phone = form.cleaned_data['phone']
st.street = form.cleaned_data['street']
st.street_no = form.cleaned_data['street_no']
st.city = form.cleaned_data['city']
st.post_code = form.cleaned_data['post_code']
st.school = form.cleaned_data['school']
st.school_class = form.cleaned_data['school_class']
st.comment = form.cleaned_data['comment']
#st.partner_ref_code = form.cleaned_data['partner']
if course.cost_sale:
a = course.cost_sa
b = course.cost_sb
else:
a = course.cost_a
b = course.cost_b
if course.cost_mode == 'Normal':
if (st.student):
st.course_cost = b
else:
st.course_cost = a
elif course.cost_mode == 'Period':
if (st.long_period):
st.course_cost = a
else:
st.course_cost = b
elif course.cost_mode == 'Fix':
st.course_cost = a
st.save()
st.init_gid() #ok
st.init_ref_codes()
st.save()
return st