Remove CPulsTeamZuordnung entity definitions, localization files, and update cache timestamps in configuration and state files.
This commit is contained in:
@@ -1,32 +0,0 @@
|
|||||||
{
|
|
||||||
"labels": {
|
|
||||||
"Create CPulsTeamZuordnung": "Team-Zuordnung erstellen",
|
|
||||||
"CPulsTeamZuordnung": "Puls Team-Zuordnung",
|
|
||||||
"cPulsTeamZuordnung": "Puls Team-Zuordnungen"
|
|
||||||
},
|
|
||||||
"fields": {
|
|
||||||
"name": "Name",
|
|
||||||
"puls": "Puls",
|
|
||||||
"team": "Team",
|
|
||||||
"aktiv": "Aktiv",
|
|
||||||
"abgeschlossen": "Abgeschlossen",
|
|
||||||
"abgeschlossenAm": "Abgeschlossen am",
|
|
||||||
"abgeschlossenVon": "Abgeschlossen von",
|
|
||||||
"prioritaet": "Priorität"
|
|
||||||
},
|
|
||||||
"links": {
|
|
||||||
"puls": "Puls",
|
|
||||||
"team": "Team",
|
|
||||||
"abgeschlossenVon": "Abgeschlossen von"
|
|
||||||
},
|
|
||||||
"tooltips": {
|
|
||||||
"aktiv": "Ist diese Team-Zuordnung aktiv? Inaktive werden nicht angezeigt."
|
|
||||||
},
|
|
||||||
"options": {
|
|
||||||
"prioritaet": {
|
|
||||||
"Niedrig": "Niedrig",
|
|
||||||
"Normal": "Normal",
|
|
||||||
"Hoch": "Hoch"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
{
|
|
||||||
"fields": {
|
|
||||||
"name": {
|
|
||||||
"type": "varchar",
|
|
||||||
"notStorable": true,
|
|
||||||
"select": {
|
|
||||||
"select": "CONCAT:(team.name, ' - ', puls.name)",
|
|
||||||
"leftJoins": ["team", "puls"]
|
|
||||||
},
|
|
||||||
"orderBy": {
|
|
||||||
"order": [
|
|
||||||
["team.name", "{direction}"]
|
|
||||||
],
|
|
||||||
"leftJoins": ["team"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"puls": {
|
|
||||||
"type": "link",
|
|
||||||
"entity": "CPuls",
|
|
||||||
"required": true,
|
|
||||||
"isCustom": true
|
|
||||||
},
|
|
||||||
"team": {
|
|
||||||
"type": "link",
|
|
||||||
"entity": "Team",
|
|
||||||
"required": true,
|
|
||||||
"isCustom": true
|
|
||||||
},
|
|
||||||
"aktiv": {
|
|
||||||
"type": "bool",
|
|
||||||
"default": true,
|
|
||||||
"isCustom": true,
|
|
||||||
"tooltip": true
|
|
||||||
},
|
|
||||||
"abgeschlossen": {
|
|
||||||
"type": "bool",
|
|
||||||
"default": false,
|
|
||||||
"isCustom": true
|
|
||||||
},
|
|
||||||
"abgeschlossenAm": {
|
|
||||||
"type": "datetime",
|
|
||||||
"readOnly": true,
|
|
||||||
"isCustom": true
|
|
||||||
},
|
|
||||||
"abgeschlossenVon": {
|
|
||||||
"type": "link",
|
|
||||||
"entity": "User",
|
|
||||||
"readOnly": true,
|
|
||||||
"isCustom": true
|
|
||||||
},
|
|
||||||
"prioritaet": {
|
|
||||||
"type": "enum",
|
|
||||||
"options": ["Niedrig", "Normal", "Hoch"],
|
|
||||||
"default": "Normal",
|
|
||||||
"isCustom": true,
|
|
||||||
"style": {
|
|
||||||
"Niedrig": "default",
|
|
||||||
"Normal": "primary",
|
|
||||||
"Hoch": "danger"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"createdAt": {
|
|
||||||
"type": "datetime",
|
|
||||||
"readOnly": true
|
|
||||||
},
|
|
||||||
"modifiedAt": {
|
|
||||||
"type": "datetime",
|
|
||||||
"readOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"links": {
|
|
||||||
"puls": {
|
|
||||||
"type": "belongsTo",
|
|
||||||
"entity": "CPuls",
|
|
||||||
"foreign": "teamZuordnungen"
|
|
||||||
},
|
|
||||||
"team": {
|
|
||||||
"type": "belongsTo",
|
|
||||||
"entity": "Team"
|
|
||||||
},
|
|
||||||
"abgeschlossenVon": {
|
|
||||||
"type": "belongsTo",
|
|
||||||
"entity": "User"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"collection": {
|
|
||||||
"orderBy": "createdAt",
|
|
||||||
"order": "desc"
|
|
||||||
},
|
|
||||||
"indexes": {
|
|
||||||
"pulsTeam": {
|
|
||||||
"columns": ["pulsId", "teamId"],
|
|
||||||
"unique": true
|
|
||||||
},
|
|
||||||
"aktiv": {
|
|
||||||
"columns": ["aktiv"]
|
|
||||||
},
|
|
||||||
"abgeschlossen": {
|
|
||||||
"columns": ["abgeschlossen"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"entity": true,
|
|
||||||
"tab": false,
|
|
||||||
"acl": "recordAllTeamNo",
|
|
||||||
"aclPortal": false,
|
|
||||||
"customizable": true,
|
|
||||||
"stream": false,
|
|
||||||
"disabled": false,
|
|
||||||
"type": "Base",
|
|
||||||
"module": "Custom",
|
|
||||||
"object": true,
|
|
||||||
"isCustom": true
|
|
||||||
}
|
|
||||||
@@ -358,7 +358,7 @@ return [
|
|||||||
0 => 'youtube.com',
|
0 => 'youtube.com',
|
||||||
1 => 'google.com'
|
1 => 'google.com'
|
||||||
],
|
],
|
||||||
'microtime' => 1773096908.308369,
|
'microtime' => 1773096963.398044,
|
||||||
'siteUrl' => 'https://crm.bitbylaw.com',
|
'siteUrl' => 'https://crm.bitbylaw.com',
|
||||||
'fullTextSearchMinLength' => 4,
|
'fullTextSearchMinLength' => 4,
|
||||||
'webSocketUrl' => 'ws://api.bitbylaw.com:5000/espocrm/ws',
|
'webSocketUrl' => 'ws://api.bitbylaw.com:5000/espocrm/ws',
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
return [
|
return [
|
||||||
'cacheTimestamp' => 1773096908,
|
'cacheTimestamp' => 1773096963,
|
||||||
'microtimeState' => 1773096908.309498,
|
'microtimeState' => 1773096963.399437,
|
||||||
'currencyRates' => [
|
'currencyRates' => [
|
||||||
'EUR' => 1.0
|
'EUR' => 1.0
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user