增加Local Tool

This commit is contained in:
jingrow 2025-11-21 11:31:19 +08:00
parent 546ed0582f
commit a2f74af087
5 changed files with 183 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// Copyright (c) 2025, Jingrow and contributors
// For license information, please see license.txt
// jingrow.ui.form.on("Local Tool", {
// refresh(frm) {
// },
// });

View File

@ -0,0 +1,138 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2025-10-22 15:50:31.087391",
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
"tool_name",
"title",
"subtitle",
"public",
"enabled",
"column_break_5",
"status",
"file_url",
"repository_url",
"team",
"tool_image",
"section_break_otbv",
"description"
],
"fields": [
{
"fieldname": "team",
"fieldtype": "Link",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "Team",
"options": "Team",
"read_only": 1
},
{
"default": "0",
"fieldname": "public",
"fieldtype": "Check",
"label": "Public"
},
{
"fieldname": "column_break_5",
"fieldtype": "Column Break"
},
{
"default": "1",
"fieldname": "enabled",
"fieldtype": "Check",
"label": "Enabled"
},
{
"fieldname": "section_break_otbv",
"fieldtype": "Section Break"
},
{
"fieldname": "description",
"fieldtype": "Jeditor",
"label": "Description"
},
{
"fieldname": "repository_url",
"fieldtype": "Data",
"label": "Repository URL"
},
{
"fieldname": "file_url",
"fieldtype": "Data",
"label": "File URL"
},
{
"fieldname": "title",
"fieldtype": "Data",
"in_list_view": 1,
"label": "Title",
"reqd": 1
},
{
"fieldname": "status",
"fieldtype": "Select",
"label": "Status",
"options": "Pending Review\nPublished\nUnpublished\nDraft"
},
{
"fieldname": "subtitle",
"fieldtype": "Small Text",
"label": "Subtitle"
},
{
"fieldname": "tool_name",
"fieldtype": "Data",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "Tool Name",
"reqd": 1,
"unique": 1
},
{
"fieldname": "tool_image",
"fieldtype": "Attach Image",
"label": "Tool Image"
}
],
"links": [],
"modified": "2025-11-21 11:26:56.096514",
"modified_by": "Administrator",
"module": "Jcloud",
"name": "Local Tool",
"owner": "Administrator",
"pagetype": "PageType",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"share": 1,
"write": 1
},
{
"create": 1,
"read": 1,
"role": "Jcloud Admin"
},
{
"create": 1,
"read": 1,
"role": "Jcloud Member"
}
],
"row_format": "Dynamic",
"show_title_field_in_link": 1,
"sort_field": "modified",
"sort_order": "DESC",
"states": [],
"title_field": "title",
"track_changes": 1
}

View File

@ -0,0 +1,28 @@
# Copyright (c) 2025, Jingrow and contributors
# For license information, please see license.txt
# import jingrow
from jingrow.model.page import Page
class LocalTool(Page):
# begin: auto-generated types
# This code is auto-generated. Do not modify anything in this block.
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from jingrow.types import DF
enabled: DF.Check
file_url: DF.Data | None
public: DF.Check
repository_url: DF.Data | None
status: DF.Literal["Pending Review", "Published", "Unpublished", "Draft"]
subtitle: DF.SmallText | None
team: DF.Link | None
title: DF.Data
tool_image: DF.AttachImage | None
tool_name: DF.Data
# end: auto-generated types
pass

View File

@ -0,0 +1,9 @@
# Copyright (c) 2025, Jingrow and Contributors
# See license.txt
# import jingrow
from jingrow.tests.utils import JingrowTestCase
class TestLocalTool(JingrowTestCase):
pass