fix: rename doctype
This commit is contained in:
parent
a7a6f438be
commit
bda868b0c2
7 changed files with 4 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) 2023, Frappe Technologies and contributors
|
||||
// For license information, please see license.txt
|
||||
|
||||
frappe.ui.form.on("Document Comparator", {
|
||||
frappe.ui.form.on("Audit Trail", {
|
||||
refresh(frm) {
|
||||
frm.page.clear_indicator();
|
||||
|
||||
|
|
@ -77,7 +77,7 @@
|
|||
"modified": "2023-08-22 12:12:59.780845",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Core",
|
||||
"name": "Document Comparator",
|
||||
"name": "Audit Trail",
|
||||
"owner": "Administrator",
|
||||
"permissions": [
|
||||
{
|
||||
|
|
@ -9,7 +9,7 @@ from frappe.core.doctype.version.version import get_diff
|
|||
from frappe.model.document import Document
|
||||
|
||||
|
||||
class DocumentComparator(Document):
|
||||
class AuditTrail(Document):
|
||||
# begin: auto-generated types
|
||||
# This code is auto-generated. Do not modify anything in this block.
|
||||
|
||||
|
|
@ -5,7 +5,7 @@ import frappe
|
|||
from frappe.tests.utils import FrappeTestCase
|
||||
|
||||
|
||||
class TestDocumentComparator(FrappeTestCase):
|
||||
class TestAuditTrail(FrappeTestCase):
|
||||
def setUp(self):
|
||||
self.child_doctype = create_custom_child_doctype()
|
||||
self.custom_doctype = create_custom_doctype()
|
||||
Loading…
Add table
Reference in a new issue