This commit is contained in:
@@ -99,7 +99,7 @@ public class ComplaintEntityHandler implements RequestHandler {
|
|||||||
MessageCode.USER_NOT_HAD_PERMISSION.getDescription());
|
MessageCode.USER_NOT_HAD_PERMISSION.getDescription());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (violationRepository.existsViolation(violation)) {
|
if (complaintEntityRepository.existsByViolationId(violationId)) {
|
||||||
return errorResponse(msgId, MessageCode.COMPLAINT_ALREADY_EXIST.getCode(),
|
return errorResponse(msgId, MessageCode.COMPLAINT_ALREADY_EXIST.getCode(),
|
||||||
MessageCode.COMPLAINT_ALREADY_EXIST.getDescription());
|
MessageCode.COMPLAINT_ALREADY_EXIST.getDescription());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -95,6 +95,4 @@ public interface ViolationRepository extends JpaRepository<Violation, Long> {
|
|||||||
|
|
||||||
@Query("SELECT COUNT(DISTINCT c.violation.id) FROM ComplaintEntity c WHERE c.violation IS NOT NULL")
|
@Query("SELECT COUNT(DISTINCT c.violation.id) FROM ComplaintEntity c WHERE c.violation IS NOT NULL")
|
||||||
Long getViolationsWithComplaintCount();
|
Long getViolationsWithComplaintCount();
|
||||||
|
|
||||||
boolean existsViolation(Violation violation);
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user