金蝶PLM CAD 集成


导入文档(新增模式)

<p>[TOC]</p> <p>&lt;center&gt;<strong><em>说明:本模式仅文档不存在系统中,才会进入!</em></strong>&lt;/center&gt;</p> <h4>请求</h4> <h5>请求命令 CadCommand</h5> <ul> <li><code>EditBomLibrary_New 53</code> 或 <code>ImportDocument 1</code></li> <li>两个命令均能打开 Bom编辑窗口,仅命令的值不一样。</li> </ul> <h5>请求方式</h5> <ul> <li><code>IPCClient.Instance.SendMessage</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;">standard_model</td> <td>集成标准数据模型,详见[这里](<a href="https://www.showdoc.com.cn/kingdeeplm/11558477351049674">https://www.showdoc.com.cn/kingdeeplm/11558477351049674</a> &quot;这里&quot;)</td> </tr> </tbody> </table> <p><strong>standard_model 参数</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;">fileModels</td> <td style="text-align: left;">是</td> <td style="text-align: left;">array[fileModel]</td> <td>标准文档对象模型集合,具体详见[这里](<a href="https://www.showdoc.com.cn/kingdeeplm/11558477351049674">https://www.showdoc.com.cn/kingdeeplm/11558477351049674</a> &quot;这里&quot;)</td> </tr> <tr> <td style="text-align: left;">propModels</td> <td style="text-align: left;">否</td> <td style="text-align: left;">array[property]</td> <td>标准属性对象模型集合,具体详见[这里](<a href="https://www.showdoc.com.cn/kingdeeplm/11558477351049674">https://www.showdoc.com.cn/kingdeeplm/11558477351049674</a> &quot;这里&quot;)</td> </tr> <tr> <td style="text-align: left;">useRootPropId</td> <td style="text-align: left;">否</td> <td style="text-align: left;">string</td> <td>根属性对象的propModelId</td> </tr> </tbody> </table> <h5>完整请求示例</h5> <pre><code>{ &amp;quot;abstractCadType&amp;quot;: &amp;quot;_3d&amp;quot;, &amp;quot;cadCommand&amp;quot;: 53, &amp;quot;cadType&amp;quot;: &amp;quot;solidworks&amp;quot;, &amp;quot;dataModel&amp;quot;: { &amp;quot;fileModels&amp;quot;: [ { &amp;quot;activeConfigPropId&amp;quot;: &amp;quot;d1c01226-dfa9-4453-8dd0-1423d257814c&amp;quot;, &amp;quot;cadId&amp;quot;: &amp;quot;4eabf7f1-f2b3-460f-834a-8d5da4e474b3&amp;quot;, &amp;quot;child&amp;quot;: [ ], &amp;quot;createDate&amp;quot;: &amp;quot;2024-12-26 17:22:21&amp;quot;, &amp;quot;directoryPath&amp;quot;: &amp;quot;D:\\Repos\\非标CAD指导\\Kingdee.PLM.CAD.CustomPlugin\\Kingdee.PLM.CAD.CustomPlugin.Demo\\bin\\Debug\\素材&amp;quot;, &amp;quot;displayName&amp;quot;: &amp;quot;未录入系统的装配件.SLDASM&amp;quot;, &amp;quot;drawingDocs&amp;quot;: [ ], &amp;quot;fileHash&amp;quot;: &amp;quot;74E0C73846D16A97D67267E5F06F392325AD9FD6C2C5CE957298B9D4883F541F&amp;quot;, &amp;quot;fileLevel&amp;quot;: 0, &amp;quot;fileName&amp;quot;: &amp;quot;未录入系统的装配件.SLDASM&amp;quot;, &amp;quot;fileType&amp;quot;: 2, &amp;quot;hasBeenRecord&amp;quot;: false, &amp;quot;isRoot&amp;quot;: true, &amp;quot;isStandarPart&amp;quot;: false, &amp;quot;modifyDate&amp;quot;: &amp;quot;2024-12-26 19:52:34&amp;quot;, &amp;quot;pdfDocs&amp;quot;: [ ], &amp;quot;size&amp;quot;: 23818 } ], &amp;quot;propModels&amp;quot;: [ { &amp;quot;cadId&amp;quot;: &amp;quot;4eabf7f1-f2b3-460f-834a-8d5da4e474b3&amp;quot;, &amp;quot;child&amp;quot;: [ ], &amp;quot;propExpressionInfo&amp;quot;: { }, &amp;quot;propInfo&amp;quot;: { &amp;quot;COLOUR&amp;quot;: &amp;quot;&amp;quot;, &amp;quot;DRAWNO&amp;quot;: &amp;quot;44444455&amp;quot;, &amp;quot;MATERIAL&amp;quot;: &amp;quot;&amp;quot;, &amp;quot;PARTNAME&amp;quot;: &amp;quot;Jair.Test.003&amp;quot;, &amp;quot;PARTNO&amp;quot;: &amp;quot;Jair.Test.003&amp;quot;, &amp;quot;SPEC&amp;quot;: &amp;quot;&amp;quot;, &amp;quot;VERSION&amp;quot;: &amp;quot;A&amp;quot; }, &amp;quot;propInfoType&amp;quot;: &amp;quot;默认&amp;quot;, &amp;quot;propModelId&amp;quot;: &amp;quot;d1c01226-dfa9-4453-8dd0-1423d257814c&amp;quot;, &amp;quot;propTypeInfo&amp;quot;: { } } ], &amp;quot;useRootPropId&amp;quot;: &amp;quot;d1c01226-dfa9-4453-8dd0-1423d257814c&amp;quot; }, &amp;quot;msgSendWay&amp;quot;: 0 }</code></pre> <h4>客户端回调</h4> <p>具体看【[保存/暂存文档时,客户端通知新属性](<a href="https://www.showdoc.com.cn/kingdeeplm/11558482257839657">https://www.showdoc.com.cn/kingdeeplm/11558482257839657</a> &quot;保存/暂存文档时,客户端通知新属性&quot;)】</p>

页面列表

ITEM_HTML