Test push to master repo

This commit is contained in:
Landry 2024-05-22 21:43:54 +00:00
parent 867070c6a7
commit 5b33ce7072
8 changed files with 12 additions and 12 deletions

View File

@ -18,4 +18,4 @@ Communication
Telephony
Bulk Transaction
Subcontracting
Master Branch Module
Programming Module

View 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) {
// },

View File

@ -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": [
{

View File

@ -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

View File

@ -5,5 +5,5 @@
from frappe.tests.utils import FrappeTestCase
class TestMasterBranchDoctype(FrappeTestCase):
class TestProgrammingDoctype(FrappeTestCase):
pass