From 1f416302d28a389c8e7b4af347f196ad0abfdf6d Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 30 Jan 2026 12:11:46 -0500 Subject: [PATCH] added doctype to version control --- custom_ui/custom_ui/doctype/__init__.py | 0 .../doctype/on_site_meeting/__init__.py | 0 .../on_site_meeting/on_site_meeting.js | 8 +++ .../on_site_meeting/on_site_meeting.json | 68 +++++++++++++++++++ .../on_site_meeting/on_site_meeting.py | 9 +++ .../on_site_meeting/test_on_site_meeting.py | 9 +++ 6 files changed, 94 insertions(+) create mode 100644 custom_ui/custom_ui/doctype/__init__.py create mode 100644 custom_ui/custom_ui/doctype/on_site_meeting/__init__.py create mode 100644 custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.js create mode 100644 custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.json create mode 100644 custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.py create mode 100644 custom_ui/custom_ui/doctype/on_site_meeting/test_on_site_meeting.py diff --git a/custom_ui/custom_ui/doctype/__init__.py b/custom_ui/custom_ui/doctype/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/custom_ui/custom_ui/doctype/on_site_meeting/__init__.py b/custom_ui/custom_ui/doctype/on_site_meeting/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.js b/custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.js new file mode 100644 index 0000000..f9c4448 --- /dev/null +++ b/custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.js @@ -0,0 +1,8 @@ +// Copyright (c) 2026, Shiloh Code LLC and contributors +// For license information, please see license.txt + +// frappe.ui.form.on("On-Site Meeting", { +// refresh(frm) { + +// }, +// }); diff --git a/custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.json b/custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.json new file mode 100644 index 0000000..798104d --- /dev/null +++ b/custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.json @@ -0,0 +1,68 @@ +{ + "actions": [], + "allow_rename": 1, + "autoname": "format:{address}-{#####}", + "creation": "2026-01-30 05:04:20.781088", + "doctype": "DocType", + "engine": "InnoDB", + "field_order": [ + "address", + "start_time", + "end_time", + "bid_notes" + ], + "fields": [ + { + "fieldname": "address", + "fieldtype": "Link", + "in_list_view": 1, + "label": "Address", + "options": "Address", + "reqd": 1 + }, + { + "fieldname": "start_time", + "fieldtype": "Datetime", + "in_list_view": 1, + "label": "Start Time" + }, + { + "fieldname": "end_time", + "fieldtype": "Datetime", + "label": "End Time" + }, + { + "fieldname": "bid_notes", + "fieldtype": "Link", + "label": "Bid Notes", + "options": "Bid Meeting Note" + } + ], + "grid_page_length": 50, + "index_web_pages_for_search": 1, + "links": [], + "modified": "2026-01-30 07:03:40.962554", + "modified_by": "Administrator", + "module": "Custom UI", + "name": "On-Site Meeting", + "naming_rule": "Expression", + "owner": "Administrator", + "permissions": [ + { + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "share": 1, + "write": 1 + } + ], + "row_format": "Dynamic", + "sort_field": "modified", + "sort_order": "DESC", + "states": [] +} \ No newline at end of file diff --git a/custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.py b/custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.py new file mode 100644 index 0000000..66a3ba1 --- /dev/null +++ b/custom_ui/custom_ui/doctype/on_site_meeting/on_site_meeting.py @@ -0,0 +1,9 @@ +# Copyright (c) 2026, Shiloh Code LLC and contributors +# For license information, please see license.txt + +# import frappe +from frappe.model.document import Document + + +class OnSiteMeeting(Document): + pass diff --git a/custom_ui/custom_ui/doctype/on_site_meeting/test_on_site_meeting.py b/custom_ui/custom_ui/doctype/on_site_meeting/test_on_site_meeting.py new file mode 100644 index 0000000..240abac --- /dev/null +++ b/custom_ui/custom_ui/doctype/on_site_meeting/test_on_site_meeting.py @@ -0,0 +1,9 @@ +# Copyright (c) 2026, Shiloh Code LLC and Contributors +# See license.txt + +# import frappe +from frappe.tests.utils import FrappeTestCase + + +class TestOnSiteMeeting(FrappeTestCase): + pass