From 37d5a6b675b6447778bed822cbed6aac08bf6dd4 Mon Sep 17 00:00:00 2001 From: Adnan Zahir Date: Mon, 9 Mar 2026 00:49:39 +0700 Subject: [PATCH] fix: add include all param to adjustment stock products select --- .../inventory/adjustment/form/InventoryAdjustmentForm.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/pages/inventory/adjustment/form/InventoryAdjustmentForm.tsx b/src/components/pages/inventory/adjustment/form/InventoryAdjustmentForm.tsx index 0c8b89d0..ff710329 100644 --- a/src/components/pages/inventory/adjustment/form/InventoryAdjustmentForm.tsx +++ b/src/components/pages/inventory/adjustment/form/InventoryAdjustmentForm.tsx @@ -185,7 +185,9 @@ const InventoryAdjustmentForm = ({ isLoadingOptions: isLoadingProductOptions, loadMore: loadMoreProducts, rawData: products, - } = useSelect(ProductApi.basePath, 'id', 'name', 'search'); + } = useSelect(ProductApi.basePath, 'id', 'name', 'search', { + include_all: 'true', + }); const { setInputValue: setDepletionProductInputValue,