Prefixed all doctypes with Member

This commit is contained in:
2025-11-17 16:27:29 +00:00
parent c42a323b08
commit 4c255400a7
73 changed files with 178 additions and 178 deletions

View File

@@ -1 +1 @@
__version__ = "0.0.11"
__version__ = "0.0.20"

View File

@@ -1,9 +0,0 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class CorporateDocument(Document):
pass

View File

@@ -1,9 +0,0 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class FoodProtectionManagerRecord(Document):
pass

View File

@@ -1,9 +0,0 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class InspectionRecord(Document):
pass

View File

@@ -1,9 +0,0 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class InsuranceRecord(Document):
pass

View File

@@ -22,7 +22,7 @@
"modified": "2025-11-15 09:21:19.009612",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Associate List",
"name": "Member Associate List",
"naming_rule": "Random",
"owner": "Administrator",
"permissions": [],

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class MemberAssociateList(Document):
pass

View File

@@ -1,7 +1,7 @@
// Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
// For license information, please see license.txt
// frappe.ui.form.on("Booked Group", {
// frappe.ui.form.on("Member Booked Group", {
// refresh(frm) {
// },

View File

@@ -35,7 +35,7 @@
"modified": "2025-11-13 23:28:08.843972",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Booked Group",
"name": "Member Booked Group",
"naming_rule": "By fieldname",
"owner": "Administrator",
"permissions": [

View File

@@ -5,5 +5,5 @@
from frappe.model.document import Document
class AssociateList(Document):
class MemberBookedGroup(Document):
pass

View File

@@ -5,5 +5,5 @@
from frappe.tests.utils import FrappeTestCase
class TestInspectionRecord(FrappeTestCase):
class TestMemberBookedGroup(FrappeTestCase):
pass

View File

@@ -13,17 +13,17 @@
"fieldname": "booked_group",
"fieldtype": "Link",
"label": "Group",
"options": "Booked Group"
"options": "Member Booked Group"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2025-11-13 23:22:59.561662",
"modified": "2025-11-17 10:59:02.274676",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Booked GroupId",
"name": "Member Booked GroupId",
"owner": "Administrator",
"permissions": [],
"row_format": "Dynamic",

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class MemberBookedGroupId(Document):
pass

View File

@@ -1,7 +1,7 @@
// Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
// For license information, please see license.txt
// frappe.ui.form.on("Insurance Record", {
// frappe.ui.form.on("Member Booked Member", {
// refresh(frm) {
// },

View File

@@ -85,7 +85,7 @@
"fieldname": "groupid",
"fieldtype": "Table MultiSelect",
"label": "Groups",
"options": "Booked GroupId",
"options": "Member Booked GroupId",
"reqd": 1
},
{
@@ -112,10 +112,10 @@
"link_fieldname": "member_id"
}
],
"modified": "2025-11-16 17:46:12.905209",
"modified": "2025-11-17 10:59:16.176493",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Booked Member",
"name": "Member Booked Member",
"naming_rule": "Expression",
"owner": "Administrator",
"permissions": [],

View File

@@ -5,5 +5,5 @@
from frappe.model.document import Document
class BookedMember(Document):
class MemberBookedMember(Document):
pass

View File

@@ -5,5 +5,5 @@
from frappe.tests.utils import FrappeTestCase
class TestBookedGroup(FrappeTestCase):
class TestMemberBookedMember(FrappeTestCase):
pass

View File

@@ -45,7 +45,7 @@
"modified": "2025-11-15 13:29:43.848375",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Corporate Document",
"name": "Member Corporate Document",
"naming_rule": "Expression",
"owner": "Administrator",
"permissions": [],

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class MemberCorporateDocument(Document):
pass

View File

@@ -68,7 +68,7 @@
"modified": "2025-11-15 23:01:35.816996",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Food Protection Manager Record",
"name": "Member Food Protection Manager Record",
"naming_rule": "Expression",
"owner": "Administrator",
"permissions": [],

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class MemberFoodProtectionManagerRecord(Document):
pass

