Using the GUI editor for rules is a nice way to make rules, however the editor put restrictions on what u can fill on the textfields for a type of attribute, ie. if I have a Double attribute (approvedMount) in a bean (Person) I cant make the update of this field based on
another field ... what I wanna do (and cant on BRMS GUI) is:

rule "Set approvedMount for a women"
        no-loop true
        when
                $p: Person($sex: sex == "F", $income: incomeMount)
        then
                $p.setApprovedMount($income * 1.2);
                update($p);
end

Where my Person class has incomeMount and approvedMount as Double.

BRMS GUI only let me put 1.2 but no words to refer the $income variable.

What can I do?... where will be this possible?... it is quite useless if I cant do what I want, because it force me to rebuild the bean to have fields names like "approvedMountIncresedBasedOnIncome" and make a formula inside the setter, which is exactly the code
I wanna put on rules, because is the bussines logic.

Felipe Piccolini M.
[EMAIL PROTECTED]




_______________________________________________
rules-users mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/rules-users

Reply via email to