feat(CPuls): Enhance CPuls entity with new fields, tooltips, and options; add localization for German and English
- Added new fields to CPuls entity including status, syncStatus, kiAnalyse, and others. - Implemented localization for CPuls in German (de_DE) and English (en_US). - Introduced new API actions for team activation and completion of CPuls. - Created hooks to update team statistics and manage document counts. - Added new entity definitions and metadata for CPulsTeamZuordnung and Team. - Implemented validation logic in formulas to prevent completion of unclean Puls. - Updated layouts for detail and list views of CPuls. - Enhanced user entity with absence tracking fields. - Added scopes for CPuls and CPulsTeamZuordnung.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"teamZuordnungen": {
|
||||
"index": 0,
|
||||
"sticked": true,
|
||||
"style": "info",
|
||||
"label": "Team-Zuordnungen"
|
||||
},
|
||||
"dokumente": {
|
||||
"index": 1,
|
||||
"sticked": false,
|
||||
"label": "Dokumente"
|
||||
},
|
||||
"stream": {
|
||||
"index": 2,
|
||||
"sticked": false
|
||||
}
|
||||
}
|
||||
47
custom/Espo/Custom/Resources/layouts/CPuls/detail.json
Normal file
47
custom/Espo/Custom/Resources/layouts/CPuls/detail.json
Normal file
@@ -0,0 +1,47 @@
|
||||
[
|
||||
{
|
||||
"label": "Übersicht",
|
||||
"rows": [
|
||||
[
|
||||
{"name": "name"},
|
||||
{"name": "status"}
|
||||
],
|
||||
[
|
||||
{"name": "syncStatus"},
|
||||
{"name": "parent"}
|
||||
],
|
||||
[
|
||||
{"name": "anzahlDokumente"},
|
||||
{"name": "anzahlTeamsAktiv"}
|
||||
],
|
||||
[
|
||||
{"name": "finalisiert"},
|
||||
{"name": "finalisierungsGrund"}
|
||||
],
|
||||
[
|
||||
{"name": "zusammenfassung", "span": 2}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "KI-Analyse",
|
||||
"rows": [
|
||||
[
|
||||
{"name": "kiAnalyse", "span": 2}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "System",
|
||||
"rows": [
|
||||
[
|
||||
{"name": "createdAt"},
|
||||
{"name": "modifiedAt"}
|
||||
],
|
||||
[
|
||||
{"name": "createdBy"},
|
||||
{"name": "modifiedBy"}
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
8
custom/Espo/Custom/Resources/layouts/CPuls/list.json
Normal file
8
custom/Espo/Custom/Resources/layouts/CPuls/list.json
Normal file
@@ -0,0 +1,8 @@
|
||||
[
|
||||
{"name": "name", "width": 30},
|
||||
{"name": "status", "width": 15},
|
||||
{"name": "syncStatus", "width": 10},
|
||||
{"name": "parent", "width": 20},
|
||||
{"name": "anzahlDokumente", "width": 10},
|
||||
{"name": "createdAt", "width": 15}
|
||||
]
|
||||
Reference in New Issue
Block a user