Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions av_tools/compliance/doctype/license_type/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright (c) 2026, Aakvatech and contributors
# For license information, please see license.txt
8 changes: 8 additions & 0 deletions av_tools/compliance/doctype/license_type/license_type.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright (c) 2026, Aakvatech and contributors
// For license information, please see license.txt

// frappe.ui.form.on("License Type", {
// refresh(frm) {

// },
// });
53 changes: 53 additions & 0 deletions av_tools/compliance/doctype/license_type/license_type.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"actions": [],
"allow_rename": 1,
"autoname": "Prompt",
"creation": "2026-05-06 13:12:00",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"disabled",
"description"
],
"fields": [
{
"default": "0",
"fieldname": "disabled",
"fieldtype": "Check",
"label": "Disabled"
},
{
"allow_in_quick_entry": 1,
"fieldname": "description",
"fieldtype": "Small Text",
"label": "Description"
}
],
"links": [],
"modified": "2026-05-06 13:50:46.572209",
"modified_by": "Administrator",
"module": "Compliance",
"name": "License Type",
"naming_rule": "Set by user",
"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,
"row_format": "Dynamic",
"sort_field": "creation",
"sort_order": "DESC",
"states": [],
"track_changes": 1
}
8 changes: 8 additions & 0 deletions av_tools/compliance/doctype/license_type/license_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright (c) 2026, Aakvatech and contributors
# For license information, please see license.txt

from frappe.model.document import Document


class LicenseType(Document):
pass
9 changes: 9 additions & 0 deletions av_tools/compliance/doctype/license_type/test_license_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2026, Aakvatech and Contributors
# See license.txt

# import frappe
from frappe.tests.utils import FrappeTestCase


class TestLicenseType(FrappeTestCase):
pass
Loading