cnf
2025-09-13 528d0370cb57f07e291fbf8fb0052718c3fe584c
MES.Service/service/BasicData/MesPositionManager.cs
@@ -35,8 +35,7 @@
                        return 1;
                    break;
                default:
                    throw new ArgumentNullException(
                        $"type没有{unit.Type}这个类型的参数");
                    throw new ArgumentNullException($"type没有{unit.Type}这个类型的参数");
            }
            throw new NotImplementedException("操作失败");
@@ -44,24 +43,21 @@
    }
    // 更新岗位状态的方法
    private bool UpdatePositionStatus(SqlSugarScope db, decimal positionId,
        string status)
    private bool UpdatePositionStatus(SqlSugarScope db, decimal positionId,string status)
    {
        var result = db.Updateable<MesPosition>()
            .SetColumns(s => s.Fforbidstatus == status)
            .Where(s => s.Id == positionId).ExecuteCommand();
        var result = db.Updateable<MesPosition>().SetColumns(s => s.Fforbidstatus == status).Where(s => s.Id == positionId).ExecuteCommand();
        if (result > 0)
        {
            return true;
        }
        throw new NotImplementedException(status == "A" ? "启用失败" : "禁用失败");
    }
    // 插入或更新岗位的方法
    private bool InsertOrUpdatePosition(SqlSugarScope db, MesPosition entity)
    {
        db.Deleteable<MesPosition>()
            .Where(s => s.Id == entity.Id).ExecuteCommand();
        db.Deleteable<MesPosition>().Where(s => s.Id == entity.Id).ExecuteCommand();
        var insert = db.Insertable(entity).ExecuteCommand();
        return insert > 0;
    }
@@ -69,11 +65,11 @@
    // 删除岗位的方法
    private bool DeletePosition(SqlSugarScope db, decimal positionId)
    {
        var deleteById = db.Deleteable<MesPosition>()
            .Where(s => s.Id == positionId).ExecuteCommand();
        var deleteById = db.Deleteable<MesPosition>().Where(s => s.Id == positionId).ExecuteCommand();
        if (deleteById > 0)
        {
            return true;
        }
        throw new NotImplementedException("删除失败");
    }
@@ -90,15 +86,9 @@
            Fforbidstatus = position.FForbidStatus,
            FUseOrgId = position.FUseOrgId,
            FCreateOrgId = position.FCreateOrgId,
            CreationDate = position.FCreateDate != null
                ? DateTime.ParseExact(position.FCreateDate,
                    "yyyy-MM-dd HH:mm:ss", null)
                : null,
            CreationDate = position.FCreateDate != null ? DateTime.ParseExact(position.FCreateDate, "yyyy-MM-dd HH:mm:ss", null) : null,
            DisabledBy = position.FForbidderId,
            DisabledDate = position.FForbidDate != null
                ? DateTime.ParseExact(position.FForbidDate,
                    "yyyy-MM-dd HH:mm:ss", null)
                : null,
            DisabledDate = position.FForbidDate != null ? DateTime.ParseExact(position.FForbidDate, "yyyy-MM-dd HH:mm:ss", null) : null,
            FDocumentStatus =  position.FDocumentStatus
        };
    }
@@ -114,37 +104,31 @@
            list.Add(entity);
        });
        var groupBy = list.GroupBy(s => s.Type)
            .ToDictionary(g => g.Key, g => g.ToList());
        var groupBy = list.GroupBy(s => s.Type).ToDictionary(g => g.Key, g => g.ToList());
        return UseTransaction(db =>
        {
            foreach (var positionGroup in groupBy)
                switch (positionGroup.Key)
                {
                    case "0":
                        if (!UpdatePositionStatusBatch(db, positionGroup.Value,
                                "A")) // 批量启用岗位
                        if (!UpdatePositionStatusBatch(db, positionGroup.Value, "A")) // 批量启用岗位
                            throw new NotImplementedException("启用失败");
                        break;
                    case "1":
                        if (!UpdatePositionStatusBatch(db, positionGroup.Value,
                                "B")) // 批量禁用岗位
                        if (!UpdatePositionStatusBatch(db, positionGroup.Value, "B")) // 批量禁用岗位
                            throw new NotImplementedException("禁用失败");
                        break;
                    case "3":
                        if (!DeletePositionBatch(db,
                                positionGroup.Value)) // 批量删除岗位
                        if (!DeletePositionBatch(db, positionGroup.Value)) // 批量删除岗位
                            throw new NotImplementedException("删除失败");
                        break;
                    case "2":
                    case "4":
                        if (!InsertOrUpdatePositionBatch(db,
                                positionGroup.Value)) // 批量插入或更新岗位
                        if (!InsertOrUpdatePositionBatch(db, positionGroup.Value)) // 批量插入或更新岗位
                            throw new NotImplementedException("同步失败");
                        break;
                    default:
                        throw new ArgumentNullException(
                            $"type没有{positionGroup.Key}这个类型的参数");
                        throw new ArgumentNullException( $"type没有{positionGroup.Key}这个类型的参数");
                }
            return 1;
@@ -152,17 +136,15 @@
    }
    // 批量更新岗位状态的方法
    private bool UpdatePositionStatusBatch(SqlSugarScope db,
        List<MesPosition> positionList, string status)
    private bool UpdatePositionStatusBatch(SqlSugarScope db, List<MesPosition> positionList, string status)
    {
        var ids = positionList.Select(it => it.Id).ToArray();
        var result = db.Updateable<MesPosition>()
            .SetColumns(s => s.Fforbidstatus == status)
            .Where(s => ids.Contains(s.Id)).ExecuteCommand();
        var result = db.Updateable<MesPosition>().SetColumns(s => s.Fforbidstatus == status).Where(s => ids.Contains(s.Id)).ExecuteCommand();
        if (result > 0)
        {
            return true;
        }
        throw new NotImplementedException(status == "A" ? "启用失败" : "禁用失败");
    }
@@ -178,23 +160,22 @@
    }
    // 批量删除岗位的方法
    private bool DeletePositionBatch(SqlSugarScope db,
        List<MesPosition> positionList)
    private bool DeletePositionBatch(SqlSugarScope db,List<MesPosition> positionList)
    {
        var ids = positionList.Select(it => it.Id).ToArray();
        var deleteByIds = db.Deleteable<MesPosition>()
            .Where(s => ids.Contains(s.Id)).ExecuteCommand();
        var deleteByIds = db.Deleteable<MesPosition>().Where(s => ids.Contains(s.Id)).ExecuteCommand();
        if (deleteByIds > 0)
        {
            return true;
        }
        throw new NotImplementedException("删除失败");
    }
    // 批量插入或更新岗位的方法
    private bool InsertOrUpdatePositionBatch(SqlSugarScope db,
        List<MesPosition> positionList)
    private bool InsertOrUpdatePositionBatch(SqlSugarScope db,List<MesPosition> positionList)
    {
        return positionList.All(entity => InsertOrUpdatePosition(db, entity));
    }