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
_______________________________________________
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users

Reply via email to