Skip to content

Commit

Permalink
fix: 시험 차량 조회 페이지 오류 수정 (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
gengminy authored Dec 12, 2023
1 parent 2a9499b commit 561f01e
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,8 @@ public Page<Car> findAllWithStocksPageByCondition(
jpaQueryFactory
.select(car.id)
.from(car)
.leftJoin(car.carStocks, carStock)
.where(
notDeleted(car),
notDeleted(carStock),
carNameContainsOrNull(condition.getName()),
typeEqOrNull(condition.getType()),
createdAtBetween(condition.getStartDate(), condition.getEndDate()))
Expand Down

0 comments on commit 561f01e

Please sign in to comment.