Compare commits
2 commits
38c2e67d38
...
120693b62b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
120693b62b | ||
|
|
c5da0a090d |
6 changed files with 107 additions and 16 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
|
||||
|
|
@ -48,9 +48,9 @@ def after_migrate():
|
|||
# create_project_templates()
|
||||
create_task_types()
|
||||
# create_tasks()
|
||||
create_bid_meeting_note_form_templates()
|
||||
create_accounts()
|
||||
create_companies()
|
||||
create_accounts()
|
||||
create_bid_meeting_note_form_templates()
|
||||
# init_stripe_accounts()
|
||||
|
||||
# update_address_fields()
|
||||
|
|
@ -876,17 +876,6 @@ def create_companies():
|
|||
'chart_of_accounts': 'Standard',
|
||||
'enable_perpetual_inventory': 1
|
||||
},
|
||||
{
|
||||
'company_name': 'sprinklersnorthwest (Demo)',
|
||||
'abbr': 'SD',
|
||||
'default_currency': 'USD',
|
||||
'country': 'United States',
|
||||
'is_group': 0,
|
||||
'parent_company': None,
|
||||
'create_chart_of_accounts_based_on': 'Standard Template',
|
||||
'chart_of_accounts': 'Standard',
|
||||
'enable_perpetual_inventory': 1
|
||||
},
|
||||
{
|
||||
'company_name': 'Lowe Fencing',
|
||||
'abbr': 'LF',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue