金蝶PLM CAD 集成


撤销检出文档

<p>[TOC]</p> <h4>请求</h4> <h5>请求命令 CadCommand</h5> <ul> <li><code>CancelCheckOut 57</code></li> </ul> <h5>请求方式</h5> <ul> <li><code>IPCClient.Instance.PostMessage</code></li> </ul> <h5>请求参数说明</h5> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">必填</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">dataModel</td> <td style="text-align: left;">是</td> <td style="text-align: left;">doc_object</td> <td>待检出文档对象</td> </tr> </tbody> </table> <p><strong>doc_object 参数</strong></p> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">必填</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">rootFileName</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>CAD根文档名称</td> </tr> <tr> <td style="text-align: left;">files</td> <td style="text-align: left;">是</td> <td style="text-align: left;">array[file_object]</td> <td>待检出的文档列表</td> </tr> </tbody> </table> <p><strong>file_object 参数</strong></p> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">必填</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">cadId</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>插件自行生成的Guid,客户端响应结果中,也会携带该Id,以便数据进行唯一匹配</td> </tr> <tr> <td style="text-align: left;">fileName</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>CAD文档名称</td> </tr> </tbody> </table> <h5>完整请求示例</h5> <pre><code>{ &amp;quot;dataModel&amp;quot;: { &amp;quot;rootFileName&amp;quot;: &amp;quot;根装配件.SLDASM&amp;quot;, &amp;quot;files&amp;quot;: [ { &amp;quot;cadId&amp;quot;: &amp;quot;057e6bd6-2b30-42cb-bf54-684529852e29&amp;quot;, &amp;quot;fileName&amp;quot;: &amp;quot;子零件.SLDPRT&amp;quot; }, { &amp;quot;cadId&amp;quot;: &amp;quot;bd626749-1c42-4ec1-ad33-f5db9e63b3a2&amp;quot;, &amp;quot;fileName&amp;quot;: &amp;quot;根装配件.SLDASM&amp;quot; } ] }, &amp;quot;abstractCadType&amp;quot;: &amp;quot;_3d&amp;quot;, &amp;quot;cadType&amp;quot;: &amp;quot;solidworks&amp;quot;, &amp;quot;cadCommand&amp;quot;: 57, &amp;quot;msgSendWay&amp;quot;: 0 }</code></pre> <h4>响应</h4> <h5>返回示例</h5> <pre><code>{ &amp;quot;data&amp;quot;: { &amp;quot;dataModel&amp;quot;: [ { &amp;quot;success&amp;quot;: true, &amp;quot;message&amp;quot;: &amp;quot;&amp;quot;, &amp;quot;cadId&amp;quot;: &amp;quot;bd626749-1c42-4ec1-ad33-f5db9e63b3a2&amp;quot;, &amp;quot;fileName&amp;quot;: &amp;quot;根装配件.SLDASM&amp;quot; }, { &amp;quot;success&amp;quot;: false, &amp;quot;message&amp;quot;: &amp;quot;A-00003627: 只有“检出”状态才能执行此操作。&amp;quot;, &amp;quot;cadId&amp;quot;: &amp;quot;057e6bd6-2b30-42cb-bf54-684529852e29&amp;quot;, &amp;quot;fileName&amp;quot;: &amp;quot;子零件.SLDPRT&amp;quot; } ], &amp;quot;abstractCadType&amp;quot;: &amp;quot;_3d&amp;quot;, &amp;quot;cadType&amp;quot;: &amp;quot;solidworks&amp;quot;, &amp;quot;cadCommand&amp;quot;: 57, &amp;quot;msgSendWay&amp;quot;: 0 }, &amp;quot;success&amp;quot;: true, &amp;quot;message&amp;quot;: null, &amp;quot;errCode&amp;quot;: null }</code></pre> <h5>返回参数说明</h5> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">必填</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">dataModel</td> <td style="text-align: left;">是</td> <td style="text-align: left;">array[result_object]</td> <td>检出结果的集合</td> </tr> </tbody> </table> <p><strong>result_object 参数</strong></p> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">必填</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">success</td> <td style="text-align: left;">是</td> <td style="text-align: left;">bool</td> <td>是否检出成功</td> </tr> <tr> <td style="text-align: left;">message</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>提醒消息</td> </tr> <tr> <td style="text-align: left;">cadId</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>请求时携带的Guid</td> </tr> <tr> <td style="text-align: left;">fileName</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>文档名称</td> </tr> </tbody> </table>

页面列表

ITEM_HTML