fix: dashboard links, web form redirects and patch for status
This commit is contained in:
7
school/patches/v0_0/set_status_in_course.py
Normal file
7
school/patches/v0_0/set_status_in_course.py
Normal file
@@ -0,0 +1,7 @@
|
||||
import frappe
|
||||
|
||||
def execute():
|
||||
courses = frappe.get_all("LMS Course", {"status": ("is", "not set")}, ["name", "is_published"])
|
||||
for course in courses:
|
||||
status = "Approved" if course.is_published else "In Progress"
|
||||
frappe.db.set_value("LMS Course", course.name, "status", status)
|
||||
Reference in New Issue
Block a user