#1789 UpdateAvailabilites fehlt vor UpdateDestination

This commit is contained in:
Lorenz Hilpert
2021-05-10 18:02:16 +02:00
parent 246630f081
commit 2294cd2788

View File

@@ -528,12 +528,11 @@ export class DomainCheckoutService {
)
);
return refreshShoppingCart$
return updateDestination$
.pipe(tap(console.log.bind(window, 'updateDestination$')))
.pipe(
tap(console.log.bind(window, 'refreshShoppingCart$')),
mergeMap((_) => setSpecialComment$.pipe(tap(console.log.bind(window, 'setSpecialComment$')))),
mergeMap((_) => refreshShoppingCart$.pipe(tap(console.log.bind(window, 'refreshShoppingCart$')))),
mergeMap((_) => refreshCheckout$.pipe(tap(console.log.bind(window, 'refreshCheckout$')))),
mergeMap((_) => updateDestination$.pipe(tap(console.log.bind(window, 'updateDestination$')))),
mergeMap((_) => updateAvailabilities$.pipe(tap(console.log.bind(window, 'updateAvailabilities$')))),
mergeMap((_) => setBuyer$.pipe(tap(console.log.bind(window, 'setBuyer$')))),
mergeMap((_) => setNotificationChannels$.pipe(tap(console.log.bind(window, 'setNotificationChannels$')))),