diff --git a/erpnext/setup/doctype/print_heading/README.md b/erpnext/setup/doctype/print_heading/README.md deleted file mode 100644 index 2cd60a4cdba..00000000000 --- a/erpnext/setup/doctype/print_heading/README.md +++ /dev/null @@ -1 +0,0 @@ -Custom title for print main heading. e.g. "Pro Forma Invoice" \ No newline at end of file diff --git a/erpnext/setup/doctype/print_heading/__init__.py b/erpnext/setup/doctype/print_heading/__init__.py deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/erpnext/setup/doctype/print_heading/print_heading.js b/erpnext/setup/doctype/print_heading/print_heading.js deleted file mode 100644 index 273e30fd197..00000000000 --- a/erpnext/setup/doctype/print_heading/print_heading.js +++ /dev/null @@ -1,7 +0,0 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -// License: GNU General Public License v3. See license.txt - -//--------- ONLOAD ------------- -cur_frm.cscript.onload = function (doc, cdt, cdn) {}; - -cur_frm.cscript.refresh = function (doc, cdt, cdn) {}; diff --git a/erpnext/setup/doctype/print_heading/print_heading.json b/erpnext/setup/doctype/print_heading/print_heading.json deleted file mode 100644 index 6b49b6f32af..00000000000 --- a/erpnext/setup/doctype/print_heading/print_heading.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "actions": [], - "allow_import": 1, - "allow_rename": 1, - "autoname": "field:print_heading", - "creation": "2013-01-10 16:34:24", - "doctype": "DocType", - "document_type": "Setup", - "engine": "InnoDB", - "field_order": [ - "print_heading", - "description" - ], - "fields": [ - { - "allow_on_submit": 1, - "fieldname": "print_heading", - "fieldtype": "Data", - "in_filter": 1, - "in_list_view": 1, - "label": "Print Heading", - "oldfieldname": "print_heading", - "oldfieldtype": "Data", - "reqd": 1, - "unique": 1 - }, - { - "fieldname": "description", - "fieldtype": "Small Text", - "in_list_view": 1, - "label": "Description", - "oldfieldname": "description", - "oldfieldtype": "Small Text", - "width": "300px" - } - ], - "icon": "fa fa-font", - "idx": 1, - "links": [], - "modified": "2024-03-27 13:10:18.334668", - "modified_by": "Administrator", - "module": "Setup", - "name": "Print Heading", - "naming_rule": "By fieldname", - "owner": "Administrator", - "permissions": [ - { - "create": 1, - "delete": 1, - "email": 1, - "print": 1, - "read": 1, - "report": 1, - "role": "System Manager", - "share": 1, - "write": 1 - }, - { - "read": 1, - "role": "Desk User" - } - ], - "quick_entry": 1, - "search_fields": "print_heading", - "sort_field": "creation", - "sort_order": "DESC", - "states": [] -} \ No newline at end of file diff --git a/erpnext/setup/doctype/print_heading/print_heading.py b/erpnext/setup/doctype/print_heading/print_heading.py deleted file mode 100644 index 8e1a8fba2f1..00000000000 --- a/erpnext/setup/doctype/print_heading/print_heading.py +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -# License: GNU General Public License v3. See license.txt - - -from frappe.model.document import Document - - -class PrintHeading(Document): - # begin: auto-generated types - # This code is auto-generated. Do not modify anything in this block. - - from typing import TYPE_CHECKING - - if TYPE_CHECKING: - from frappe.types import DF - - description: DF.SmallText | None - print_heading: DF.Data - # end: auto-generated types - - pass diff --git a/erpnext/setup/doctype/print_heading/test_print_heading.py b/erpnext/setup/doctype/print_heading/test_print_heading.py deleted file mode 100644 index 2c0da779cab..00000000000 --- a/erpnext/setup/doctype/print_heading/test_print_heading.py +++ /dev/null @@ -1,4 +0,0 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -# License: GNU General Public License v3. See license.txt - -import frappe diff --git a/erpnext/setup/doctype/print_heading/test_records.json b/erpnext/setup/doctype/print_heading/test_records.json deleted file mode 100644 index 479c38ad984..00000000000 --- a/erpnext/setup/doctype/print_heading/test_records.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - { - "print_heading": "_Test Print Heading" - } -] \ No newline at end of file