Skip to content

Commit

Permalink
fix: created crm settings and added restore defaults button
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Oct 12, 2024
1 parent 5a93870 commit 51db776
Show file tree
Hide file tree
Showing 5 changed files with 103 additions and 0 deletions.
Empty file.
42 changes: 42 additions & 0 deletions crm/fcrm/doctype/fcrm_settings/fcrm_settings.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// Copyright (c) 2024, Frappe Technologies Pvt. Ltd. and contributors
// For license information, please see license.txt

frappe.ui.form.on("FCRM Settings", {
// refresh(frm) {

// },
restore_defaults: function (frm) {
let message = __(
"This will restore (if not exist) all the default statuses, custom fields and layouts. Delete & Restore will delete default layouts and then restore them."
);
let d = new frappe.ui.Dialog({
title: __("Restore Defaults"),
primary_action_label: __("Restore"),
primary_action: () => {
frm.call("restore_defaults", { force: false }, () => {
frappe.show_alert({
message: __(
"Default statuses, custom fields and layouts restored successfully."
),
indicator: "green",
});
});
d.hide();
},
secondary_action_label: __("Delete & Restore"),
secondary_action: () => {
frm.call("restore_defaults", { force: true }, () => {
frappe.show_alert({
message: __(
"Default statuses, custom fields and layouts restored successfully."
),
indicator: "green",
});
});
d.hide();
},
});
d.show();
d.set_message(message);
},
});
40 changes: 40 additions & 0 deletions crm/fcrm/doctype/fcrm_settings/fcrm_settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2024-09-29 13:48:02.715924",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"restore_defaults"
],
"fields": [
{
"fieldname": "restore_defaults",
"fieldtype": "Button",
"label": "Restore Defaults"
}
],
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
"modified": "2024-09-29 13:49:07.835379",
"modified_by": "Administrator",
"module": "FCRM",
"name": "FCRM Settings",
"owner": "Administrator",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"print": 1,
"read": 1,
"role": "System Manager",
"share": 1,
"write": 1
}
],
"sort_field": "creation",
"sort_order": "DESC",
"states": []
}
12 changes: 12 additions & 0 deletions crm/fcrm/doctype/fcrm_settings/fcrm_settings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright (c) 2024, Frappe Technologies Pvt. Ltd. and contributors
# For license information, please see license.txt

import frappe
from frappe.model.document import Document
from crm.install import after_install


class FCRMSettings(Document):
@frappe.whitelist()
def restore_defaults(self, force=False):
after_install(force)
9 changes: 9 additions & 0 deletions crm/fcrm/doctype/fcrm_settings/test_fcrm_settings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2024, Frappe Technologies Pvt. Ltd. and Contributors
# See license.txt

# import frappe
from frappe.tests import UnitTestCase


class TestFCRMSettings(UnitTestCase):
pass

0 comments on commit 51db776

Please sign in to comment.