6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit be60eb0a

AuthorEdmir Suljic<esu@dwarf.dk>
Date2026-02-27 10:53:45 +0100
updated tracking

Changed files

comwell_key_app/lib/check_out/bloc/check_out_cubit.dart        | 2 +-
 comwell_key_app/lib/housekeeping/cubit/housekeeping_cubit.dart | 2 +-
 comwell_key_app/lib/my_booking/cubit/my_booking_cubit.dart     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

Diff

diff --git a/comwell_key_app/lib/check_out/bloc/check_out_cubit.dart b/comwell_key_app/lib/check_out/bloc/check_out_cubit.dart
index 83f48d87..77f5f2c9 100644
--- a/comwell_key_app/lib/check_out/bloc/check_out_cubit.dart
+++ b/comwell_key_app/lib/check_out/bloc/check_out_cubit.dart
@@ -74,7 +74,7 @@ class CheckoutCubit extends Cubit<CheckoutState> {
itemName: "itemName",
price: booking.balance?.toInt() ?? 0,
quantity: 1,
- bookingReference: 'bookingReference',
+ bookingReference: booking.confirmationNumber,
);
_tracking.trackBeginCheckout(analyticsEventItem);
try {
diff --git a/comwell_key_app/lib/housekeeping/cubit/housekeeping_cubit.dart b/comwell_key_app/lib/housekeeping/cubit/housekeeping_cubit.dart
index 63e8f6f8..28075564 100644
--- a/comwell_key_app/lib/housekeeping/cubit/housekeeping_cubit.dart
+++ b/comwell_key_app/lib/housekeeping/cubit/housekeeping_cubit.dart
@@ -52,7 +52,7 @@ class HouseKeepingCubit extends Cubit<HouseKeepingState> {
itemName: "itemName",
price: 0,
quantity: 1,
- bookingReference: 'bookingReference');
+ bookingReference: booking.confirmationNumber);
tracking.trackAddToCart(analyticsEventItem);
return state.selectedServices.toList();
}
diff --git a/comwell_key_app/lib/my_booking/cubit/my_booking_cubit.dart b/comwell_key_app/lib/my_booking/cubit/my_booking_cubit.dart
index 3252936a..21b060bf 100644
--- a/comwell_key_app/lib/my_booking/cubit/my_booking_cubit.dart
+++ b/comwell_key_app/lib/my_booking/cubit/my_booking_cubit.dart
@@ -84,7 +84,7 @@ class MyBookingCubit extends Cubit<MyBookingState> {
itemName: "itemName",
price: booking.balance?.toInt() ?? 0,
quantity: 1,
- bookingReference: 'bookingReference',
+ bookingReference: booking.confirmationNumber,
);
_tracking.trackBeginCheckout(analyticsEventItem);
try {