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 Telephony
Bulk Transaction Bulk Transaction
Subcontracting Subcontracting
Master Branch Module Programming Module

View File

@ -1,7 +1,7 @@
// Copyright (c) 2024, Frappe Technologies Pvt. Ltd. and contributors // Copyright (c) 2024, Frappe Technologies Pvt. Ltd. and contributors
// For license information, please see license.txt // For license information, please see license.txt
// frappe.ui.form.on("Master Branch Doctype", { // frappe.ui.form.on("Programming Doctype", {
// refresh(frm) { // refresh(frm) {
// }, // },

View File

@ -1,25 +1,25 @@
{ {
"actions": [], "actions": [],
"allow_rename": 1, "allow_rename": 1,
"creation": "2024-05-22 05:06:27.536438", "creation": "2024-05-22 12:40:16.572357",
"doctype": "DocType", "doctype": "DocType",
"engine": "InnoDB", "engine": "InnoDB",
"field_order": [ "field_order": [
"custom_name" "custom_first_name"
], ],
"fields": [ "fields": [
{ {
"fieldname": "custom_name", "fieldname": "custom_first_name",
"fieldtype": "Data", "fieldtype": "Data",
"label": "Name" "label": "First Name"
} }
], ],
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2024-05-22 05:06:47.486113", "modified": "2024-05-22 12:40:42.398692",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Master Branch Module", "module": "Programming Module",
"name": "Master Branch Doctype", "name": "Programming Doctype",
"owner": "Administrator", "owner": "Administrator",
"permissions": [ "permissions": [
{ {

View File

@ -5,7 +5,7 @@
from frappe.model.document import Document from frappe.model.document import Document
class MasterBranchDoctype(Document): class ProgrammingDoctype(Document):
# begin: auto-generated types # begin: auto-generated types
# This code is auto-generated. Do not modify anything in this block. # This code is auto-generated. Do not modify anything in this block.
@ -14,6 +14,6 @@ class MasterBranchDoctype(Document):
if TYPE_CHECKING: if TYPE_CHECKING:
from frappe.types import DF from frappe.types import DF
custom_name: DF.Data | None custom_first_name: DF.Data | None
# end: auto-generated types # end: auto-generated types
pass pass

View File

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