Added missing Bid Meeting Note Doctype to codebase.
This commit is contained in:
parent
c5da0a090d
commit
120693b62b
5 changed files with 102 additions and 0 deletions
0
custom_ui/custom_ui/doctype/bid_meeting_note/__init__.py
Normal file
0
custom_ui/custom_ui/doctype/bid_meeting_note/__init__.py
Normal file
|
|
@ -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) {
|
||||||
|
|
||||||
|
// },
|
||||||
|
// });
|
||||||
|
|
@ -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": []
|
||||||
|
}
|
||||||
|
|
@ -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
|
||||||
|
|
@ -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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue