add Church Task Doctype

This commit is contained in:
meichthys 2025-12-15 06:05:41 +00:00
parent 59beae0a14
commit 455c7a199f
5 changed files with 196 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// Copyright (c) 2025, meichthys and contributors
// For license information, please see license.txt
// frappe.ui.form.on("Church Task", {
// refresh(frm) {
// },
// });

View File

@ -0,0 +1,170 @@
{
"actions": [],
"allow_import": 1,
"autoname": "autoincrement",
"creation": "2025-12-15 00:41:21.858015",
"description": "Things that need to get done (Like a checklist or ToDo list)",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"section_break_fgnk",
"title",
"due_date",
"assigned_person",
"column_break_yrnx",
"is_group",
"parent_church_task",
"section_break_ysry",
"notes",
"hidden_fields_section",
"old_parent",
"lft",
"rgt"
],
"fields": [
{
"fieldname": "section_break_fgnk",
"fieldtype": "Section Break"
},
{
"fieldname": "lft",
"fieldtype": "Int",
"hidden": 1,
"label": "Left",
"no_copy": 1,
"read_only": 1
},
{
"fieldname": "rgt",
"fieldtype": "Int",
"hidden": 1,
"label": "Right",
"no_copy": 1,
"read_only": 1
},
{
"allow_in_quick_entry": 1,
"default": "0",
"fieldname": "is_group",
"fieldtype": "Check",
"in_preview": 1,
"in_standard_filter": 1,
"label": "Is Group"
},
{
"fieldname": "old_parent",
"fieldtype": "Link",
"label": "Old Parent",
"options": "Church Task"
},
{
"allow_in_quick_entry": 1,
"fieldname": "parent_church_task",
"fieldtype": "Link",
"ignore_user_permissions": 1,
"in_list_view": 1,
"in_preview": 1,
"in_standard_filter": 1,
"label": "Parent Task",
"options": "Church Task"
},
{
"allow_in_quick_entry": 1,
"fieldname": "title",
"fieldtype": "Data",
"in_list_view": 1,
"in_preview": 1,
"label": "Title",
"reqd": 1
},
{
"allow_in_quick_entry": 1,
"fieldname": "due_date",
"fieldtype": "Datetime",
"in_filter": 1,
"in_list_view": 1,
"in_preview": 1,
"in_standard_filter": 1,
"label": "Due Date"
},
{
"allow_in_quick_entry": 1,
"fieldname": "assigned_person",
"fieldtype": "Link",
"in_filter": 1,
"in_list_view": 1,
"in_preview": 1,
"in_standard_filter": 1,
"label": "Assigned Person",
"options": "Church Person"
},
{
"fieldname": "column_break_yrnx",
"fieldtype": "Column Break"
},
{
"fieldname": "section_break_ysry",
"fieldtype": "Section Break"
},
{
"allow_in_quick_entry": 1,
"fieldname": "notes",
"fieldtype": "Text Editor",
"in_list_view": 1,
"in_preview": 1,
"label": "Notes"
},
{
"fieldname": "hidden_fields_section",
"fieldtype": "Section Break",
"hidden": 1,
"label": "Hidden Fields"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"is_tree": 1,
"links": [],
"modified": "2025-12-15 00:59:25.234829",
"modified_by": "Administrator",
"module": "Church Operations",
"name": "Church Task",
"naming_rule": "Autoincrement",
"nsm_parent_field": "parent_church_task",
"owner": "Administrator",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"share": 1,
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "Church Manager",
"share": 1,
"write": 1
}
],
"quick_entry": 1,
"row_format": "Dynamic",
"search_fields": "title, notes",
"show_title_field_in_link": 1,
"sort_field": "modified",
"sort_order": "DESC",
"states": [],
"title_field": "title"
}

View File

@ -0,0 +1,9 @@
# Copyright (c) 2025, meichthys and contributors
# For license information, please see license.txt
# import frappe
from frappe.utils.nestedset import NestedSet
class ChurchTask(NestedSet):
pass

View File

@ -0,0 +1,9 @@
# Copyright (c) 2025, meichthys and Contributors
# See license.txt
# import frappe
from frappe.tests.utils import FrappeTestCase
class TestChurchTask(FrappeTestCase):
pass