forked from frappe/crm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: created crm settings and added restore defaults button
- Loading branch information
1 parent
5a93870
commit 51db776
Showing
5 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |