diff --git a/crm/fcrm/doctype/crm_list_view_settings/__init__.py b/crm/fcrm/doctype/crm_list_view_settings/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/crm/fcrm/doctype/crm_list_view_settings/crm_list_view_settings.js b/crm/fcrm/doctype/crm_list_view_settings/crm_list_view_settings.js new file mode 100644 index 00000000..87850935 --- /dev/null +++ b/crm/fcrm/doctype/crm_list_view_settings/crm_list_view_settings.js @@ -0,0 +1,8 @@ +// Copyright (c) 2023, Frappe Technologies Pvt. Ltd. and contributors +// For license information, please see license.txt + +// frappe.ui.form.on("CRM List View Settings", { +// refresh(frm) { + +// }, +// }); diff --git a/crm/fcrm/doctype/crm_list_view_settings/crm_list_view_settings.json b/crm/fcrm/doctype/crm_list_view_settings/crm_list_view_settings.json new file mode 100644 index 00000000..47675244 --- /dev/null +++ b/crm/fcrm/doctype/crm_list_view_settings/crm_list_view_settings.json @@ -0,0 +1,52 @@ +{ + "actions": [], + "allow_rename": 1, + "autoname": "prompt", + "creation": "2023-11-27 16:29:10.993403", + "doctype": "DocType", + "engine": "InnoDB", + "field_order": [ + "user", + "columns" + ], + "fields": [ + { + "fieldname": "columns", + "fieldtype": "Code", + "label": "Columns" + }, + { + "fieldname": "user", + "fieldtype": "Link", + "label": "User", + "options": "User" + } + ], + "index_web_pages_for_search": 1, + "links": [], + "modified": "2023-11-27 16:34:16.393091", + "modified_by": "Administrator", + "module": "FCRM", + "name": "CRM List View Settings", + "naming_rule": "Set by user", + "owner": "Administrator", + "permissions": [ + { + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "share": 1, + "write": 1 + } + ], + "read_only": 1, + "sort_field": "modified", + "sort_order": "DESC", + "states": [], + "track_changes": 1 +} \ No newline at end of file diff --git a/crm/fcrm/doctype/crm_list_view_settings/crm_list_view_settings.py b/crm/fcrm/doctype/crm_list_view_settings/crm_list_view_settings.py new file mode 100644 index 00000000..e388373a --- /dev/null +++ b/crm/fcrm/doctype/crm_list_view_settings/crm_list_view_settings.py @@ -0,0 +1,9 @@ +# Copyright (c) 2023, Frappe Technologies Pvt. Ltd. and contributors +# For license information, please see license.txt + +# import frappe +from frappe.model.document import Document + + +class CRMListViewSettings(Document): + pass diff --git a/crm/fcrm/doctype/crm_list_view_settings/test_crm_list_view_settings.py b/crm/fcrm/doctype/crm_list_view_settings/test_crm_list_view_settings.py new file mode 100644 index 00000000..d99027bc --- /dev/null +++ b/crm/fcrm/doctype/crm_list_view_settings/test_crm_list_view_settings.py @@ -0,0 +1,9 @@ +# Copyright (c) 2023, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +# import frappe +from frappe.tests.utils import FrappeTestCase + + +class TestCRMListViewSettings(FrappeTestCase): + pass