搜索字段类型="动态"在Hybris Jasper报告中使用灵活搜索?

时间:2017-05-26 05:06:03

标签: hybris

例如:

    SELECT 
 {adjustment.pk},
 {reason.code},
 {reason.description},
 {adjustment.orderNumber}
 {adjustment.creator},
 {cs.agentID},
 {cs.mobilePhone}
  FROM  {OrderValueAdjustment as adjustment JOIN AdjustOrderReason AS reason ON {adjustment.reason} = {reason.pk}
    JOIN CsEmployee AS cs ON  {adjustment.creator} = {cs.pk}
  }
WHERE {adjustment.pk} = 8796093131124

抛出false,因为{adjustment.orderNumber}是动态属性类型。

2 个答案:

答案 0 :(得分:2)

动态属性不是持久属性,因此无法使用flexi查询进行搜索。

答案 1 :(得分:0)

动态属性不会保存在数据库中,因此您无法使用FLexible Search获取它们。

要解决您对Jasper报告的问题,如果您仔细查看jrxml文件(例如salesByCountry.jrxml),您将看到此部分:

<queryString>
            <![CDATA[SELECT x.COUNTRY AS COUNTRY, SUM(x.TOTPRICE) as TOTPRICE
FROM
({{
Select {country.name} as COUNTRY, COALESCE(sum({o.totalPrice} * {c2.conversion}/{c.conversion}),0) as TOTPRICE
from { Country AS country LEFT JOIN Address AS a ON {a.country}={country.PK} LEFT JOIN Order AS o ON {o.paymentAddress}={a.PK} LEFT JOIN Currency as c ON {o.currency}={c.PK} LEFT JOIN Currency as c2 ON {c2.pk}= $P{Currency} AND {o.creationtime} >= $P{From} AND {o.creationtime} < $P{To}}
GROUP BY {country.PK}, country
}}
UNION ALL
{{
Select {country.name} as COUNTRY, COALESCE(sum({o.totalPrice} * {c2.conversion}/{c.conversion}),0) as TOTPRICE
from { Country AS country LEFT JOIN Address AS a ON {a.country}={country.PK} LEFT JOIN Order AS o ON {o.paymentAddress}={a.PK} LEFT JOIN Currency as c ON {o.currency}={c.PK} LEFT JOIN Currency as c2 ON {c2.pk}= $P{Currency} AND {o.creationtime} >= $P{From} AND {o.creationtime} < $P{To} AND {o.paymentAddress} IS NULL}
GROUP BY {country.PK}, country
}}) x
GROUP BY COUNTRY
ORDER BY TOTPRICE DESC]]>
        </queryString>

您可以做的是使用此参数的灵活搜索替换数据检索(作为jrxml中的Currency)。然后,您只需从java中的模型中获取动态值,并使用参数map将其传递给jasper报告。