简体   繁体   中英

How to get a maximum date among the list of past dates in drools?

From the List of Orders, i need to collect dates which are past to requesteffDate and requesteffTime and take the maximum of the past dates.

function boolean dateCheck(Date effdt, Date efftm) {
  String efffdt = new SimpleDateFormat("yyyyMMdd").format(effdt);
  String effftm = new SimpleDateFormat("HHmm").format(efftm);
  Date effdttm = new SimpleDateFormat("yyyyMMddHHmm").parse(efffdt + "" + effftm);
  return effdttm.before(new Date());
} 

rule "finding past maximum date"
when
  $company : Company( $date:requesteffDate, $time:requesteffTime, $reqdt : requesteffDate.getTime(), $reqtm : requesteffTime.getTime() )
eval(dateCheck($date,$time))
accumulate(Orders( effectiveDate != null,
                   effdate:effectiveDate.getTime()<$reqdt),
           maxEffDate:max(effdate))
then
  //error

While doing this,

accumulate(Orders(effectiveDate!=null,
                  effdate:effectiveDate.getTime()<$reqdt),
                  maxEffDate:max(effdate))

I am getting maxEffDate as -9223372036854775808 which when converted is showing 1940

Same I have tried using min functionn it is showing 2262.

My class goes like this.

Class Company{
  private Date requesteffDate;
  private Date requesteffTime;
  private Employee emp;
  private List<Orders> orderlist;
}

Class Orders{
  private Date effectiveDate;
  private Date effectiveTime;
}

-9223372036854775808 is Long.MIN_VALUE. This is conclusive for indicating that the accumulate doesn't find any Orders.

Make sure that you insert some matching Orders facts.

Add a guard that the maxEffDate is != Long.MIN_VALUE.

Discontinue the usage of Date as a time-of-day value: Either use LocalDate and LocalTime or combine date and time into a single Date value.

Take care that conversions of date and time are not affected by your locale settings.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM