rule "Test"
dialect "mvel"
when
( Customer( age == 50 ) or Deal( amount == 30 ) )
then
Customer.setAge( "40" );
update( Customer );
Customer.setPlace( "Test" );
update( Customer );
end
How to do I tag both Customer and Deal on the 1st condition , to enable me
to