Search found 5 matches

by nickparker-hsoa
Tue Nov 28, 2023 1:40 pm
Forum: ReadyDoc Development
Topic: Prompt in document footer
Replies: 3
Views: 12580

Re: Prompt in document footer

Hi - checking to see if there was any update on this question?
by nickparker-hsoa
Fri Nov 17, 2023 5:35 pm
Forum: ReadyDoc Development
Topic: Prompt in document footer
Replies: 3
Views: 12580

Prompt in document footer

I have a custom field that is set as a prompt and that is then coded into a ReadyBloc that is later referenced on the main document in the footer. When I render the document, the prompt does not come up. Is there a way to prompt from a ReadyBloc that is set as a footer or another work around? Screen...
by nickparker-hsoa
Thu Jul 20, 2023 9:06 am
Forum: Custom Order Rules
Topic: Title Status Set to Blank
Replies: 5
Views: 5136

Re: Title Status Set to Blank

This worked for cancelled so I thought I could just use the same thing for when the order status is set to duplicate but the title status stays as in process. def Title_Status_Value(args): o = args.Context.Root oTCA = ['TO','TE'] oTC = o.Type.Code iT = o.IsTemplate oS = o.Status oSCA = OrderStatus.C...
by nickparker-hsoa
Wed Jul 19, 2023 8:30 am
Forum: Custom Order Rules
Topic: Title Status Set to Blank
Replies: 5
Views: 5136

Re: Title Status Set to Blank

def Title_Status_Value(args): o = args.Context.Root oTCA = ['TO','TE'] oTC = o.Type.Code iT = o.IsTemplate oS = o.Status oSCA = OrderStatus.Canceled oSDU = OrderStatus.Duplicate tSI = TitleStatus.InProcess tSCA = TitleStatus.Canceled exemptProfiles = ['NULL'] profilePath = o.OwnershipProfile.Path f...
by nickparker-hsoa
Mon Jul 17, 2023 11:51 am
Forum: Custom Order Rules
Topic: Title Status Set to Blank
Replies: 5
Views: 5136

Title Status Set to Blank

We are trying to set the Title Stauts to blank if the order status is set to canceled. Please see below rule and let me know if there is an option to be able to set this to blank: def Title_Status_Value(args): o = args.Context.Root oTCA = ['TO','TE'] oTC = o.Type.Code iT = o.IsTemplate oS = o.Status...