From 120693b62b68d450cecfa6114f7e116bccdedd1c Mon Sep 17 00:00:00 2001 From: rocketdebris Date: Mon, 9 Feb 2026 15:24:32 -0500 Subject: [PATCH] Added missing Bid Meeting Note Doctype to codebase. --- .../doctype/bid_meeting_note/__init__.py | 0 .../bid_meeting_note/bid_meeting_note.js | 8 ++ .../bid_meeting_note/bid_meeting_note.json | 76 +++++++++++++++++++ .../bid_meeting_note/bid_meeting_note.py | 9 +++ .../bid_meeting_note/test_bid_meeting_note.py | 9 +++ 5 files changed, 102 insertions(+) create mode 100644 custom_ui/custom_ui/doctype/bid_meeting_note/__init__.py create mode 100644 custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.js create mode 100644 custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.json create mode 100644 custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.py create mode 100644 custom_ui/custom_ui/doctype/bid_meeting_note/test_bid_meeting_note.py diff --git a/custom_ui/custom_ui/doctype/bid_meeting_note/__init__.py b/custom_ui/custom_ui/doctype/bid_meeting_note/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.js b/custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.js new file mode 100644 index 0000000..d37f646 --- /dev/null +++ b/custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.js @@ -0,0 +1,8 @@ +// Copyright (c) 2026, Shiloh Code LLC and contributors +// For license information, please see license.txt + +// frappe.ui.form.on("Bid Meeting Note", { +// refresh(frm) { + +// }, +// }); diff --git a/custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.json b/custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.json new file mode 100644 index 0000000..42538e0 --- /dev/null +++ b/custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.json @@ -0,0 +1,76 @@ +{ + "actions": [], + "allow_rename": 1, + "creation": "2026-02-09 03:55:26.035639", + "doctype": "DocType", + "engine": "InnoDB", + "field_order": [ + "form_template", + "bid_meeting", + "notes", + "fields", + "quantities" + ], + "fields": [ + { + "fieldname": "form_template", + "fieldtype": "Link", + "in_list_view": 1, + "label": "Form Template", + "options": "Bid Meeting Note Form", + "reqd": 1 + }, + { + "fieldname": "bid_meeting", + "fieldtype": "Link", + "in_list_view": 1, + "label": "Bid Meeting", + "options": "On-Site Meeting", + "reqd": 1 + }, + { + "fieldname": "notes", + "fieldtype": "Small Text", + "label": "Notes" + }, + { + "fieldname": "fields", + "fieldtype": "Table", + "label": "Fields", + "options": "Bid Meeting Note Field" + }, + { + "fieldname": "quantities", + "fieldtype": "Table", + "label": "Quantities", + "options": "Bid Meeting Note Field Quantity" + } + ], + "grid_page_length": 50, + "index_web_pages_for_search": 1, + "links": [], + "modified": "2026-02-09 10:22:58.938177", + "modified_by": "Administrator", + "module": "Custom UI", + "name": "Bid Meeting Note", + "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", + "rows_threshold_for_grid_search": 20, + "sort_field": "modified", + "sort_order": "DESC", + "states": [] +} \ No newline at end of file diff --git a/custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.py b/custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.py new file mode 100644 index 0000000..7fc7911 --- /dev/null +++ b/custom_ui/custom_ui/doctype/bid_meeting_note/bid_meeting_note.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 BidMeetingNote(Document): + pass diff --git a/custom_ui/custom_ui/doctype/bid_meeting_note/test_bid_meeting_note.py b/custom_ui/custom_ui/doctype/bid_meeting_note/test_bid_meeting_note.py new file mode 100644 index 0000000..e70cb71 --- /dev/null +++ b/custom_ui/custom_ui/doctype/bid_meeting_note/test_bid_meeting_note.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 TestBidMeetingNote(FrappeTestCase): + pass