View File

@@ -0,0 +1,8 @@
// Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
// For license information, please see license.txt
// frappe.ui.form.on("Member Inspection Record", {
// refresh(frm) {
// },
// });

View File

@@ -75,7 +75,7 @@
"modified": "2025-11-15 13:29:05.232772",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Inspection Record",
"name": "Member Inspection Record",
"naming_rule": "Expression",
"owner": "Administrator",
"permissions": [],

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class MemberInspectionRecord(Document):
pass

View File

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

View File

@@ -0,0 +1,8 @@
// Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
// For license information, please see license.txt
// frappe.ui.form.on("Member Insurance Record", {
// refresh(frm) {
// },
// });

View File

@@ -58,10 +58,10 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2025-11-15 22:00:50.511102",
"modified": "2025-11-17 07:27:50.699563",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Insurance Record",
"name": "Member Insurance Record",
"naming_rule": "Expression",
"owner": "Administrator",
"permissions": [],

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class MemberInsuranceRecord(Document):
pass

View File

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

View File

@@ -42,7 +42,7 @@
"modified": "2025-11-15 13:27:43.592410",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Menu",
"name": "Member Menu",
"naming_rule": "Expression",
"owner": "Administrator",
"permissions": [],

View File

@@ -5,5 +5,5 @@
from frappe.model.document import Document
class Menu(Document):
class MemberMenu(Document):
pass

View File

@@ -1,7 +1,7 @@
// Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
// For license information, please see license.txt
// frappe.ui.form.on("Booked Member", {
// frappe.ui.form.on("Member Offboarding", {
// refresh(frm) {
// },

View File

