[ 
https://issues.apache.org/jira/browse/OFBIZ-1968?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12858261#action_12858261
 ] 

Scott Gray commented on OFBIZ-1968:
-----------------------------------

Here's an example I can actually get to work for building entity expressions:
{code}
entityCondition = expression.AND() {
    equals (productId: 12345),
    in (productId: [1, 2, 3, 4]),
    like (productId: "1234%"),
    OR() {
        equals (productId: "54321"),
        between (productId: [0, 1, 2, 3, 4, 5])
    }
}
{code}

Any thoughts?

> Enrich Groovy integration with Ofbiz framework
> ----------------------------------------------
>
>                 Key: OFBIZ-1968
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1968
>             Project: OFBiz
>          Issue Type: Improvement
>          Components: framework
>            Reporter: Anil K Patel
>            Priority: Minor
>
> Enrich Groovy integration with Ofbiz framework in order to bring goodies of 
> Minilang to Groovy scripts. Start with simple things like use 
> findByPrimaryKey in groovy scripts without having to prefix it with delegator 
> and then automatically find values for primary key fields from environment if 
> they are not explicitly passed in the call. Later other similar goodies of 
> minilang can be added.
> Use Groovy to add DSL where possible.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to