diff --git a/owa/src/features/stockOperations/StockOperationItemsTable.tsx b/owa/src/features/stockOperations/StockOperationItemsTable.tsx index bf42e72..21dd555 100644 --- a/owa/src/features/stockOperations/StockOperationItemsTable.tsx +++ b/owa/src/features/stockOperations/StockOperationItemsTable.tsx @@ -600,7 +600,7 @@ const StockOperationItemsTable: React.FC = ({ onToggleClick={(e => handleStockBatchSearch(row, ""))} shouldFilterItem={(data) => true} onInputChange={(q) => handleStockBatchSearch(row, q)} - itemToString={item => item?.batchNo ?? ''} + itemToString={item => `${item?.batchNo ? `${item.batchNo} ${item?.expiration ?` - ${formatForDatePicker(item?.expiration)}`: ""} ${item?.quantity ?` - ${item?.quantity}`: ""}` : ""}`} placeholder={'Filter...'} invalid={(row.uuid in errors) && ("stockBatchUuid" in errors[row.uuid]) && !errors[row.uuid]["stockBatchUuid"]} /> }