Initial commit

This commit is contained in:
root
2026-01-19 17:44:46 +01:00
commit 823af8b11d
8721 changed files with 1130846 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
{
"view": "advanced:views/dashlets/bpmn-user-tasks",
"aclScope": "BpmnUserTask",
"entityType": "BpmnUserTask",
"options": {
"fields": {
"title": {
"type": "varchar",
"required": true
},
"autorefreshInterval": {
"type": "enumFloat",
"options": [0, 0.5, 1, 2, 5, 10]
},
"displayRecords": {
"type": "enumInt",
"options": [3,4,5,10,15,20,30]
},
"expandedLayout": {
"type": "base",
"view": "views/dashlets/fields/records/expanded-layout"
}
},
"defaults": {
"orderBy": "createdAt",
"order": "desc",
"displayRecords": 5,
"expandedLayout": {
"rows": [
[
{
"name": "name",
"link": true
}
]
]
},
"searchData": {
"bool": {
"onlyMy": true
},
"primary": "actual"
}
},
"layout": [
{
"rows": [
[
{"name": "title"}
],
[
{"name": "displayRecords"},
{"name": "autorefreshInterval"}
],
[
{"name": "expandedLayout"},
false
]
]
}
]
}
}

View File

@@ -0,0 +1,82 @@
{
"view":"advanced:views/dashlets/report",
"aclScope": "Report",
"options": {
"view": "advanced:views/dashlets/options/report",
"fields": {
"title": {
"type": "varchar"
},
"report": {
"type": "link",
"entity": "Report",
"required": true,
"view": "advanced:views/report/fields/dashlet-select"
},
"column": {
"type": "enum",
"options": []
},
"displayType": {
"type": "enum",
"default": "",
"options": [
"",
"Chart",
"List",
"Chart-Total",
"Total",
"Table"
],
"translation": "Report.options.dashletDisplayType",
"view": "advanced:views/dashlets/fields/display-type"
},
"useSiMultiplier": {
"type": "bool"
},
"autorefreshInterval": {
"type": "enumFloat",
"options": [
0,
0.5,
1,
2,
5,
10
]
}
},
"defaults": {
"autorefreshInterval": 0,
"useSiMultiplier": true,
"displayType": ""
},
"layout": [
{
"rows": [
[
{"name": "title"}
],
[
{"name": "report"},
{"name": "column"}
],
[
{"name": "autorefreshInterval"},
false
],
[
{
"name": "displayType"
},
false
],
[
{"name": "useSiMultiplier"},
false
]
]
}
]
}
}