@@ -24,7 +24,7 @@
"modified": "2025-11-16 17:25:37.594723",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Offboarding",
"name": "Member Offboarding",
"owner": "Administrator",
"permissions": [
{

View File

@@ -5,5 +5,5 @@
from frappe.model.document import Document
class BookedGroupId(Document):
class MemberOffboarding(Document):
pass

View File

@@ -5,5 +5,5 @@
from frappe.tests.utils import FrappeTestCase
class TestBookedMember(FrappeTestCase):
class TestMemberOffboarding(FrappeTestCase):
pass

View File

@@ -1,7 +1,7 @@
// Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
// For license information, please see license.txt
// frappe.ui.form.on("Inspection Record", {
// frappe.ui.form.on("Member Onboarding", {
// refresh(frm) {
// },

View File

@@ -93,7 +93,7 @@
"modified": "2025-11-16 17:25:17.738693",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Onboarding",
"name": "Member Onboarding",
"naming_rule": "By fieldname",
"owner": "Administrator",
"permissions": [

View File

@@ -5,5 +5,5 @@
from frappe.model.document import Document
class BookedGroup(Document):
class MemberOnboarding(Document):
pass

View File

@@ -5,5 +5,5 @@
from frappe.tests.utils import FrappeTestCase
class TestInsuranceRecord(FrappeTestCase):
class TestMemberOnboarding(FrappeTestCase):
pass

View File

@@ -226,44 +226,44 @@
{
"fieldname": "table_corpdoc",
"fieldtype": "Table",
"options": "Corporate Document"
"options": "Member Corporate Document"
},
{
"fieldname": "table_manager",
"fieldtype": "Table",
"options": "Food Protection Manager Record"
"options": "Member Food Protection Manager Record"
},
{
"fieldname": "table_insurance",
"fieldtype": "Table",
"options": "Insurance Record"
"options": "Member Insurance Record"
},
{
"fieldname": "table_inspection",
"fieldtype": "Table",
"options": "Inspection Record"
"options": "Member Inspection Record"
},
{
"fieldname": "table_menu",
"fieldtype": "Table",
"options": "Menu"
"options": "Member Menu"
},
{
"fieldname": "table_associate",
"fieldtype": "Table",
"options": "Associate List"
"options": "Member Associate List"
},
{
"fieldname": "table_unifi",
"fieldtype": "Table",
"label": "Access Cards",
"options": "UniFi Access Profile"
"options": "Member UniFi Access Profile"
},
{
"fieldname": "table_booked_member",
"fieldtype": "Table",
"label": "Booked Configuration",
"options": "Booked Member"
"options": "Member Booked Member"
},
{
"fieldname": "facility_access_section",
@@ -295,11 +295,11 @@
},
{
"group": "User",
"link_doctype": "Onboarding",
"link_doctype": "Member Onboarding",
"link_fieldname": "member_id"
}
],
"modified": "2025-11-15 23:05:21.558545",
"modified": "2025-11-17 11:01:41.601385",
"modified_by": "Administrator",
"module": "Member Management",
"name": "Member Profile",

View File

@@ -0,0 +1,8 @@
// Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
// For license information, please see license.txt
// frappe.ui.form.on("Member UniFi Access Profile", {
// refresh(frm) {
// },
// });

View File

@@ -104,7 +104,7 @@
"modified": "2025-11-15 09:19:18.809893",
"modified_by": "Administrator",
"module": "Member Management",
"name": "UniFi Access Profile",
"name": "Member UniFi Access Profile",
"naming_rule": "Expression",
"owner": "Administrator",
"permissions": [],

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class MemberUniFiAccessProfile(Document):
pass

View File

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

View File

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

View File

@@ -1,9 +0,0 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class Offboarding(Document):
pass

View File

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

View File

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

View File

@@ -1,9 +0,0 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class Onboarding(Document):
pass

View File

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

View File

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

View File

@@ -1,8 +0,0 @@
// Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
// For license information, please see license.txt
// frappe.ui.form.on("UniFi Access Profile", {
// refresh(frm) {
// },
// });

View File

@@ -1,9 +0,0 @@
# Copyright (c) 2025, Haddon Kitchen Incubator LLC and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class UniFiAccessProfile(Document):
pass

View File

@@ -42,7 +42,7 @@
"list_title": "Member Profile",
"login_required": 1,
"max_attachment_size": 0,
"modified": "2025-11-15 22:41:22.343092",
"modified": "2025-11-17 11:21:22.471775",
"modified_by": "Administrator",
"module": "Member Management",
"name": "associates",
@@ -74,7 +74,7 @@
"hidden": 0,
"max_length": 0,
"max_value": 0,
"options": "Associate List",
"options": "Member Associate List",
"precision": "",
"read_only": 0,
"reqd": 0,

View File

@@ -42,7 +42,7 @@
"list_title": "Member Profile",
"login_required": 1,
"max_attachment_size": 0,
"modified": "2025-11-15 22:44:37.196062",
"modified": "2025-11-17 11:21:39.245048",
"modified_by": "Administrator",
"module": "Member Management",
"name": "corporate-documents",
@@ -76,7 +76,7 @@
"hidden": 0,
"max_length": 0,
"max_value": 0,
"options": "Corporate Document",
"options": "Member Corporate Document",
"precision": "",
"read_only": 0,
"reqd": 0,

View File

@@ -42,7 +42,7 @@
"list_title": "Member Profile",
"login_required": 1,
"max_attachment_size": 0,
"modified": "2025-11-15 22:47:02.068278",
"modified": "2025-11-17 11:22:40.022486",
"modified_by": "Administrator",
"module": "Member Management",
"name": "food-manager-records",
@@ -74,7 +74,7 @@
"hidden": 0,
"max_length": 0,
"max_value": 0,
"options": "Food Protection Manager Record",
"options": "Member Food Protection Manager Record",
"precision": "",
"read_only": 0,
"reqd": 0,

View File

@@ -42,7 +42,7 @@
"list_title": "Member Profile",
"login_required": 1,
"max_attachment_size": 0,
"modified": "2025-11-15 22:44:59.335692",
"modified": "2025-11-17 11:22:24.815914",
"modified_by": "Administrator",
"module": "Member Management",
"name": "inspection-records",
@@ -75,7 +75,7 @@
"label": "",
"max_length": 0,
"max_value": 0,
"options": "Inspection Record",
"options": "Member Inspection Record",
"precision": "",
"read_only": 0,
"reqd": 0,

View File

@@ -42,7 +42,7 @@
"list_title": "Member Profile",
"login_required": 1,
"max_attachment_size": 0,
"modified": "2025-11-15 23:08:05.747355",
"modified": "2025-11-17 11:23:12.673485",
"modified_by": "Administrator",
"module": "Member Management",
"name": "insurance",
@@ -74,7 +74,7 @@
"hidden": 0,
"max_length": 0,
"max_value": 0,
"options": "Insurance Record",
"options": "Member Insurance Record",
"precision": "",
"read_only": 0,
"reqd": 0,

View File

@@ -42,13 +42,13 @@
"list_title": "Member Profile",
"login_required": 1,
"max_attachment_size": 0,
"modified": "2025-11-15 22:47:59.057218",
"modified": "2025-11-17 11:19:01.733553",
"modified_by": "Administrator",
"module": "Member Management",
"name": "member-profile",
"owner": "Administrator",
"published": 1,
"route": "profile",
"route": "profile-member",
"show_attachments": 0,
"show_list": 0,
"show_sidebar": 1,
@@ -170,7 +170,7 @@
"hidden": 0,
"max_length": 0,
"max_value": 0,
"options": "Corporate Document",
"options": "Member Corporate Document",
"precision": "",
"read_only": 0,
"reqd": 0,
@@ -196,7 +196,7 @@
"hidden": 0,
"max_length": 0,
"max_value": 0,
"options": "Food Protection Manager Record",
"options": "Member Food Protection Manager Record",
"precision": "",
"read_only": 0,
"reqd": 0,
@@ -222,7 +222,7 @@
"hidden": 0,
"max_length": 0,
"max_value": 0,
"options": "Insurance Record",
"options": "Member Insurance Record",
"precision": "",
"read_only": 0,
"reqd": 0,
@@ -248,7 +248,7 @@
"hidden": 0,
"max_length": 0,
"max_value": 0,
"options": "Inspection Record",
"options": "Member Inspection Record",
"precision": "",
"read_only": 0,
"reqd": 0,
@@ -275,7 +275,7 @@
"label": "Menus",
"max_length": 0,
"max_value": 0,
"options": "Menu",
"options": "Member Menu",
"precision": "",
"read_only": 0,
"reqd": 0,
@@ -301,7 +301,7 @@
"hidden": 0,
"max_length": 0,
"max_value": 0,
"options": "Associate List",
"options": "Member Associate List",
"precision": "",
"read_only": 0,
"reqd": 0,

View File

@@ -42,7 +42,7 @@
"list_title": "Member Profile",
"login_required": 1,
"max_attachment_size": 0,
"modified": "2025-11-15 22:44:51.360993",
"modified": "2025-11-17 11:21:47.541956",
"modified_by": "Administrator",
"module": "Member Management",
"name": "menu",
@@ -75,7 +75,7 @@
"label": "",
"max_length": 0,
"max_value": 0,
"options": "Menu",
"options": "Member Menu",
"precision": "",
"read_only": 0,
"reqd": 0,

View File

@@ -18,7 +18,7 @@
"list_columns": [],
"login_required": 1,
"max_attachment_size": 0,
"modified": "2025-11-15 22:46:20.786299",
"modified": "2025-11-17 11:17:46.285522",
"modified_by": "Administrator",
"module": "Member Management",
"name": "provisioning-information",
@@ -38,7 +38,7 @@
"label": "Access Cards",
"max_length": 0,
"max_value": 0,
"options": "UniFi Access Profile",
"options": "Member UniFi Access Profile",
"precision": "",
"read_only": 0,
"reqd": 0,
@@ -65,7 +65,7 @@
"label": "Booked Configuration",
"max_length": 0,
"max_value": 0,
"options": "Booked Member",
"options": "Member Booked Member",
"precision": "",
"read_only": 0,
"reqd": 0,