Access to add and change pages is restricted. See: https://cwiki.apache.org/confluence/display/OFBIZ/Wiki+access

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »

Replace deprecated methods of entity delegator in OFBiz

source methods

destination method

java references

groovy references

bsh references

ftl references

findByPrimaryKey(..)

findOne()

187

100

3

29

findAll(..)

findList()

10

0

3

5

findByAnd(..)

findList()

139

76

6

7

findByOr(..)

findList()

5

0

0

0

method

destination method

java references

groovy references

bsh references

ftl references

findByOr(String entityName, Object... fields)

findList(entityName, EntityCondition.makeCondition(EntityOperator.OR, fields), null, null, null, false)

0

0

0

0

findByOr(String entityName, Map<String, ? extends Object> fields)

findList(entityName, EntityCondition.makeCondition(fields, EntityOperator.OR), null, null, null, false)

0

0

0

0

findByOr(String entityName, Map<String, ? extends Object> fields, List<String> orderBy)

findList(entityName, EntityCondition.makeCondition(fields, EntityOperator.OR), null, orderBy, null, false)

0

0

0

0

  • No labels