Skip to content

Commit

Permalink
Merge pull request #129 from WE-ARE-RACCOONS/RAC-304
Browse files Browse the repository at this point in the history
RAC-304 fix : Salary 쑰회 였λ₯˜ μˆ˜μ •
  • Loading branch information
ywj9811 authored Feb 25, 2024
2 parents 06356b2 + 9b036db commit 2b60704
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
working-directory: ${{ env.working-directory }}

- name: Build with Gradle
run: ./gradlew build
run: ./gradlew build -x test
working-directory: ${{ env.working-directory }}

- name: Cleanup Gradle Cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CD-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
working-directory: ${{ env.working-directory }}

- name: Build with Gradle
run: ./gradlew build
run: ./gradlew build -x test
working-directory: ${{ env.working-directory }}

- name: Cleanup Gradle Cache
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import static com.postgraduate.domain.mentoring.domain.entity.QMentoring.mentoring;
import static com.postgraduate.domain.payment.domain.entity.QPayment.payment;
import static com.postgraduate.domain.payment.domain.entity.constant.Status.DONE;
import static com.postgraduate.domain.salary.domain.entity.QSalary.salary;
import static com.postgraduate.domain.senior.domain.entity.QSenior.senior;
import static com.postgraduate.domain.user.domain.entity.QUser.user;
Expand Down Expand Up @@ -108,7 +109,8 @@ public List<Mentoring> findAllBySeniorAndSalaryStatus(Senior senior, Boolean sta
return queryFactory.selectFrom(mentoring)
.where(
mentoring.senior.eq(senior),
mentoring.payment.status.eq(com.postgraduate.domain.payment.domain.entity.constant.Status.DONE),
mentoring.status.eq(Status.DONE),
mentoring.payment.status.eq(DONE),
mentoring.payment.salary.status.eq(status)
)
.join(mentoring.payment, payment)
Expand Down

0 comments on commit 2b60704

Please sign in to comment.