fix: misc batch issues

This commit is contained in:
Jannat Patel
2025-02-19 16:40:11 +05:30
parent a8690e41e6
commit 9311043190
6 changed files with 28 additions and 5 deletions

View File

@@ -176,6 +176,10 @@ def create_live_class(
class_details = frappe.get_doc(payload)
class_details.save()
return class_details
else:
frappe.throw(
_("Error creating live class. Please try again. {0}").format(response.text)
)
def authenticate():

View File

@@ -122,7 +122,7 @@
],
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-01-17 11:57:02.859109",
"modified": "2025-02-19 16:26:05.902473",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Certificate",
@@ -156,6 +156,7 @@
"create": 1,
"email": 1,
"export": 1,
"if_owner": 1,
"print": 1,
"read": 1,
"report": 1,

View File

@@ -1233,6 +1233,7 @@ def get_batch_details(batch):
)
batch_details.instructors = get_instructors(batch)
batch_details.accept_enrollments = batch_details.start_date > getdate()
batch_details.courses = frappe.get_all(
"Batch Course", filters={"parent": batch}, fields=["course", "title", "evaluator"]