简体   繁体   English

无法隐藏文档上的信封 ID

[英]Cannot hide Envelope ID on document

(Using the Laravel wrapper for the PHP SDK ) (使用Laravel 包装PHP SDK

I want to hide the envelope ID on my documents but I don't see how to do it.我想在我的文档上隐藏信封 ID,但我不知道该怎么做。 I tried the following methods:我尝试了以下方法:

First I was going to disable the "Include Envelope ID by default", but I found out that it was not checked and it is as a non-editable field.首先我打算禁用“默认包含信封 ID”,但我发现它没有被选中并且它是一个不可编辑的字段。

在此处输入图像描述

Then I tried disabling it programatically with both setting the property 'envelopeIdStamping' when instantiating the EnvelopeDefinition object and using the setEnvelopeIdStamping() method of the resulting object.然后我尝试通过在实例化 EnvelopeDefinition object 时设置属性“envelopeIdStamping”并使用结果 object 的 setEnvelopeIdStamping() 方法以编程方式禁用它。

$envelope_definition = new EnvelopeDefinition([
    'composite_templates' => $composite_templates,  
    'email_subject' => "Please sign",  //toDo custom title
    'status' => "sent",
    'envelopeIdStamping' => "false",
]);

$envelope_definition->setEnvelopeIdStamping(false);

Nothing has succeeded, the document shows the envelope ID anyway, partly covering the barcode of my documents.什么都没有成功,文件显示信封 ID,部分覆盖了我文件的条形码。

The option for envelope ID stamping needs to be enabled on the account so that you can enable 'Enable including the Envelope ID on the document' and disable 'Include Envelope ID by default'.需要在帐户上启用信封 ID 标记选项,以便您可以启用“启用在文档上包含信封 ID”并禁用“默认包含信封 ID”。 You'll need to create a case with DocuSign support to have the setting enabled - you can open a case here: https://support.docusign.com/s/?language=en_US您需要创建支持 DocuSign 的案例才能启用该设置 - 您可以在此处打开案例: https://support.docusign.com/s/?language=en_US

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM