我正在试图弄清楚如何在一系列执行后停止规则。 假设您购买商品X(当前价格10美元),您可以给予折扣,但每位客户只能获得2次折扣。
所以我的规则如下:
rule "Fixed Price Promotion Item X"
when
$o : Order( )
$ol1 : OrderLine( item.code == "X" )
then
FixedPrice fixedPrice = new FixedPrice(8.80, $ol1.getItem().getPrice().doubleValue(), $ol1.getItem().getBarcode(), 1, "e78fbca5ed014f49806ad667aea80965" , "Happy Mother's day!! This is a fixed price promotion" );
insertLogical (fixedPrice); //here I grant a promotion
最初,当我的条件满足时,我认为还有另一条规则来插入一个事实,因此它会阻止我的促销规则被解雇。
我会有这样的事情:
declare LimitReachedOut
promotionId : String
end
rule "stop Promotion"
when
Number($numOfGrantedProm : intValue) from accumulate (
FixedPrice(promotionId == "123",
$count: quantity),
sum($count)
)
then
if( $numOfGrantedProm == 2 ){ //this cause an issue, even > 1 or >=2 will keep inserting new LimitReachedOut("123") recursively.
insertLogical (new LimitReachedOut("123"));
}
end
rule "Fixed Price Promotion Item X"
when
not( LimitReachedOut( promotionId == "123" ) )
$o : Order( )
$ol1 : OrderLine( item.code == "X" )
then
FixedPrice fixedPrice = new FixedPrice(8.80, $ol1.getItem().getPrice().doubleValue(), $ol1.getItem().getBarcode(), 1, "123" , "Happy Mother's day!! This is a fixed price promotion" );
insertLogical (fixedPrice);
end
还有其他办法吗?
我将非常感谢您的评论。
答案 0 :(得分:0)
我找到了一种方法来完成我想要的东西,而且我在这里发布它就好像有人想要使用它一样。 我基本上没有执行规则的RHS,在那里放置条件句。
首先,我正在使用累积函数计算插入到工作内存中的Facts数量(FixedPrice,其id为ruleId,用于将事实链接到此特定规则)。 其次,RHS if($ numOfGrantedProm< 2)中的条件意味着我将在条件if(create& insert fixedPrice fact)内执行最多两次的块。 无论如何,该规则将被触发,但 if 条件将避免执行代码块。
rule "Fixed Price Promotion Item X"
when
$o : Order( )
$ol1 : OrderLine( item.code == "X" )
Number($numOfGrantedProm : intValue) from accumulate (
FixedPrice(ruleId ==
"e78fbca5ed014f49806ad667aea80965",$count:quantity),
sum($count)
)
then
if( $numOfGrantedProm < 2 ){
FixedPrice fixedPrice = new FixedPrice(8.80,
$ol1.getItem().getPrice().doubleValue(),
$ol1.getItem().getBarcode(),
1,
"e78fbca5ed014f49806ad667aea80965" ,
"Happy Mother's day!! This is a fixed price
promotion" );
insertLogical (fixedPrice); //here I grant a promotion enter code here
}
end