Add new entity definitions and fields for CVMHBeteiligte, update existing metadata for CBeteiligte, CDokumente, CMietobjekt, CVmhErstgespraech, CVmhMietverhltnis, CVmhRumungsklage, CVmhVermieter, and Contact; adjust cache timestamps in config.php
This commit is contained in:
@@ -294,6 +294,17 @@
|
|||||||
"createdAt",
|
"createdAt",
|
||||||
"id"
|
"id"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"betnr": {
|
||||||
|
"columns": [
|
||||||
|
"betnr"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"rechtsform": {
|
||||||
|
"columns": [
|
||||||
|
"rechtsform",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -217,6 +217,21 @@
|
|||||||
"createdAt",
|
"createdAt",
|
||||||
"id"
|
"id"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"betnr": {
|
||||||
|
"columns": [
|
||||||
|
"betnr"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"md5sum": {
|
||||||
|
"columns": [
|
||||||
|
"md5sum"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sha256": {
|
||||||
|
"columns": [
|
||||||
|
"sha256"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"optimisticConcurrencyControl": false
|
"optimisticConcurrencyControl": false
|
||||||
|
|||||||
@@ -162,6 +162,18 @@
|
|||||||
"createdAt",
|
"createdAt",
|
||||||
"id"
|
"id"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"objekttyp": {
|
||||||
|
"columns": [
|
||||||
|
"objekttyp",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"lage": {
|
||||||
|
"columns": [
|
||||||
|
"lage",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,165 @@
|
|||||||
|
{
|
||||||
|
"fields": {
|
||||||
|
"name": {
|
||||||
|
"type": "personName",
|
||||||
|
"isPersonalData": true
|
||||||
|
},
|
||||||
|
"salutationName": {
|
||||||
|
"type": "enum",
|
||||||
|
"options": [
|
||||||
|
"",
|
||||||
|
"Mr.",
|
||||||
|
"Ms.",
|
||||||
|
"Mrs.",
|
||||||
|
"Dr."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"firstName": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 100
|
||||||
|
},
|
||||||
|
"lastName": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 100,
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"type": "text"
|
||||||
|
},
|
||||||
|
"emailAddress": {
|
||||||
|
"type": "email",
|
||||||
|
"isPersonalData": true
|
||||||
|
},
|
||||||
|
"phoneNumber": {
|
||||||
|
"type": "phone",
|
||||||
|
"typeList": [
|
||||||
|
"Mobile",
|
||||||
|
"Office",
|
||||||
|
"Home",
|
||||||
|
"Fax",
|
||||||
|
"Other"
|
||||||
|
],
|
||||||
|
"defaultType": "Mobile",
|
||||||
|
"isPersonalData": true
|
||||||
|
},
|
||||||
|
"address": {
|
||||||
|
"type": "address",
|
||||||
|
"isPersonalData": true
|
||||||
|
},
|
||||||
|
"addressStreet": {
|
||||||
|
"type": "text",
|
||||||
|
"maxLength": 255,
|
||||||
|
"dbType": "varchar"
|
||||||
|
},
|
||||||
|
"addressCity": {
|
||||||
|
"type": "varchar"
|
||||||
|
},
|
||||||
|
"addressState": {
|
||||||
|
"type": "varchar"
|
||||||
|
},
|
||||||
|
"addressCountry": {
|
||||||
|
"type": "varchar"
|
||||||
|
},
|
||||||
|
"addressPostalCode": {
|
||||||
|
"type": "varchar"
|
||||||
|
},
|
||||||
|
"createdAt": {
|
||||||
|
"type": "datetime",
|
||||||
|
"readOnly": true
|
||||||
|
},
|
||||||
|
"modifiedAt": {
|
||||||
|
"type": "datetime",
|
||||||
|
"readOnly": true
|
||||||
|
},
|
||||||
|
"createdBy": {
|
||||||
|
"type": "link",
|
||||||
|
"readOnly": true,
|
||||||
|
"view": "views/fields/user"
|
||||||
|
},
|
||||||
|
"modifiedBy": {
|
||||||
|
"type": "link",
|
||||||
|
"readOnly": true,
|
||||||
|
"view": "views/fields/user"
|
||||||
|
},
|
||||||
|
"assignedUser": {
|
||||||
|
"type": "link",
|
||||||
|
"required": false,
|
||||||
|
"view": "views/fields/assigned-user"
|
||||||
|
},
|
||||||
|
"teams": {
|
||||||
|
"type": "linkMultiple",
|
||||||
|
"view": "views/fields/teams"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"createdBy": {
|
||||||
|
"type": "belongsTo",
|
||||||
|
"entity": "User"
|
||||||
|
},
|
||||||
|
"modifiedBy": {
|
||||||
|
"type": "belongsTo",
|
||||||
|
"entity": "User"
|
||||||
|
},
|
||||||
|
"assignedUser": {
|
||||||
|
"type": "belongsTo",
|
||||||
|
"entity": "User"
|
||||||
|
},
|
||||||
|
"teams": {
|
||||||
|
"type": "hasMany",
|
||||||
|
"entity": "Team",
|
||||||
|
"relationName": "entityTeam",
|
||||||
|
"layoutRelationshipsDisabled": true
|
||||||
|
},
|
||||||
|
"meetings": {
|
||||||
|
"type": "hasMany",
|
||||||
|
"entity": "Meeting",
|
||||||
|
"foreign": "parent"
|
||||||
|
},
|
||||||
|
"calls": {
|
||||||
|
"type": "hasMany",
|
||||||
|
"entity": "Call",
|
||||||
|
"foreign": "parent"
|
||||||
|
},
|
||||||
|
"tasks": {
|
||||||
|
"type": "hasChildren",
|
||||||
|
"entity": "Task",
|
||||||
|
"foreign": "parent"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"collection": {
|
||||||
|
"orderBy": "createdAt",
|
||||||
|
"order": "desc"
|
||||||
|
},
|
||||||
|
"indexes": {
|
||||||
|
"firstName": {
|
||||||
|
"columns": [
|
||||||
|
"firstName",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"columns": [
|
||||||
|
"firstName",
|
||||||
|
"lastName"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"assignedUser": {
|
||||||
|
"columns": [
|
||||||
|
"assignedUserId",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"createdAt": {
|
||||||
|
"columns": [
|
||||||
|
"createdAt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"createdAtId": {
|
||||||
|
"unique": true,
|
||||||
|
"columns": [
|
||||||
|
"createdAt",
|
||||||
|
"id"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -493,8 +493,7 @@
|
|||||||
"orderBy": "createdAt",
|
"orderBy": "createdAt",
|
||||||
"order": "desc",
|
"order": "desc",
|
||||||
"textFilterFields": [
|
"textFilterFields": [
|
||||||
"name",
|
"name"
|
||||||
"eMailErstgesprch"
|
|
||||||
],
|
],
|
||||||
"fullTextSearch": true,
|
"fullTextSearch": true,
|
||||||
"countDisabled": false
|
"countDisabled": false
|
||||||
@@ -523,6 +522,28 @@
|
|||||||
"createdAt",
|
"createdAt",
|
||||||
"id"
|
"id"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"columns": [
|
||||||
|
"status",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"contact": {
|
||||||
|
"columns": [
|
||||||
|
"contactId",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"lastCall": {
|
||||||
|
"columns": [
|
||||||
|
"lastCall"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"nchsterAnruf": {
|
||||||
|
"columns": [
|
||||||
|
"nchsterAnruf"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"optimisticConcurrencyControl": false
|
"optimisticConcurrencyControl": false
|
||||||
|
|||||||
@@ -260,6 +260,34 @@
|
|||||||
"createdAt",
|
"createdAt",
|
||||||
"id"
|
"id"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"columns": [
|
||||||
|
"status",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"nutzungsart": {
|
||||||
|
"columns": [
|
||||||
|
"nutzungsart",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"auszugsfrist": {
|
||||||
|
"columns": [
|
||||||
|
"auszugsfrist"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"vmhMietobjekt": {
|
||||||
|
"columns": [
|
||||||
|
"vmhMietobjektId",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"vertragsdatum": {
|
||||||
|
"columns": [
|
||||||
|
"vertragsdatum"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -260,6 +260,27 @@
|
|||||||
"createdAt",
|
"createdAt",
|
||||||
"id"
|
"id"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"betnr": {
|
||||||
|
"columns": [
|
||||||
|
"betnr"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"advowareAktenzeichen": {
|
||||||
|
"columns": [
|
||||||
|
"advowareAktenzeichen"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"gegenstandswert": {
|
||||||
|
"columns": [
|
||||||
|
"gegenstandswert"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"syncStatus": {
|
||||||
|
"columns": [
|
||||||
|
"syncStatus",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"optimisticConcurrencyControl": false
|
"optimisticConcurrencyControl": false
|
||||||
|
|||||||
@@ -225,6 +225,17 @@
|
|||||||
"createdAt",
|
"createdAt",
|
||||||
"id"
|
"id"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"rechtsform": {
|
||||||
|
"columns": [
|
||||||
|
"rechtsform",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"advowareBetnr": {
|
||||||
|
"columns": [
|
||||||
|
"advowareBetnr"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"optimisticConcurrencyControl": false
|
"optimisticConcurrencyControl": false
|
||||||
|
|||||||
@@ -160,5 +160,19 @@
|
|||||||
"fullTextSearch": false,
|
"fullTextSearch": false,
|
||||||
"countDisabled": false
|
"countDisabled": false
|
||||||
},
|
},
|
||||||
|
"indexes": {
|
||||||
|
"cRechtsform": {
|
||||||
|
"columns": [
|
||||||
|
"cRechtsform",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"cDISGTyp": {
|
||||||
|
"columns": [
|
||||||
|
"cDISGTyp",
|
||||||
|
"deleted"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"optimisticConcurrencyControl": false
|
"optimisticConcurrencyControl": false
|
||||||
}
|
}
|
||||||
@@ -348,8 +348,8 @@ return [
|
|||||||
0 => 'youtube.com',
|
0 => 'youtube.com',
|
||||||
1 => 'google.com'
|
1 => 'google.com'
|
||||||
],
|
],
|
||||||
'cacheTimestamp' => 1768945303,
|
'cacheTimestamp' => 1768945598,
|
||||||
'microtime' => 1768945303.806753,
|
'microtime' => 1768945598.792157,
|
||||||
'siteUrl' => 'https://crm.bitbylaw.com',
|
'siteUrl' => 'https://crm.bitbylaw.com',
|
||||||
'fullTextSearchMinLength' => 4,
|
'fullTextSearchMinLength' => 4,
|
||||||
'appTimestamp' => 1768843902,
|
'appTimestamp' => 1768843902,
|
||||||
|
|||||||
Reference in New Issue
Block a user