简单实现WEBAPI对接缺料分析单的缺料分析功能

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-23浏览:3

简单实现WEBAPI对接缺料分析单的缺料分析功能

## 问题背景 目前缺料分析单的分析功能为界面开启进度条窗体执行的异步线程。如果需要第三方系统发起缺料分析,需要包装一个页面进程同步执行的分析操作接口,供WEBAPI同步调用。以下为代码样例 ## 实现步骤 1.扩展缺料分析单,新加操作ora_SyncAnalyse.添加操作后添加操作插件,源码参考以下的代码实现。 ![1.webp](/download/01001ef039f0953144b2ae462a2e57dfde8c.webp) ```csharp using Kingdee.BOS.Contracts; using Kingdee.BOS.Core; using Kingdee.BOS.Core.DynamicForm; using Kingdee.BOS.Core.DynamicForm.PlugIn; using Kingdee.BOS.Core.DynamicForm.PlugIn.Args; using Kingdee.BOS.Core.Metadata; using Kingdee.BOS.Orm; using Kingdee.BOS.Orm.DataEntity; using Kingdee.K3.Core.MFG.EntityHelper; using Kingdee.K3.MFG.App; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SampleAppPlugIn { public class SyncAnalyse : AbstractOperationServicePlugIn { public override void AfterExecuteOperationTransaction(AfterExecuteOperationTransaction e) { IOperationResult result = new OperationResult(); FormMetadata billMeta = AppServiceContext.MetadataService.Load(this.Context, "PRD_LackAnalyeBill") as FormMetadata; var extendOption = OperateOption.Create(); //extendOption.SetVariableValue("LackScope", this.Model.ParameterData.GetDynamicObjectItemValue<string>("LackScope")); //extendOption.SetVariableValue("GetScrapd", this.Model.ParameterData.GetDynamicObjectItemValue<string>("GetScrapd", "0")); DynamicObject matchBillObject = AppServiceContext.ViewService.LoadSingle(this.Context, e.DataEntitys[0].GetDynamicValue<long>("Id"), billMeta.BusinessInfo.GetDynamicObjectType()); extendOption.SetVariableValue("TaskId", Guid.NewGuid().ToString()); AppServiceContext.PRDService.PrepareMtrlService.AsyncLackAnalyse(this.Context, matchBillObject, result, extendOption); if (!result.IsSuccess) { this.OperationResult.MergeResult(result); } } } } ``` 2.使用Administrator登入系统,于WEB API白名单功能下找到缺料分析单,把新加的操作添加至白名单(星空8.0以上版本需要这一步) 3.在系统内使用Web API测试该操作是否能调用成功。测试json参考如下: ```json { "Numbers": ["QLFX0000033"] } ``` ![2.webp](/download/0100ea1c65ee21024bcf97795d45d04aa2ba.webp)

简单实现WEBAPI对接缺料分析单的缺料分析功能

## 问题背景目前缺料分析单的分析功能为界面开启进度条窗体执行的异步线程。如果需要第三方系统发起缺料分析,需要包装一个页面进程同步执...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息