diff --git a/jcapital/jcapital/pagetype/__init__.py b/jcapital/jcapital/pagetype/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/jcapital/jcapital/pagetype/investor/__init__.py b/jcapital/jcapital/pagetype/investor/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/jcapital/jcapital/pagetype/investor/investor.js b/jcapital/jcapital/pagetype/investor/investor.js new file mode 100644 index 0000000..adbd7b6 --- /dev/null +++ b/jcapital/jcapital/pagetype/investor/investor.js @@ -0,0 +1,8 @@ +// Copyright (c) 2025, Jingrow and contributors +// For license information, please see license.txt + +// jingrow.ui.form.on("Investor", { +// refresh(frm) { + +// }, +// }); diff --git a/jcapital/jcapital/pagetype/investor/investor.json b/jcapital/jcapital/pagetype/investor/investor.json new file mode 100644 index 0000000..18cac0e --- /dev/null +++ b/jcapital/jcapital/pagetype/investor/investor.json @@ -0,0 +1,43 @@ +{ + "actions": [], + "allow_rename": 1, + "creation": "2025-11-15 19:45:22.315890", + "engine": "InnoDB", + "field_order": [ + "title" + ], + "fields": [ + { + "fieldname": "title", + "fieldtype": "Data", + "label": "Title" + } + ], + "grid_page_length": 50, + "index_web_pages_for_search": 1, + "links": [], + "modified": "2025-11-15 19:45:56.502813", + "modified_by": "Administrator", + "module": "Jcapital", + "name": "Investor", + "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 + } + ], + "row_format": "Dynamic", + "sort_field": "modified", + "sort_order": "DESC", + "states": [] +} \ No newline at end of file diff --git a/jcapital/jcapital/pagetype/investor/investor.py b/jcapital/jcapital/pagetype/investor/investor.py new file mode 100644 index 0000000..7b53402 --- /dev/null +++ b/jcapital/jcapital/pagetype/investor/investor.py @@ -0,0 +1,9 @@ +# Copyright (c) 2025, Jingrow and contributors +# For license information, please see license.txt + +# import jingrow +from jingrow.model.page import Page + + +class Investor(Page): + pass diff --git a/jcapital/jcapital/pagetype/investor/test_investor.py b/jcapital/jcapital/pagetype/investor/test_investor.py new file mode 100644 index 0000000..29f73ce --- /dev/null +++ b/jcapital/jcapital/pagetype/investor/test_investor.py @@ -0,0 +1,9 @@ +# Copyright (c) 2025, Jingrow and Contributors +# See license.txt + +# import jingrow +from jingrow.tests.utils import JingrowTestCase + + +class TestInvestor(JingrowTestCase): + pass