Skip to content
Open
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
9 changes: 8 additions & 1 deletion erpnext/projects/doctype/project_type/project_type.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"field_order": [
"project_type",
"description",
"disabled",
"column_break_3",
"claim_billing_type",
"sec_defaults",
Expand Down Expand Up @@ -120,10 +121,16 @@
"fieldname": "appointment_not_required",
"fieldtype": "Check",
"label": "Bypass Mandatory Appointment Requirement"
},
{
"default": "0",
"fieldname": "disabled",
"fieldtype": "Check",
"label": "Disabled"
}
],
"links": [],
"modified": "2023-10-31 15:26:51.368292",
"modified": "2025-02-28 18:18:46.417895",
"modified_by": "Administrator",
"module": "Projects",
"name": "Project Type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,10 @@ def get_columns(self):
{
"label": _("Contact Remarks"),
"fieldname": "contact_remarks",
"fieldtype": "Data",
"fieldtype": "Select",
"width": 200,
"editable": 1
"editable": 1,
"options": ["Not responding", "Invalid Number", "Followup"],
},
{
"label": _("Feedback Date/Time"),
Expand All @@ -241,9 +242,10 @@ def get_columns(self):
{
"label": _("Customer Feedback"),
"fieldname": "customer_feedback",
"fieldtype": "Data",
"width": 300 ,
"editable": 1
"fieldtype": "Select",
"width": 300,
"editable": 1,
"options": ["Highly Satisfied", "Satisfied", "Neutral", "Unsatisfied", "Highly Unsatisfied"],
},
]
self.columns = columns