Ubuntu
3 years ago
11 changed files with 150 additions and 1 deletions
@ -0,0 +1,8 @@ |
|||||
|
// Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors
|
||||
|
// For license information, please see license.txt
|
||||
|
|
||||
|
frappe.ui.form.on('Procedure Name', { |
||||
|
// refresh: function(frm) {
|
||||
|
|
||||
|
// }
|
||||
|
}); |
@ -0,0 +1,51 @@ |
|||||
|
{ |
||||
|
"actions": [], |
||||
|
"allow_import": 1, |
||||
|
"allow_rename": 1, |
||||
|
"autoname": "format:{procedure_name}", |
||||
|
"creation": "2021-12-03 09:33:15.477982", |
||||
|
"doctype": "DocType", |
||||
|
"editable_grid": 1, |
||||
|
"engine": "InnoDB", |
||||
|
"field_order": [ |
||||
|
"procedure_name" |
||||
|
], |
||||
|
"fields": [ |
||||
|
{ |
||||
|
"allow_in_quick_entry": 1, |
||||
|
"fieldname": "procedure_name", |
||||
|
"fieldtype": "Data", |
||||
|
"in_list_view": 1, |
||||
|
"in_preview": 1, |
||||
|
"label": "Procedure Name", |
||||
|
"reqd": 1, |
||||
|
"unique": 1 |
||||
|
} |
||||
|
], |
||||
|
"index_web_pages_for_search": 1, |
||||
|
"links": [], |
||||
|
"modified": "2022-04-09 16:02:41.716744", |
||||
|
"modified_by": "Administrator", |
||||
|
"module": "Masters", |
||||
|
"name": "Procedure Name", |
||||
|
"owner": "Administrator", |
||||
|
"permissions": [ |
||||
|
{ |
||||
|
"create": 1, |
||||
|
"delete": 1, |
||||
|
"email": 1, |
||||
|
"export": 1, |
||||
|
"print": 1, |
||||
|
"read": 1, |
||||
|
"report": 1, |
||||
|
"role": "System Manager", |
||||
|
"share": 1, |
||||
|
"write": 1 |
||||
|
} |
||||
|
], |
||||
|
"quick_entry": 1, |
||||
|
"search_fields": "procedure_name", |
||||
|
"sort_field": "procedure_name", |
||||
|
"sort_order": "ASC", |
||||
|
"title_field": "procedure_name" |
||||
|
} |
@ -0,0 +1,8 @@ |
|||||
|
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
||||
|
# For license information, please see license.txt |
||||
|
|
||||
|
# import frappe |
||||
|
from frappe.model.document import Document |
||||
|
|
||||
|
class ProcedureName(Document): |
||||
|
pass |
@ -0,0 +1,8 @@ |
|||||
|
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and Contributors |
||||
|
# See license.txt |
||||
|
|
||||
|
# import frappe |
||||
|
import unittest |
||||
|
|
||||
|
class TestProcedureName(unittest.TestCase): |
||||
|
pass |
@ -0,0 +1,8 @@ |
|||||
|
// Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors
|
||||
|
// For license information, please see license.txt
|
||||
|
|
||||
|
frappe.ui.form.on('Procedure Step Name', { |
||||
|
// refresh: function(frm) {
|
||||
|
|
||||
|
// }
|
||||
|
}); |
@ -0,0 +1,50 @@ |
|||||
|
{ |
||||
|
"actions": [], |
||||
|
"allow_import": 1, |
||||
|
"autoname": "format:{step_name}", |
||||
|
"creation": "2021-12-03 09:42:59.565222", |
||||
|
"doctype": "DocType", |
||||
|
"editable_grid": 1, |
||||
|
"engine": "InnoDB", |
||||
|
"field_order": [ |
||||
|
"step_name" |
||||
|
], |
||||
|
"fields": [ |
||||
|
{ |
||||
|
"allow_in_quick_entry": 1, |
||||
|
"fieldname": "step_name", |
||||
|
"fieldtype": "Data", |
||||
|
"in_list_view": 1, |
||||
|
"in_preview": 1, |
||||
|
"label": "Step Name", |
||||
|
"reqd": 1, |
||||
|
"unique": 1 |
||||
|
} |
||||
|
], |
||||
|
"index_web_pages_for_search": 1, |
||||
|
"links": [], |
||||
|
"modified": "2022-04-09 16:15:58.462864", |
||||
|
"modified_by": "Administrator", |
||||
|
"module": "Masters", |
||||
|
"name": "Procedure Step Name", |
||||
|
"owner": "Administrator", |
||||
|
"permissions": [ |
||||
|
{ |
||||
|
"create": 1, |
||||
|
"delete": 1, |
||||
|
"email": 1, |
||||
|
"export": 1, |
||||
|
"print": 1, |
||||
|
"read": 1, |
||||
|
"report": 1, |
||||
|
"role": "System Manager", |
||||
|
"share": 1, |
||||
|
"write": 1 |
||||
|
} |
||||
|
], |
||||
|
"quick_entry": 1, |
||||
|
"search_fields": "step_name", |
||||
|
"sort_field": "step_name", |
||||
|
"sort_order": "ASC", |
||||
|
"title_field": "step_name" |
||||
|
} |
@ -0,0 +1,8 @@ |
|||||
|
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and contributors |
||||
|
# For license information, please see license.txt |
||||
|
|
||||
|
# import frappe |
||||
|
from frappe.model.document import Document |
||||
|
|
||||
|
class ProcedureStepName(Document): |
||||
|
pass |
@ -0,0 +1,8 @@ |
|||||
|
# Copyright (c) 2022, Hard n Soft Technologies Pvt Ltd and Contributors |
||||
|
# See license.txt |
||||
|
|
||||
|
# import frappe |
||||
|
import unittest |
||||
|
|
||||
|
class TestProcedureStepName(unittest.TestCase): |
||||
|
pass |
Loading…
Reference in new issue