Uses of Class
net.pricefx.domain.CustomerGroup
-
Packages that use CustomerGroup Package Description net.pricefx.domain Defines set of domain object classes.net.pricefx.formulaengine Provides Formula Engine API classes.net.pricefx.formulaengine.scripting Provides API related to scripting, including interfacePublicGroovyAPI
, that represents what can be reached in the Groovy element syntax asapi
. -
-
Uses of CustomerGroup in net.pricefx.domain
Methods in net.pricefx.domain that return CustomerGroup Modifier and Type Method Description static CustomerGroup
CustomerGroup. fromMap(ObjectMapper mapper, Map<String,Object> map)
static CustomerGroup
CustomerGroup. fromMap(Map<String,Object> map)
static CustomerGroup
CustomerGroup. fromSimpleFilter(String customerFieldName, String customerFieldValue)
-
Uses of CustomerGroup in net.pricefx.formulaengine
Methods in net.pricefx.formulaengine with parameters of type CustomerGroup Modifier and Type Method Description void
DatamartContext.DataSlice. exclude(CustomerGroup customerGroup)
void
DatamartContext.DataSlice. include(CustomerGroup customerGroup)
DatamartContext.Query
DatamartContext.Query. where(CustomerGroup customerGroup)
Adds a CustomerGroup condition to the query's WHERE clause, for example a customer group from an InputEntry("CustomerGroup") parameter. -
Uses of CustomerGroup in net.pricefx.formulaengine.scripting
Methods in net.pricefx.formulaengine.scripting with parameters of type CustomerGroup Modifier and Type Method Description List<Customer>
PublicGroovyAPI. findCustomersInGroup(CustomerGroup group)
Retrieves a list of customers which match the given CustomerGroup (the first 200 entries are returned).List<Customer>
PublicGroovyAPI. findCustomersInGroup(CustomerGroup group, int startRow, String sortBy)
Retrieves a list of customers which match the given CustomerGroup with custom paging and sorting.List<String>
PublicGroovyAPI. getCustomerIdsFromCustomerGroup(CustomerGroup cg)
Returns a list of Customer IDs based on the definition of the customer group.
-