@@ -144,6 +144,7 @@ public class StockWaitServiceImpl extends ServiceImpl<StockWaitMapper, StockWait
ProductInfo byId = productInfoService.getById(stockWaitDetails.getProductId());
result.setProductName(byId.getName());
result.setQuantity(stockWaitDetails.getQuantity());
+ result.setStockWaitDetailsId(stockWaitDetails.getId());
return result;
}