Page 1 of 1

Folder visibility when uw is not NA

Posted: Tue May 14, 2019 11:20 am
by lburkeckc
Visibility isn't working. I need this condition to show a folder only when NA is not the underwriter. If there are no Underwriters or if Underwriter is one other than NA, then the folder should not show. If the Underwriter is NA, then it should not show the folder.

if Order.Underwriters.Count == 0:
# No underwriters: hide folder
return False

if Order.Underwriters[0].LookupCode is None:
# First underwriter has no LookupCode: hide folder
return False

if Order.Underwriters[0].LookupCode is not "NA"
# First underwriter LookupCode is not NA: hide folder
return False

# Hide folder if LookupCode is "NA"
return Order.Underwriters[0].LookupCode != "NA"

Re: Folder visibility when uw is not NA

Posted: Tue May 14, 2019 11:28 am
by lburkeckc
Please cancel this request.