using DS.Module.Core; using DS.Module.SqlSugar; using DS.WMS.Core.Flow.Dtos; using DS.WMS.Core.Flow.Entity; using DS.WMS.Core.Flow.Interface; using DS.WMS.Core.Op.Entity; using DS.WMS.Core.Sys.Entity; using Mapster; using Microsoft.Extensions.DependencyInjection; namespace DS.WMS.Core.Flow.Method; public class ClientFlowInstanceService : FlowInstanceService, IClientFlowInstanceService { readonly ISaasDbService saasService; public ClientFlowInstanceService(IServiceProvider serviceProvider) : base(serviceProvider) { saasService = serviceProvider.GetRequiredService(); } protected override FlowInstance BuildInstance(CreateFlowInstanceReq req) { if (string.IsNullOrEmpty(req.TemplateId.ToString())) return null; FlowTemplateTenant template = db.Queryable().First(x => x.Id == req.TemplateId); return template == null ? null : new FlowInstance { CustomName = template.Name, TemplateId = template.Id, BusinessId = req.BusinessId, PermissionId = template.PermissionId, ColumnView = template.ColumnView, Content = template.Content, CallbackURL = template.CallbackURL, AuditType = template.AuditType }; } protected override string GetForkNodeMakers(FlowRuntime wfruntime, string forkNodeId) { string makerList = ""; var nextNode = wfruntime.NextNode; var nextConditionNodeId = wfruntime.GetClientNextConditionNodeId(nextNode); var nextConditionNode = wfruntime.ChildNodes.First(x => x.Id == nextConditionNodeId); if (nextConditionNode.AssigneeType == "role") { var users = db.Queryable().Where(x => nextConditionNode.Roles.Contains(x.RoleId.ToString())) .Select(x => x.UserId).Distinct().ToList(); makerList = GenericHelper.ArrayToString(users, makerList); } else if (nextConditionNode.AssigneeType == "user") { makerList = string.Join(",", nextConditionNode.Users); } return makerList; } protected override FlowRuntime CreateRuntimeService(FlowInstance instance) { return new FlowRuntime(instance, db, saasService, user); } public DataResult GetFlowInstance(long businessId, BusinessType businessType, string type) { var entity = db.Queryable().Where(x => x.BusinessId == businessId && x.BusinessType == businessType && x.AuditType == type) .OrderByDescending(x => x.CreateTime).First(); var result = entity == null ? null : entity.Adapt(); return DataResult.Success(result); } }