6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit cacc8d80
Changed files
comwell_key_app/lib/check_out/bloc/check_out_cubit.dart | 1 + comwell_key_app/lib/housekeeping/cubit/housekeeping_cubit.dart | 3 ++- comwell_key_app/lib/my_booking/cubit/my_booking_cubit.dart | 1 + 3 files changed, 4 insertions(+), 1 deletion(-)
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 0724ada8..83f48d87 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,6 +74,7 @@ class CheckoutCubit extends Cubit<CheckoutState> {
itemName: "itemName",
price: booking.balance?.toInt() ?? 0,
quantity: 1,
+ bookingReference: 'bookingReference',
);
_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 b70b51a5..63e8f6f8 100644
--- a/comwell_key_app/lib/housekeeping/cubit/housekeeping_cubit.dart
+++ b/comwell_key_app/lib/housekeeping/cubit/housekeeping_cubit.dart
@@ -51,7 +51,8 @@ class HouseKeepingCubit extends Cubit<HouseKeepingState> {
itemId: "housekeeping",
itemName: "itemName",
price: 0,
- quantity: 1);
+ quantity: 1,
+ bookingReference: 'bookingReference');
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 de66ecc6..3252936a 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,6 +84,7 @@ class MyBookingCubit extends Cubit<MyBookingState> {
itemName: "itemName",
price: booking.balance?.toInt() ?? 0,
quantity: 1,
+ bookingReference: 'bookingReference',
);
_tracking.trackBeginCheckout(analyticsEventItem);
try {