Search found 12 matches

by kylecrosland
Tue Apr 16, 2019 5:39 pm
Forum: Custom Order Rules
Topic: Differentiating between instances of LegalDescriptions
Replies: 2
Views: 4278

Re: Differentiating between instances of LegalDescriptions

Figured it out.

def LegalDescription_LookupCode_Value (args):
if str(args.Context.Owner.EscrowLegal) == str(args.Context) or str(args.Context.Owner.PolicyLegal) == str(args.Context):
args.Value = "Comm Legal"
by kylecrosland
Tue Apr 16, 2019 5:25 pm
Forum: Custom Order Rules
Topic: Differentiating between instances of LegalDescriptions
Replies: 2
Views: 4278

Differentiating between instances of LegalDescriptions

Hello, I'm trying to place a custom order rule in the LegalDescription.LookupCode field. I want a rule that sets the value of the field to 'Comm Legal' when the field is associated with the EscrowLegal or the PolicyLegal, but not the CommitmentLegal. I want the LookupCode field of the CommitmentLega...