Shyam
Shyam

Reputation: 192

How to Restrict Users to Sign as per date difference in docusign

I am working on one requirement where I have to show / hide Sign tag as per the number of days calculation.

I tried to use two datafield for "Date" date type:

DateSigned = "11/05/2015" DateReceived= "11/01/2015"

Added one more Datafield NumberofDays "number" type and added initial value 14 days.

So , I want to calculate difference b/w to dates and if this difference is greater than 14 days, I need to show Sign tag on documents else I need to hide it.

I tried to use formula on template but it seems, not working

Formula is used = DateDiff([DateSigned], [DateReceived]) > ([NumberofDays])

I can always see Signature tag visible whether I update any value in NumberofDays.

Is there any otherway like if we can open Recipiententer image description here/Signer view using Iframe and Iframe can be made read only.

your help is really appreciable.Attached image for reference.

Upvotes: 0

Views: 331

Answers (1)

Luis
Luis

Reputation: 2702

Unfortunately the DocuSign conditional tab logic does not support greater than or less than operators. It only supports "equals specific value" or "not blank".

A crude workaround using the conditional logic tabs support: lets say i want a signature tab to appear if a delta is 1,2, or 3. I would create THREE unique signature tabs, each with specific conditional logic to appear if the delta/calculated value is 1, 2, or 3. If i needed to support 5 unique values, then that would result in 5 unique signature tabs. Granted, only ONE would actually be visible/appear based on the end calculation.

Upvotes: 1

Related Questions