Skip to content

Commit

Permalink
feat: create single doctype for comparator
Browse files Browse the repository at this point in the history
(cherry picked from commit 513f74f)
  • Loading branch information
GursheenK authored and mergify[bot] committed Oct 17, 2023
1 parent cdc16ab commit 5acecf1
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
Empty file.
63 changes: 63 additions & 0 deletions frappe/core/doctype/document_comparator/document_comparator.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"actions": [],
"creation": "2023-08-14 13:06:24.520160",
"default_view": "List",
"doctype": "DocType",
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
"doctype_name",
"column_break_peck",
"document",
"section_break_gppi",
"version_table"
],
"fields": [
{
"fieldname": "doctype_name",
"fieldtype": "Link",
"label": "Doctype",
"options": "DocType"
},
{
"fieldname": "document",
"fieldtype": "Dynamic Link",
"label": "Document",
"options": "doctype_name"
},
{
"fieldname": "column_break_peck",
"fieldtype": "Column Break"
},
{
"fieldname": "section_break_gppi",
"fieldtype": "Section Break"
},
{
"fieldname": "version_table",
"fieldtype": "HTML",
"label": "version_table"
}
],
"hide_toolbar": 1,
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
"modified": "2023-08-14 14:08:19.031748",
"modified_by": "Administrator",
"module": "Core",
"name": "Document Comparator",
"owner": "Administrator",
"permissions": [
{
"email": 1,
"print": 1,
"read": 1,
"role": "System Manager",
"share": 1
}
],
"sort_field": "modified",
"sort_order": "DESC",
"states": []
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2023, Frappe Technologies and Contributors
# See license.txt

# import frappe
from frappe.tests.utils import FrappeTestCase


class TestDocumentComparator(FrappeTestCase):
pass

0 comments on commit 5acecf1

Please sign in to comment.