You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
4.1 KiB
C#
120 lines
4.1 KiB
C#
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 Masuit.Tools.Systems;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace DS.WMS.Core.Flow.Method;
|
|
|
|
/// <summary>
|
|
/// ×⻧¶Ë¹¤×÷Á÷ʵÀý¹ÜÀí
|
|
/// </summary>
|
|
public class ClientFlowInstanceService : FlowInstanceService, IClientFlowInstanceService
|
|
{
|
|
readonly ISaasDbService saasService;
|
|
|
|
public ClientFlowInstanceService(IServiceProvider serviceProvider) : base(serviceProvider)
|
|
{
|
|
saasService = serviceProvider.GetRequiredService<ISaasDbService>();
|
|
}
|
|
|
|
protected override FlowInstance BuildInstance(CreateFlowInstanceReq req)
|
|
{
|
|
if (string.IsNullOrEmpty(req.TemplateId.ToString()))
|
|
return null;
|
|
|
|
FlowTemplateTenant template = db.Queryable<FlowTemplateTenant>().First(x => x.Id == req.TemplateId);
|
|
|
|
return template == null ? null : new FlowInstance
|
|
{
|
|
CustomName = template.Name,
|
|
TemplateId = template.Id,
|
|
BusinessId = req.BusinessId,
|
|
BusinessType = req.BusinessType,
|
|
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<SysRoleUser>().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);
|
|
}
|
|
|
|
/// <summary>
|
|
/// »ñÈ¡¹¤×÷Á÷ʵÀýÐÅÏ¢
|
|
/// </summary>
|
|
/// <param name="businessId">ÒµÎñID</param>
|
|
/// <param name="businessType">ÒµÎñÀàÐÍ</param>
|
|
/// <returns></returns>
|
|
public DataResult<List<FlowInstanceRes>> GetFlowInstances(long businessId, BusinessType? businessType)
|
|
{
|
|
var query = db.Queryable<FlowInstance>().Where(x => x.BusinessId == businessId && x.FlowStatus != 1);
|
|
if (businessType.HasValue)
|
|
query = query.Where(x => x.BusinessType == businessType.Value);
|
|
|
|
var list = query.OrderBy(x => x.CreateTime).Select(x => new FlowInstance
|
|
{
|
|
Id = x.Id,
|
|
Content = x.Content,
|
|
AuditType = x.AuditType,
|
|
//CreateBy = x.CreateBy,
|
|
//CreateTime = x.CreateTime
|
|
}).ToList();
|
|
|
|
var list2 = list.Select(x => x.Adapt<FlowInstanceRes>()).ToList();
|
|
foreach (var item in list2)
|
|
{
|
|
item.AuditTypeName = item.AuditType?.ToEnum<AuditType>().GetDescription();
|
|
}
|
|
|
|
return DataResult<List<FlowInstanceRes>>.Success(list2);
|
|
}
|
|
|
|
/// <summary>
|
|
/// ¹¤×÷Á÷ÉóÅú
|
|
/// </summary>
|
|
/// <param name="info">¹¤×÷Á÷ʵÀý</param>
|
|
/// <returns></returns>
|
|
public DataResult AuditFlowInstance(FlowAuditInfo info)
|
|
{
|
|
if (info == null)
|
|
return DataResult.Failed("¸Ã¹¤×÷Á÷²»´æÔÚ!", MultiLanguageConst.FlowInstanceNotExist);
|
|
|
|
if (info.Instance.FlowStatus == FlowStatusEnum.Approve.ToEnumInt())
|
|
return DataResult.Failed("¸Ã¹¤×÷Á÷ÒÑÍê³É!", MultiLanguageConst.FlowInstanceFinished);
|
|
|
|
return AuditFlowCore(info.Status, info.AuditNote, info.Instance);
|
|
}
|
|
} |