Test push to master repo
This commit is contained in:
parent
867070c6a7
commit
5b33ce7072
@ -18,4 +18,4 @@ Communication
|
||||
Telephony
|
||||
Bulk Transaction
|
||||
Subcontracting
|
||||
Master Branch Module
|
||||
Programming Module
|
0
erpnext/programming_module/doctype/__init__.py
Normal file
0
erpnext/programming_module/doctype/__init__.py
Normal file
@ -1,7 +1,7 @@
|
||||
// Copyright (c) 2024, Frappe Technologies Pvt. Ltd. and contributors
|
||||
// For license information, please see license.txt
|
||||
|
||||
// frappe.ui.form.on("Master Branch Doctype", {
|
||||
// frappe.ui.form.on("Programming Doctype", {
|
||||
// refresh(frm) {
|
||||
|
||||
// },
|
@ -1,25 +1,25 @@
|
||||
{
|
||||
"actions": [],
|
||||
"allow_rename": 1,
|
||||
"creation": "2024-05-22 05:06:27.536438",
|
||||
"creation": "2024-05-22 12:40:16.572357",
|
||||
"doctype": "DocType",
|
||||
"engine": "InnoDB",
|
||||
"field_order": [
|
||||
"custom_name"
|
||||
"custom_first_name"
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"fieldname": "custom_name",
|
||||
"fieldname": "custom_first_name",
|
||||
"fieldtype": "Data",
|
||||
"label": "Name"
|
||||
"label": "First Name"
|
||||
}
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"links": [],
|
||||
"modified": "2024-05-22 05:06:47.486113",
|
||||
"modified": "2024-05-22 12:40:42.398692",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Master Branch Module",
|
||||
"name": "Master Branch Doctype",
|
||||
"module": "Programming Module",
|
||||
"name": "Programming Doctype",
|
||||
"owner": "Administrator",
|
||||
"permissions": [
|
||||
{
|
@ -5,7 +5,7 @@
|
||||
from frappe.model.document import Document
|
||||
|
||||
|
||||
class MasterBranchDoctype(Document):
|
||||
class ProgrammingDoctype(Document):
|
||||
# begin: auto-generated types
|
||||
# This code is auto-generated. Do not modify anything in this block.
|
||||
|
||||
@ -14,6 +14,6 @@ class MasterBranchDoctype(Document):
|
||||
if TYPE_CHECKING:
|
||||
from frappe.types import DF
|
||||
|
||||
custom_name: DF.Data | None
|
||||
custom_first_name: DF.Data | None
|
||||
# end: auto-generated types
|
||||
pass
|
@ -5,5 +5,5 @@
|
||||
from frappe.tests.utils import FrappeTestCase
|
||||
|
||||
|
||||
class TestMasterBranchDoctype(FrappeTestCase):
|
||||
class TestProgrammingDoctype(FrappeTestCase):
|
||||
pass
|
Loading…
Reference in New Issue
Block a user