本文整理汇总了Python中models.Course.modify方法的典型用法代码示例。如果您正苦于以下问题:Python Course.modify方法的具体用法?Python Course.modify怎么用?Python Course.modify使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Course
的用法示例。
在下文中一共展示了Course.modify方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: save
# 需要导入模块: from models import Course [as 别名]
# 或者: from models.Course import modify [as 别名]
def save(self):
cour = Course.query.get(self.code.data)
if cour is None:
cour = Course(
code=self.code.data,
desp=self.desp.data,
major=self.major.data,
additional=self.additional.data,
num=self.num.data,
credit=self.credit.data,
)
else:
cour.modify(
code=self.code.data,
desp=self.desp.data,
major=self.major.data,
additional=self.additional.data,
num=self.num.data,
credit=self.credit.data,
)
cour.save()
t = transline2times(self.coursetime.data)
if t != False and t is not None and len(t) != 0:
cdel = Timeplace.query.filter(Timeplace.code == self.code.data)
cdel.delete()
for st in t:
ta = Timeplace(
code=self.code.data, weekday=st[0], starttime=st[1], durtime=st[2], place=st[3], additional=st[4]
)
ta.save()
tea = transline2tea(self.teas.data)
if tea is not None and len(tea) != 0:
tdel = Emp.query.filter(Emp.code == self.code.data)
tdel.delete()
for st in tea:
ta = Emp(code=self.code.data, teaid=st)
ta.save()
return cour