diff --git a/erpnext/config/schools.py b/erpnext/config/schools.py index 41a8e71073e..688d1189d35 100644 --- a/erpnext/config/schools.py +++ b/erpnext/config/schools.py @@ -48,6 +48,10 @@ def get_data(): { "type": "doctype", "name": "Program Enrollment Tool" + }, + { + "type": "doctype", + "name": "Batch Creation Tool" } ] }, @@ -63,6 +67,19 @@ def get_data(): "type": "doctype", "name": "Student Attendance" }, + { + "type": "doctype", + "name": "Scheduling Tool" + }, + { + "type": "doctype", + "name": "Student Batch Attendance Tool" + } + ] + }, + { + "label": _("Assessment"), + "items": [ { "type": "doctype", "name": "Assessment" @@ -73,11 +90,7 @@ def get_data(): }, { "type": "doctype", - "name": "Student Batch Attendance Tool" - }, - { - "type": "doctype", - "name": "Scheduling Tool" + "name": "Grading Structure" } ] }, @@ -132,6 +145,10 @@ def get_data(): "type": "doctype", "name": "Program" }, + { + "type": "doctype", + "name": "Student Batch Name" + }, { "type": "doctype", "name": "Student Category" diff --git a/erpnext/schools/doctype/batch_creation_tool/__init__.py b/erpnext/schools/doctype/batch_creation_tool/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/erpnext/schools/doctype/batch_creation_tool/batch_creation_tool.js b/erpnext/schools/doctype/batch_creation_tool/batch_creation_tool.js new file mode 100644 index 00000000000..2ab638fbdb6 --- /dev/null +++ b/erpnext/schools/doctype/batch_creation_tool/batch_creation_tool.js @@ -0,0 +1,8 @@ +// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// For license information, please see license.txt + +frappe.ui.form.on('Batch Creation Tool', { + refresh: function(frm) { + frm.disable_save(); + } +}); diff --git a/erpnext/schools/doctype/batch_creation_tool/batch_creation_tool.json b/erpnext/schools/doctype/batch_creation_tool/batch_creation_tool.json new file mode 100644 index 00000000000..01769cad8af --- /dev/null +++ b/erpnext/schools/doctype/batch_creation_tool/batch_creation_tool.json @@ -0,0 +1,176 @@ +{ + "allow_copy": 1, + "allow_import": 0, + "allow_rename": 0, + "beta": 0, + "creation": "2016-11-14 18:20:12.160405", + "custom": 0, + "docstatus": 0, + "doctype": "DocType", + "document_type": "", + "editable_grid": 1, + "engine": "InnoDB", + "fields": [ + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "academic_year", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Academic Year", + "length": 0, + "no_copy": 0, + "options": "Academic Year", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "program", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Program", + "length": 0, + "no_copy": 0, + "options": "Program", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "student_batch_name", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Student Batch Name", + "length": 0, + "no_copy": 0, + "options": "Student Batch Name", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "make_student_batch", + "fieldtype": "Button", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Make Student Batch", + "length": 0, + "no_copy": 0, + "options": "make_batch", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + } + ], + "hide_heading": 1, + "hide_toolbar": 1, + "idx": 0, + "image_view": 0, + "in_create": 0, + "in_dialog": 0, + "is_submittable": 0, + "issingle": 1, + "istable": 0, + "max_attachments": 0, + "modified": "2016-11-18 17:33:03.157470", + "modified_by": "Administrator", + "module": "Schools", + "name": "Batch Creation Tool", + "name_case": "", + "owner": "Administrator", + "permissions": [ + { + "amend": 0, + "apply_user_permissions": 0, + "cancel": 0, + "create": 0, + "delete": 0, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "is_custom": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 0, + "role": "Academics User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, + "write": 1 + } + ], + "quick_entry": 0, + "read_only": 0, + "read_only_onload": 0, + "sort_field": "modified", + "sort_order": "DESC", + "track_seen": 0 +} \ No newline at end of file diff --git a/erpnext/schools/doctype/batch_creation_tool/batch_creation_tool.py b/erpnext/schools/doctype/batch_creation_tool/batch_creation_tool.py new file mode 100644 index 00000000000..accc65e1ed7 --- /dev/null +++ b/erpnext/schools/doctype/batch_creation_tool/batch_creation_tool.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# For license information, please see license.txt + +from __future__ import unicode_literals +import frappe +from frappe.model.document import Document + +class BatchCreationTool(Document): + def make_batch(self): + if self.academic_year and self.program and self.student_batch_name: + students = frappe.get_list("Program Enrollment", fields=["student", "student_name"], + filters={"academic_year":self.academic_year, "program": self.program, "student_batch_name": self.student_batch_name}, + order_by= "student_name") + if students: + student_batch = frappe.new_doc("Student Batch") + student_batch.update({ + "academic_year": self.academic_year, + "program": self.program, + "student_batch_name": self.student_batch_name, + "students": students + }) + student_batch.save() + frappe.msgprint("Student Batch created.") + else: + frappe.msgprint("No students found.") diff --git a/erpnext/schools/doctype/batch_name/__init__.py b/erpnext/schools/doctype/batch_name/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/erpnext/schools/doctype/batch_name/batch_name.js b/erpnext/schools/doctype/batch_name/batch_name.js new file mode 100644 index 00000000000..d1ef7b65d1d --- /dev/null +++ b/erpnext/schools/doctype/batch_name/batch_name.js @@ -0,0 +1,8 @@ +// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// For license information, please see license.txt + +frappe.ui.form.on('Batch Name', { + refresh: function(frm) { + + } +}); diff --git a/erpnext/schools/doctype/batch_name/batch_name.json b/erpnext/schools/doctype/batch_name/batch_name.json new file mode 100644 index 00000000000..d5012c46ee7 --- /dev/null +++ b/erpnext/schools/doctype/batch_name/batch_name.json @@ -0,0 +1,89 @@ +{ + "allow_copy": 0, + "allow_import": 0, + "allow_rename": 0, + "autoname": "field:batch_name", + "beta": 0, + "creation": "2016-11-17 18:45:57.965091", + "custom": 0, + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", + "editable_grid": 1, + "engine": "InnoDB", + "fields": [ + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "batch_name", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Batch Name", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + } + ], + "hide_heading": 0, + "hide_toolbar": 0, + "idx": 0, + "image_view": 0, + "in_create": 0, + "in_dialog": 0, + "is_submittable": 0, + "issingle": 0, + "istable": 0, + "max_attachments": 0, + "modified": "2016-11-17 18:46:01.359799", + "modified_by": "Administrator", + "module": "Schools", + "name": "Batch Name", + "name_case": "", + "owner": "Administrator", + "permissions": [ + { + "amend": 0, + "apply_user_permissions": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "is_custom": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Academics User", + "set_user_permissions": 0, + "share": 1, + "submit": 0, + "write": 1 + } + ], + "quick_entry": 1, + "read_only": 0, + "read_only_onload": 0, + "sort_field": "modified", + "sort_order": "DESC", + "track_seen": 0 +} \ No newline at end of file diff --git a/erpnext/schools/doctype/batch_name/batch_name.py b/erpnext/schools/doctype/batch_name/batch_name.py new file mode 100644 index 00000000000..6776b715685 --- /dev/null +++ b/erpnext/schools/doctype/batch_name/batch_name.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# For license information, please see license.txt + +from __future__ import unicode_literals +import frappe +from frappe.model.document import Document + +class BatchName(Document): + pass diff --git a/erpnext/schools/doctype/batch_name/test_batch_name.py b/erpnext/schools/doctype/batch_name/test_batch_name.py new file mode 100644 index 00000000000..ecb0c4bce37 --- /dev/null +++ b/erpnext/schools/doctype/batch_name/test_batch_name.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt +from __future__ import unicode_literals + +import frappe +import unittest + +# test_records = frappe.get_test_records('Batch Name') + +class TestBatchName(unittest.TestCase): + pass diff --git a/erpnext/schools/doctype/program_enrollment/program_enrollment.json b/erpnext/schools/doctype/program_enrollment/program_enrollment.json index 8fed22884b5..e7269f010c9 100644 --- a/erpnext/schools/doctype/program_enrollment/program_enrollment.json +++ b/erpnext/schools/doctype/program_enrollment/program_enrollment.json @@ -99,6 +99,35 @@ "set_only_once": 0, "unique": 0 }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "columns": 0, + "fieldname": "student_batch_name", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "ignore_xss_filter": 0, + "in_filter": 0, + "in_list_view": 0, + "in_standard_filter": 0, + "label": "Student Batch Name", + "length": 0, + "no_copy": 0, + "options": "Student Batch Name", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "remember_last_selected_value": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, { "allow_on_submit": 0, "bold": 0, @@ -340,7 +369,7 @@ "istable": 0, "max_attachments": 0, "menu_index": 0, - "modified": "2016-11-07 05:25:17.473070", + "modified": "2016-11-18 14:20:10.023790", "modified_by": "Administrator", "module": "Schools", "name": "Program Enrollment",