Add UTM parameters and related fields to CVmhErstgespraech entity and layouts
This commit is contained in:
@@ -27,6 +27,18 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"fields": {
|
"fields": {
|
||||||
"erfolgsaussichten": "Erfolgsaussichten"
|
"erfolgsaussichten": "Erfolgsaussichten",
|
||||||
|
"aquiseplattform": "Akquisitionsplattform",
|
||||||
|
"gclid": "Google Click ID",
|
||||||
|
"utm_source": "UTM Source",
|
||||||
|
"utm_medium": "UTM Medium",
|
||||||
|
"utm_campaign": "UTM Campaign",
|
||||||
|
"utm_term": "UTM Term",
|
||||||
|
"utm_content": "UTM Content",
|
||||||
|
"ad_group": "Ad Group",
|
||||||
|
"keyword": "Keyword",
|
||||||
|
"campaign_id": "Campaign ID",
|
||||||
|
"landing_page": "Landing Page",
|
||||||
|
"referrer": "Referrer"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -38,6 +38,16 @@
|
|||||||
"eMailErstgesprch2": "E-Mail Erstgespräch II.",
|
"eMailErstgesprch2": "E-Mail Erstgespräch II.",
|
||||||
"aquiseplattform": "Aquiseplattform",
|
"aquiseplattform": "Aquiseplattform",
|
||||||
"gclid": "gclid",
|
"gclid": "gclid",
|
||||||
|
"utm_source": "UTM Source",
|
||||||
|
"utm_medium": "UTM Medium",
|
||||||
|
"utm_campaign": "UTM Campaign",
|
||||||
|
"utm_term": "UTM Term",
|
||||||
|
"utm_content": "UTM Content",
|
||||||
|
"ad_group": "Ad Group",
|
||||||
|
"keyword": "Keyword",
|
||||||
|
"campaign_id": "Campaign ID",
|
||||||
|
"landing_page": "Landing Page",
|
||||||
|
"referrer": "Referrer",
|
||||||
"anzahlVermieter": "Anzahl Vermieter",
|
"anzahlVermieter": "Anzahl Vermieter",
|
||||||
"anzahlMieter": "Anzahl Mieter",
|
"anzahlMieter": "Anzahl Mieter",
|
||||||
"anzahlSonstigeVolljhrigeBewohner": "Anzahl sonst. Besitzer",
|
"anzahlSonstigeVolljhrigeBewohner": "Anzahl sonst. Besitzer",
|
||||||
|
|||||||
@@ -205,6 +205,48 @@
|
|||||||
{
|
{
|
||||||
"name": "gclid"
|
"name": "gclid"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "utm_source"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "utm_medium"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "utm_campaign"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "utm_term"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "utm_content"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ad_group"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "keyword"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "campaign_id"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "landing_page"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "referrer"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"dynamicLogicVisible": null,
|
"dynamicLogicVisible": null,
|
||||||
|
|||||||
@@ -15,6 +15,10 @@
|
|||||||
"link": true,
|
"link": true,
|
||||||
"align": "left"
|
"align": "left"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "aquiseplattform",
|
||||||
|
"width": 16
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "assignedUser",
|
"name": "assignedUser",
|
||||||
"width": 16
|
"width": 16
|
||||||
|
|||||||
@@ -278,6 +278,66 @@
|
|||||||
"options": [],
|
"options": [],
|
||||||
"isCustom": true
|
"isCustom": true
|
||||||
},
|
},
|
||||||
|
"utm_source": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 255,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
|
"utm_medium": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 255,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
|
"utm_campaign": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 255,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
|
"utm_term": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 255,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
|
"utm_content": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 255,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
|
"ad_group": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 255,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
|
"keyword": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 255,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
|
"campaign_id": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 100,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
|
"landing_page": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 500,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
|
"referrer": {
|
||||||
|
"type": "varchar",
|
||||||
|
"maxLength": 500,
|
||||||
|
"readOnly": true,
|
||||||
|
"isCustom": true
|
||||||
|
},
|
||||||
"anzahlVermieter": {
|
"anzahlVermieter": {
|
||||||
"type": "int",
|
"type": "int",
|
||||||
"required": true,
|
"required": true,
|
||||||
|
|||||||
@@ -349,8 +349,8 @@ return [
|
|||||||
0 => 'youtube.com',
|
0 => 'youtube.com',
|
||||||
1 => 'google.com'
|
1 => 'google.com'
|
||||||
],
|
],
|
||||||
'cacheTimestamp' => 1768843459,
|
'cacheTimestamp' => 1768843792,
|
||||||
'microtime' => 1768843459.149415,
|
'microtime' => 1768843792.806048,
|
||||||
'siteUrl' => 'https://crm.bitbylaw.com',
|
'siteUrl' => 'https://crm.bitbylaw.com',
|
||||||
'fullTextSearchMinLength' => 4,
|
'fullTextSearchMinLength' => 4,
|
||||||
'appTimestamp' => 1768581056,
|
'appTimestamp' => 1768581056,
|
||||||
|
|||||||
Reference in New Issue
Block a user