Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions virtual_pro/virtual_pro/doctype/enquiry/enquiry.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,17 +189,17 @@
},
{
"fieldname": "enquiry_potential",
"fieldtype": "Select",
"fieldtype": "Link",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "Enquiry Potential",
"options": "\nNone\nPotential\nLess Potential\nH"
"options": "Enquiry Potential Status"
}
],
"index_web_pages_for_search": 1,
"is_submittable": 1,
"links": [],
"modified": "2025-06-26 08:21:58.136375",
"modified": "2025-06-26 09:42:40.901385",
"modified_by": "Administrator",
"module": "Virtual Pro",
"name": "Enquiry",
Expand All @@ -220,7 +220,6 @@
"write": 1
}
],
"row_format": "Dynamic",
"sort_field": "modified",
"sort_order": "DESC",
"states": []
Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright (c) 2025, sammish and contributors
// For license information, please see license.txt

// frappe.ui.form.on("Enquiry Potential Status", {
// refresh(frm) {

// },
// });
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2025-06-26 09:09:47.895320",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"enquiry_potential_section",
"enquiry_potential"
],
"fields": [
{
"fieldname": "enquiry_potential_section",
"fieldtype": "Section Break",
"label": "Enquiry Potential Status"
},
{
"fieldname": "enquiry_potential",
"fieldtype": "Data",
"label": "Enquiry Potential Status"
}
],
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-06-26 09:42:23.177838",
"modified_by": "Administrator",
"module": "Virtual Pro",
"name": "Enquiry Potential Status",
"owner": "Administrator",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"share": 1,
"write": 1
}
],
"sort_field": "modified",
"sort_order": "DESC",
"states": []
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2025, sammish and contributors
# For license information, please see license.txt

# import frappe
from frappe.model.document import Document


class EnquiryPotentialStatus(Document):
pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2025, sammish and Contributors
# See license.txt

# import frappe
from frappe.tests.utils import FrappeTestCase


class TestEnquiryPotentialStatus(FrappeTestCase):
pass