480 lines
19 KiB
C#
480 lines
19 KiB
C#
|
using DeviceRepair.DataAccess.Data;
|
|||
|
using DeviceRepair.Models;
|
|||
|
using DeviceRepair.Models.Device;
|
|||
|
using DeviceRepair.Utils;
|
|||
|
using NLog;
|
|||
|
using SqlSugar;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
using System.Data.SqlClient;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
namespace DeviceRepair.DataAccess.Device
|
|||
|
{
|
|||
|
public class DeviceDa : BaseDa
|
|||
|
{
|
|||
|
private static readonly Logger log = LogManager.GetCurrentClassLogger();
|
|||
|
|
|||
|
public DeviceDa() : base()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public DeviceDa(IDictionary<string, string> apiParams) : base(apiParams)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 根据权限获取设备信息
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
public DataSet Get_DEVICE_Datas()
|
|||
|
{
|
|||
|
DataSet dsDatas = new DataSet("Datas");
|
|||
|
try
|
|||
|
{
|
|||
|
if (!ApiParameters.ContainsKey("Auths"))
|
|||
|
{
|
|||
|
return dsDatas;
|
|||
|
}
|
|||
|
|
|||
|
string AuthString = ApiParameters["Auths"];
|
|||
|
string[] auths = AuthString.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
|
|||
|
|
|||
|
int[] devIds = devMain.Ado.SqlQuery<int>("SELECT AutoID FROM dbo.View_DeviceRoot WHERE RootName IN (@RootName)", new { RootName = auths }).ToArray();
|
|||
|
List<DeviceInformationInfo> Datas = devMain.Queryable<DeviceInformationInfo>()
|
|||
|
.Where(x => SqlFunc.ContainsArray(devIds, x.AutoID)).ToList();
|
|||
|
|
|||
|
DataTable table = Datas.ToDataTable();
|
|||
|
dsDatas.Tables.Add(table);
|
|||
|
|
|||
|
return dsDatas;
|
|||
|
}
|
|||
|
catch (SqlException sqlEx)
|
|||
|
{
|
|||
|
throw sqlEx;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
throw ex;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取树形结构
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
public APIResponseData Get_DEVICE_TreeDatas(out DataSet dsDatas)
|
|||
|
{
|
|||
|
dsDatas = new DataSet("Datas");
|
|||
|
try
|
|||
|
{
|
|||
|
if (!ApiParameters.ContainsKey("Auths"))
|
|||
|
{
|
|||
|
return new APIResponseData { Code = -1, Message = "没有设备信息查看权限!" };
|
|||
|
}
|
|||
|
|
|||
|
string FilterValue = string.Empty;
|
|||
|
if (ApiParameters.ContainsKey("FilterValue"))
|
|||
|
{
|
|||
|
FilterValue = ApiParameters["FilterValue"];
|
|||
|
}
|
|||
|
|
|||
|
string AuthString = ApiParameters["Auths"];
|
|||
|
string[] auths = AuthString.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
|
|||
|
|
|||
|
/* 获取权限分组 */
|
|||
|
List<DeviceRouteInfo> route = devMain.Ado.SqlQuery<DeviceRouteInfo>(@";WITH cte
|
|||
|
AS (SELECT AutoID,
|
|||
|
Name
|
|||
|
FROM dbo.DeviceRoute
|
|||
|
WHERE (ParentID = 0)
|
|||
|
UNION ALL
|
|||
|
SELECT dr.AutoID,
|
|||
|
cte_1.Name
|
|||
|
FROM dbo.DeviceRoute AS dr
|
|||
|
INNER JOIN cte AS cte_1
|
|||
|
ON dr.ParentID = cte_1.AutoID)
|
|||
|
SELECT DeviceRoute.*
|
|||
|
FROM dbo.DeviceRoute
|
|||
|
INNER JOIN cte ON cte.AutoID = DeviceRoute.AutoID WHERE cte.Name IN (@Name) AND Status = 1", new { Name = auths }).ToList();
|
|||
|
|
|||
|
int aid = 0;
|
|||
|
int.TryParse(FilterValue, out aid);
|
|||
|
var Root = route.ToDictionary(x => x.AutoID, x => x);
|
|||
|
|
|||
|
List<DeviceInformationInfoTree> Menus = new List<DeviceInformationInfoTree>();
|
|||
|
|
|||
|
foreach (KeyValuePair<int, DeviceRouteInfo> item in Root)
|
|||
|
{
|
|||
|
DeviceRouteInfo dev = item.Value;
|
|||
|
Menus.Add(new DeviceInformationInfoTree
|
|||
|
{
|
|||
|
EquipmentName = dev.Name,
|
|||
|
RouteAutoId = dev.GUID,
|
|||
|
ParentRouteId = dev.ParentID != 0 ? Root[dev.ParentID].GUID : Guid.Empty
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
int[] RouteIds = Root.Keys.ToArray();
|
|||
|
|
|||
|
var exp = Expressionable.Create<DeviceInformationInfoTree>()
|
|||
|
.OrIF(aid > 0, t1 => t1.AutoID == aid)
|
|||
|
.OrIF(!string.IsNullOrEmpty(FilterValue),
|
|||
|
t1 => t1.EquipmentID.Equals(FilterValue, StringComparison.CurrentCultureIgnoreCase)
|
|||
|
|| t1.EquipmentName.Contains(FilterValue)
|
|||
|
|| t1.Remarks.Contains(FilterValue)
|
|||
|
|| t1.Specification.Contains(FilterValue))
|
|||
|
.And(t1 => SqlFunc.ContainsArray(RouteIds, t1.Route)).ToExpression();//拼接表达式
|
|||
|
|
|||
|
|
|||
|
var Datas = devMain.Queryable<DeviceInformationInfo, MaintenanceFormVersionInfo, DeviceRouteInfo>(
|
|||
|
(t1, t2, t3) => new object[] {
|
|||
|
JoinType.Left, t1.MaintenanceFormVersion == t2.AutoID,
|
|||
|
JoinType.Left, t1.Route == t3.AutoID
|
|||
|
}
|
|||
|
).With(SqlWith.NoLock).Select((t1, t2, t3) => new DeviceInformationInfoTree
|
|||
|
{
|
|||
|
AutoID = t1.AutoID,
|
|||
|
ChangeDate = t1.ChangeDate,
|
|||
|
ChangeUser = t1.ChangeUser,
|
|||
|
CreatDate = t1.CreatDate,
|
|||
|
CreatUser = t1.CreatUser,
|
|||
|
EquipmentCategory = t1.EquipmentCategory,
|
|||
|
EquipmentID = t1.EquipmentID,
|
|||
|
EquipmentName = t1.EquipmentName,
|
|||
|
EquipmentOriginalvalue = t1.EquipmentOriginalvalue,
|
|||
|
EquipmentStatus = t1.EquipmentStatus,
|
|||
|
InstallationLocation = t1.InstallationLocation,
|
|||
|
MaintenanceFormVersion = t1.MaintenanceFormVersion,
|
|||
|
MaintenanceFormVersionName = t2.FormName,
|
|||
|
Manufacturer = t1.Manufacturer,
|
|||
|
OperatingParameters = t1.OperatingParameters,
|
|||
|
OwningUnit = t1.OwningUnit,
|
|||
|
Remarks = t1.Remarks,
|
|||
|
SerialNumber = t1.SerialNumber,
|
|||
|
Specification = t1.Specification,
|
|||
|
Totalcapacity = t1.Totalcapacity,
|
|||
|
UsingDate = t1.UsingDate,
|
|||
|
VersionCode = t2.VersionCode,
|
|||
|
VersionRev = t2.VersionRev,
|
|||
|
WarrantyPeriod = t1.WarrantyPeriod,
|
|||
|
Weight = t1.Weight,
|
|||
|
Route = t3.AutoID,
|
|||
|
RouteAutoId = t1.GUID,
|
|||
|
//ParentRouteId = SqlFunc.ContainsArray(RouteIds, t1.Route) ? Root[t1.Route].Guid : Guid.Empty
|
|||
|
}).Where(exp)
|
|||
|
.ToList();
|
|||
|
|
|||
|
bool hasEmpty = Menus.Any(x => x.RouteAutoId == Guid.Empty);
|
|||
|
|
|||
|
foreach (DeviceInformationInfoTree item in Datas)
|
|||
|
{
|
|||
|
item.ParentRouteId = RouteIds.Contains(item.Route) ? Root[item.Route].GUID : Guid.Empty;
|
|||
|
}
|
|||
|
|
|||
|
List<Guid> HasValues = new List<Guid>();
|
|||
|
Guid[] gids = Datas.Select(x => x.ParentRouteId).Distinct().ToArray();
|
|||
|
|
|||
|
do
|
|||
|
{
|
|||
|
if (HasValues.Count == 0)
|
|||
|
HasValues.AddRange(gids);
|
|||
|
|
|||
|
gids = Menus.Where(x => gids.Contains(x.RouteAutoId)).Select(s => s.ParentRouteId).Distinct().ToArray();
|
|||
|
HasValues.AddRange(gids);
|
|||
|
} while (gids.All(x => x == Guid.Empty));
|
|||
|
|
|||
|
Menus.RemoveAll(x => !HasValues.Contains(x.RouteAutoId) && x.ParentRouteId != Guid.Empty);
|
|||
|
Menus.AddRange(Datas);
|
|||
|
|
|||
|
|
|||
|
foreach (DeviceRouteInfo item in route)
|
|||
|
{
|
|||
|
DeviceInformationInfoTree Node = Menus.FirstOrDefault(x => x.RouteAutoId == item.GUID);
|
|||
|
List<DeviceInformationInfoTree> Child = Menus.Where(x => x.Route == item.AutoID).ToList();
|
|||
|
if (Node != null && Child.Count > 0)
|
|||
|
{
|
|||
|
Node.Totalcapacity = Child.Sum(x => x.Totalcapacity);
|
|||
|
Node.Weight = Child.Sum(x => x.Weight);
|
|||
|
Node.EquipmentOriginalvalue = Child.Sum(x => x.EquipmentOriginalvalue);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
DataTable table = Menus.ToDataTable();
|
|||
|
dsDatas.Tables.Add(table);
|
|||
|
|
|||
|
return new APIResponseData { Code = 1, Message = "操作成功!" };
|
|||
|
}
|
|||
|
catch (SqlException sqlEx)
|
|||
|
{
|
|||
|
throw sqlEx;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
throw ex;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取设备分组数据
|
|||
|
/// </summary>
|
|||
|
/// <param name="dsDatas"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public APIResponseData Get_DEVICE_Route(out DataSet dsDatas)
|
|||
|
{
|
|||
|
dsDatas = new DataSet("Datas");
|
|||
|
try
|
|||
|
{
|
|||
|
if (!ApiParameters.ContainsKey("Auths"))
|
|||
|
{
|
|||
|
return new APIResponseData { Code = -1, Message = "没有设备信息查看权限!" };
|
|||
|
}
|
|||
|
|
|||
|
string FilterValue = string.Empty;
|
|||
|
if (ApiParameters.ContainsKey("FilterValue"))
|
|||
|
{
|
|||
|
FilterValue = ApiParameters["FilterValue"];
|
|||
|
}
|
|||
|
|
|||
|
string AuthString = ApiParameters["Auths"];
|
|||
|
string[] auths = AuthString.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
|
|||
|
|
|||
|
/* 获取权限分组 */
|
|||
|
List<DeviceRouteInfo> route = devMain.Ado.SqlQuery<DeviceRouteInfo>(@";WITH cte
|
|||
|
AS (SELECT AutoID,
|
|||
|
Name
|
|||
|
FROM dbo.DeviceRoute
|
|||
|
WHERE (ParentID = 0)
|
|||
|
UNION ALL
|
|||
|
SELECT dr.AutoID,
|
|||
|
cte_1.Name
|
|||
|
FROM dbo.DeviceRoute AS dr
|
|||
|
INNER JOIN cte AS cte_1
|
|||
|
ON dr.ParentID = cte_1.AutoID)
|
|||
|
SELECT DeviceRoute.*
|
|||
|
FROM dbo.DeviceRoute
|
|||
|
INNER JOIN cte ON cte.AutoID = DeviceRoute.AutoID WHERE cte.Name IN (@Name) AND Status = 1", new { Name = auths }).ToList();
|
|||
|
|
|||
|
int[] routeIds = route.Select(x => x.AutoID).ToArray();
|
|||
|
List<DeviceRouteInfo> Data = devMain.Queryable<DeviceRouteInfo>().Where(x => x.Status && SqlFunc.ContainsArray(routeIds, x.AutoID)).ToList();
|
|||
|
|
|||
|
DataTable table = Data.ToDataTable();
|
|||
|
dsDatas.Tables.Add(table);
|
|||
|
|
|||
|
return new APIResponseData { Code = 1, Message = "操作成功!" };
|
|||
|
}
|
|||
|
catch (SqlException sqlEx)
|
|||
|
{
|
|||
|
throw sqlEx;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
throw ex;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 判断设备是否存在
|
|||
|
/// 1 存在
|
|||
|
/// 0 不存在
|
|||
|
/// </summary>
|
|||
|
/// <param name="Equipment"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public int Get_DEVICE_EXISTS(string Equipment)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
if (Equipment.IsNull())
|
|||
|
throw new ArgumentException("传入的设备编号不能为空!");
|
|||
|
|
|||
|
Equipment = Equipment.Trim();
|
|||
|
|
|||
|
if (Equipment.Length > 50)
|
|||
|
throw new ArgumentException("传入的设备编号长度不允许超过50!");
|
|||
|
|
|||
|
|
|||
|
return devMain.Queryable<DeviceInformationInfo>().Any(x => x.EquipmentID == Equipment) ? 1 : 0;
|
|||
|
}
|
|||
|
catch (SqlException sqlEx)
|
|||
|
{
|
|||
|
throw sqlEx;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
throw ex;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 设备新增
|
|||
|
/// </summary>
|
|||
|
/// <param name="Data"></param>
|
|||
|
/// <param name="dsDatas"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public APIResponseData Insert_DEVICE_Data(DeviceInformationInfo Data, out DataSet dsDatas)
|
|||
|
{
|
|||
|
dsDatas = new DataSet("Datas");
|
|||
|
try
|
|||
|
{
|
|||
|
if (Data == null)
|
|||
|
throw new ArgumentException("传入的设备对象参数不正确,对象不能为空!");
|
|||
|
|
|||
|
if (!ApiParameters.ContainsKey("OPERATORAUTOID"))
|
|||
|
throw new ArgumentException("传入的操作员对象参数不正确,操作员不能为空!");
|
|||
|
|
|||
|
int Operation = 0;
|
|||
|
if (!int.TryParse(ApiParameters["OPERATORAUTOID"], out Operation))
|
|||
|
throw new ArgumentException("传入的操作员对象参数不正确!");
|
|||
|
|
|||
|
DateTime CurrentDate = DateTime.Now;
|
|||
|
|
|||
|
Data.CreatUser = Operation;
|
|||
|
Data.CreatDate = CurrentDate;
|
|||
|
|
|||
|
DeviceInformationInfo Result = devMain.Insertable(Data).ExecuteReturnEntity();
|
|||
|
|
|||
|
DataTable table = new List<DeviceInformationInfo> { Result }.ToDataTable();
|
|||
|
dsDatas.Tables.Add(table);
|
|||
|
return new APIResponseData { Code = 1, Message = "操作成功!" };
|
|||
|
}
|
|||
|
catch (SqlException sqlEx)
|
|||
|
{
|
|||
|
throw sqlEx;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
throw ex;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 设备信息修改
|
|||
|
/// </summary>
|
|||
|
/// <param name="Data"></param>
|
|||
|
/// <param name="OperationTime"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public APIResponseData Updata_DEVICE_Data(DeviceInformationInfo Data, out DateTime OperationTime)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
DateTime CurrentDate = DateTime.Now;
|
|||
|
OperationTime = CurrentDate;
|
|||
|
|
|||
|
if (Data == null)
|
|||
|
throw new ArgumentException("传入的设备对象参数不正确,对象不能为空!");
|
|||
|
|
|||
|
if (!ApiParameters.ContainsKey("OPERATORAUTOID"))
|
|||
|
throw new ArgumentException("传入的操作员对象参数不正确,操作员不能为空!");
|
|||
|
|
|||
|
int Operation = 0;
|
|||
|
if (!int.TryParse(ApiParameters["OPERATORAUTOID"], out Operation))
|
|||
|
throw new ArgumentException("传入的操作员对象参数不正确!");
|
|||
|
|
|||
|
devMain.BeginTran();
|
|||
|
DeviceInformationInfo Item = devMain.Queryable<DeviceInformationInfo>().First(x => x.AutoID == Data.AutoID);
|
|||
|
if (Item == null)
|
|||
|
throw new ArgumentException($"没有获取到设备编号为:【{Data.EquipmentID}】的设备信息!");
|
|||
|
|
|||
|
Item.EquipmentID = Data.EquipmentID;
|
|||
|
Item.EquipmentName = Data.EquipmentName;
|
|||
|
Item.Specification = Data.Specification;
|
|||
|
Item.Manufacturer = Data.Manufacturer;
|
|||
|
Item.SerialNumber = Data.SerialNumber;
|
|||
|
Item.UsingDate = Data.UsingDate;
|
|||
|
Item.Totalcapacity = Data.Totalcapacity;
|
|||
|
Item.Weight = Data.Weight;
|
|||
|
Item.EquipmentCategory = Data.EquipmentCategory;
|
|||
|
Item.EquipmentOriginalvalue = Data.EquipmentOriginalvalue;
|
|||
|
Item.EquipmentStatus = Data.EquipmentStatus;
|
|||
|
Item.WarrantyPeriod = Data.WarrantyPeriod;
|
|||
|
Item.InstallationLocation = Data.InstallationLocation;
|
|||
|
Item.OwningUnit = Data.OwningUnit;
|
|||
|
Item.OperatingParameters = Data.OperatingParameters;
|
|||
|
Item.MaintenanceFormVersion = Data.MaintenanceFormVersion;
|
|||
|
Item.Route = Data.Route;
|
|||
|
Data.ChangeDate = CurrentDate;
|
|||
|
Data.ChangeUser = Operation;
|
|||
|
Item.Remarks = Data.Remarks;
|
|||
|
|
|||
|
if (devMain.Updateable(Item).ExecuteCommand() > 0)
|
|||
|
{
|
|||
|
devMain.CommitTran();
|
|||
|
return new APIResponseData { Code = 1 };
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
devMain.RollbackTran();
|
|||
|
return new APIResponseData { Code = -1 };
|
|||
|
}
|
|||
|
}
|
|||
|
catch (SqlException sqlEx)
|
|||
|
{
|
|||
|
devMain.RollbackTran();
|
|||
|
throw sqlEx;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
devMain.RollbackTran();
|
|||
|
throw ex;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 修改设备状态
|
|||
|
/// </summary>
|
|||
|
/// <param name="AutoID"></param>
|
|||
|
/// <param name="OperationTime"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public APIResponseData Update_DEVICE_Status(int AutoID, out DateTime OperationTime)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
DateTime CurrentDate = DateTime.Now;
|
|||
|
OperationTime = CurrentDate;
|
|||
|
|
|||
|
if (AutoID == 0)
|
|||
|
throw new ArgumentException("传入的设备主键编号参数不正确,对象不能为空!");
|
|||
|
|
|||
|
if (!ApiParameters.ContainsKey("OPERATORAUTOID"))
|
|||
|
throw new ArgumentException("传入的操作员对象参数不正确,操作员不能为空!");
|
|||
|
|
|||
|
int Operation = 0;
|
|||
|
if (!int.TryParse(ApiParameters["OPERATORAUTOID"], out Operation))
|
|||
|
throw new ArgumentException("传入的操作员对象参数不正确!");
|
|||
|
|
|||
|
devMain.BeginTran();
|
|||
|
DeviceInformationInfo Item = devMain.Queryable<DeviceInformationInfo>().First(x => x.AutoID == AutoID);
|
|||
|
if (Item == null)
|
|||
|
throw new ArgumentException($"没有获取到设备主键编号为:【{AutoID}】的设备信息!");
|
|||
|
|
|||
|
Item.EquipmentStatus = Item.EquipmentStatus == 1 ? 0 : 1;
|
|||
|
Item.ChangeDate = CurrentDate;
|
|||
|
Item.ChangeUser = Operation;
|
|||
|
|
|||
|
if (devMain.Updateable(Item).ExecuteCommand() > 0)
|
|||
|
{
|
|||
|
devMain.CommitTran();
|
|||
|
return new APIResponseData { Code = 1 };
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
devMain.RollbackTran();
|
|||
|
return new APIResponseData { Code = -1 };
|
|||
|
}
|
|||
|
}
|
|||
|
catch (SqlException sqlEx)
|
|||
|
{
|
|||
|
throw sqlEx;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
throw ex;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|