Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2024, Sana'a university and contributors
// For license information, please see license.txt

// frappe.ui.form.on("Student Co-Supervisor", {
// frappe.ui.form.on("Accreditation Report", {
// refresh(frm) {

// },
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2024-08-03 22:03:30.487985",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"appoint_supervisor_and_defense",
"program_enrollment",
"research_title_english",
"research_proposal",
"column_break_bmgj",
"student",
"supervisor",
"research_title_arabic",
"section_break_hawp",
"council",
"record_number",
"decision",
"column_break_vzym",
"description"
],
"fields": [
{
"fieldname": "appoint_supervisor_and_defense",
"fieldtype": "Link",
"label": "Appoint Supervisor and Defense",
"options": "Appoint Supervisor and Defense"
},
{
"fetch_from": "appoint_supervisor_and_defense.student",
"fieldname": "student",
"fieldtype": "Data",
"label": "Student",
"read_only": 1
},
{
"fetch_from": "appoint_supervisor_and_defense.supervisor",
"fieldname": "supervisor",
"fieldtype": "Data",
"label": "Supervisor",
"read_only": 1
},
{
"fetch_from": "appoint_supervisor_and_defense.program_enrollment",
"fieldname": "program_enrollment",
"fieldtype": "Data",
"label": "Program Enrollment",
"read_only": 1
},
{
"fetch_from": "appoint_supervisor_and_defense.research_title_english",
"fieldname": "research_title_english",
"fieldtype": "Data",
"label": "Research Title English",
"read_only": 1
},
{
"fetch_from": "appoint_supervisor_and_defense.research_title_arabic",
"fieldname": "research_title_arabic",
"fieldtype": "Data",
"label": "Research Title Arabic",
"read_only": 1
},
{
"fetch_from": "appoint_supervisor_and_defense.research_proposal",
"fieldname": "research_proposal",
"fieldtype": "Attach",
"label": " Research Proposal",
"read_only": 1
},
{
"fieldname": "column_break_bmgj",
"fieldtype": "Column Break"
},
{
"fieldname": "section_break_hawp",
"fieldtype": "Section Break"
},
{
"fieldname": "council",
"fieldtype": "Link",
"label": "Council",
"options": "Employee",
"read_only": 1
},
{
"fieldname": "record_number",
"fieldtype": "Int",
"label": "Record Number",
"read_only": 1
},
{
"fieldname": "decision",
"fieldtype": "Select",
"label": "Decision",
"options": "\nAccepte\nReject",
"read_only": 1
},
{
"fieldname": "description",
"fieldtype": "Small Text",
"label": "Description",
"options": "\n",
"read_only": 1
},
{
"fieldname": "column_break_vzym",
"fieldtype": "Column Break"
}
],
"index_web_pages_for_search": 1,
"links": [],
"modified": "2024-08-03 22:24:05.842809",
"modified_by": "Administrator",
"module": "PSA Registration",
"name": "Accreditation Report",
"owner": "Administrator",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"share": 1,
"write": 1
}
],
"sort_field": "modified",
"sort_order": "DESC",
"states": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
from frappe.model.document import Document


class StudentCoSupervisor(Document):
class AccreditationReport(Document):
pass
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
from frappe.tests.utils import FrappeTestCase


class TestStudentCoSupervisor(FrappeTestCase):
class TestAccreditationReport(FrappeTestCase):
pass
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2024, Sana'a university and contributors
// For license information, please see license.txt

// frappe.ui.form.on("Appoint Student Research", {
// frappe.ui.form.on("Accreditation Report Child", {
// refresh(frm) {

// },
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2024-08-03 22:21:59.709796",
"default_view": "List",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"section_break_hawp",
"council",
"record_number",
"decision",
"column_break_vzym",
"description"
],
"fields": [
{
"fieldname": "section_break_hawp",
"fieldtype": "Section Break"
},
{
"fieldname": "council",
"fieldtype": "Data",
"in_list_view": 1,
"label": "Council",
"options": "Employee",
"read_only": 1
},
{
"fieldname": "record_number",
"fieldtype": "Int",
"in_list_view": 1,
"label": "Record Number",
"read_only": 1
},
{
"fieldname": "decision",
"fieldtype": "Select",
"in_list_view": 1,
"label": "Decision",
"options": "\nAccepte",
"read_only": 1
},
{
"fieldname": "column_break_vzym",
"fieldtype": "Column Break"
},
{
"fieldname": "description",
"fieldtype": "Small Text",
"in_list_view": 1,
"label": "Description",
"options": "\n",
"read_only": 1
}
],
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2024-08-03 22:35:08.328804",
"modified_by": "Administrator",
"module": "PSA Registration",
"name": "Accreditation Report Child",
"owner": "Administrator",
"permissions": [],
"sort_field": "modified",
"sort_order": "DESC",
"states": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
from frappe.model.document import Document


class AppointStudentResearch(Document):
class AccreditationReportChild(Document):
pass
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
from frappe.tests.utils import FrappeTestCase


class TestAppointStudentResearch(FrappeTestCase):
class TestAccreditationReportChild(FrappeTestCase):
pass
Loading