[jboss-jira] [JBoss JIRA] (JBRULES-2123) issue with the call of a drl function

Tibor Zimányi (JIRA) issues at jboss.org
Tue Jul 10 09:37:01 EDT 2018


     [ https://issues.jboss.org/browse/JBRULES-2123?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tibor Zimányi closed JBRULES-2123.
----------------------------------
    Resolution: Out of Date


This project is not active anymore. The current active project is "DROOLS". Closing this.

> issue with the call of a drl function
> -------------------------------------
>
>                 Key: JBRULES-2123
>                 URL: https://issues.jboss.org/browse/JBRULES-2123
>             Project: JBRULES
>          Issue Type: Bug
>          Components: drools-core
>    Affects Versions: 5.0.1.FINAL
>            Reporter: Marco Ghanitab
>            Assignee: Mario Fusco
>            Priority: Minor
>             Fix For: 6.0.0.Alpha1
>
>
> in a drl file with a rule "reset" ad a function "formatDate",a bad behaviour is verified when is called the function in the "when" block..it call the function many times, but if the function called is stored in a external java file (not drl) everything works fine, and it call the function only 2 times (correct).
> Here the code of the drl file:
> rule "reset"
>         when
>                 $conversation:Conversation(resource.code == "sms", tickets.size > 0)
>                 not Discount(date == (formatDate($conversation.getStopDate())))
>         then 
>                 Discount discount = new Discount();
>                 discount.setDate(formatDate($conversation.getStopDate()));
>                 discount.setQuantity(495);
>                 insert(discount);               
>                 System.out.println("reset " + discount.getDate());
> end
>  
> declare Discount
>    date : String
>    quantity : int
> end
>  
> function String formatDate(java.util.Date date) {
>         java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("dd/MM/yy");
>         return formatter.format(date);
> }



--
This message was sent by Atlassian JIRA
(v7.5.0#75005)



More information about the jboss-jira mailing list