added doctype to version control

This commit is contained in:
Ben Nilsen 2026-01-30 12:11:46 -05:00
parent d49b834fef
commit 1f416302d2
6 changed files with 94 additions and 0 deletions

View File

View File

@ -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) {
// },
// });

View File

@ -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": []
}

View File

@ -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

View File

@ -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