From 5d3f9d7bff032b083ad3130fb83a773423528382 Mon Sep 17 00:00:00 2001 From: shancheas Date: Tue, 24 Jun 2025 11:51:43 +0700 Subject: [PATCH] fix(SPG-1254): ONLINE BOOKING wahana tenant tidak muncul pada catalog online booking --- .../booking-online/order/infrastructure/item.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/booking-online/order/infrastructure/item.controller.ts b/src/modules/booking-online/order/infrastructure/item.controller.ts index 5e15333..bb0741c 100644 --- a/src/modules/booking-online/order/infrastructure/item.controller.ts +++ b/src/modules/booking-online/order/infrastructure/item.controller.ts @@ -23,6 +23,7 @@ export class ItemController { ): Promise> { params.limit = 1000; params.show_to_booking = true; + params.all_item = true; this.indexManager.setFilterParam(params); this.indexManager.setService(this.serviceData, TABLE_NAME.ITEM); await this.indexManager.execute();