fix: streamline datalayer integration for all events

This commit is contained in:
Björn Fromme
2026-03-16 12:02:59 +01:00
parent 9eefdd1858
commit 8529bb0e21
3 changed files with 20 additions and 28 deletions
+12 -16
View File
@@ -59,22 +59,18 @@
{% block data_layer %}
{% if bookingTotal is not null and travelName is not null %}
<script>
window.dataLayer = window.dataLayer || [];
var consent = (window.CookieFirst && window.CookieFirst.consent) || { advertising: false };
if (consent.advertising) {
dataLayer.push({
'event': 'Transaction',
'userInfo': '{{ is_granted('ROLE_USER') ? 'mitglied' : 'gast' }}',
'transactionId': '{{ bookingNumber }}',
'transactionTotal': {{ bookingTotal }},
'transactionProducts': [{
'name': '{{ travelName|e('js') }}',
'price': {{ bookingTotal }},
'quantity': 1
}]
});
<div {{ stimulus_controller('data-layer', {
'payload': {
'event': 'Transaction',
'userInfo': is_granted('ROLE_USER') ? 'mitglied' : 'gast',
'transactionId': bookingNumber,
'transactionTotal': bookingTotal,
'transactionProducts': [{
'name': travelName,
'price': bookingTotal,
'quantity': 1
}]
}
</script>
}) }}></div>
{% endif %}
{% endblock %}