I have the following entities. How do I add on to this query such that report in notification don't get display also.
class Reports {
static hasOne = [location:Locations, crop:Crops, pest:Pests, users:Users]
int id
String reportImage
Date reportDateTime;
boolean reportIsNew
boolean reportHasPest
}
class Notifications {
int id
boolean hasReceived
Reports report = null
Farms farm = null
}
Current query;
def reportsHasPest = Reports.withCriteria {
between('reportDateTime', dateStart, new Date())
and{
eq("reportIsNew",true)
eq("crop", lastReport.crop)
eq("pest", lastReport.pest)
eq("reportHasPest", true)
}
}