|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using Autofac;
|
|
|
|
|
using AutoMapper;
|
|
|
|
|
using Common.Util;
|
|
|
|
|
using Entity.Api.Resp;
|
|
|
|
|
using Entity.Constant;
|
|
|
|
|
using Entity.DbModel.Station;
|
|
|
|
|
using Entity.Dto.Req;
|
|
|
|
|
using HybirdFrameworkCore.Autofac;
|
|
|
|
|
using HybirdFrameworkCore.Autofac.Attribute;
|
|
|
|
|
using HybirdFrameworkCore.Entity;
|
|
|
|
|
using log4net;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using OfficeOpenXml.FormulaParsing.Excel.Functions.Math;
|
|
|
|
|
using Repository.Station;
|
|
|
|
|
using Service.Charger.Client;
|
|
|
|
|
using Service.Charger.Msg.Host.Req;
|
|
|
|
|
using Service.Charger.Server;
|
|
|
|
|
using Service.Execute;
|
|
|
|
|
using Service.Execute.Api;
|
|
|
|
|
using Service.Execute.Model;
|
|
|
|
|
using Service.Execute.Utils;
|
|
|
|
|
using Service.Init;
|
|
|
|
|
using Service.Mgr;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace Service.Station;
|
|
|
|
|
|
|
|
|
|
[Scope("SingleInstance")]
|
|
|
|
|
public class MonitorService
|
|
|
|
|
{
|
|
|
|
|
private static readonly ILog Log = LogManager.GetLogger(typeof(MonitorService));
|
|
|
|
|
public BinInfoRepository BinInfoRepository { get; set; }
|
|
|
|
|
public SwapOrderRepository SwapOrderRepository { get; set; }
|
|
|
|
|
public ChargeOrderRepository ChargeOrderRepository { get; set; }
|
|
|
|
|
public PlcTaskMgr PlcTaskMgr { get; set; }
|
|
|
|
|
|
|
|
|
|
public MoveBinRecordRepository MoveBinRecordRepository { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public SwapOrderBatteryRepository _SwapOrderBatteryRepository { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[DisplayName("获取移仓分页")]
|
|
|
|
|
public async Task<PageResult<MoveBinRecord>> Page(PageMoveBinRecordReq input)
|
|
|
|
|
{
|
|
|
|
|
RefAsync<int> total = 0;
|
|
|
|
|
|
|
|
|
|
var items = await MoveBinRecordRepository.QueryPageAsync(
|
|
|
|
|
entity => true,
|
|
|
|
|
!string.IsNullOrWhiteSpace(input.UpBatterySoc), u => u.UpBatterySoc.Equals(input.UpBatterySoc.Trim()),
|
|
|
|
|
!string.IsNullOrWhiteSpace(input.UpBinNo), u => u.UpBinNo.Equals(input.UpBinNo.Trim()),
|
|
|
|
|
!string.IsNullOrWhiteSpace(input.UpBatteryNo), u => u.UpBatteryNo.Equals(input.UpBatteryNo.Trim()),
|
|
|
|
|
u => u.CreatedTime, OrderByType.Desc, input.PageNum, input.PageSize, total);
|
|
|
|
|
return new PageResult<MoveBinRecord>()
|
|
|
|
|
{
|
|
|
|
|
PageNum = input.PageNum,
|
|
|
|
|
PageSize = input.PageSize,
|
|
|
|
|
ToTal = total,
|
|
|
|
|
Rows = items,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<string> Add(AddMoveBinRecordReq input)
|
|
|
|
|
{
|
|
|
|
|
string result = "";
|
|
|
|
|
|
|
|
|
|
MoveBinRecord moveBinRecord = await MoveBinRecordRepository.InsertAsync(input);
|
|
|
|
|
|
|
|
|
|
return "新增id:" + moveBinRecord.Id;
|
|
|
|
|
}
|
|
|
|
|
public virtual async Task<bool> Update(UpdateMoveBinRecordReq Req)
|
|
|
|
|
{
|
|
|
|
|
return await MoveBinRecordRepository.UpdateAsync(Req);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public virtual async Task<bool> Delete(DeleteMoveBinRecordReq input)
|
|
|
|
|
{
|
|
|
|
|
var user = await MoveBinRecordRepository.QueryByClauseAsync(u => u.Id == input.Id);
|
|
|
|
|
if (user == null)
|
|
|
|
|
throw new ArgumentException($"不存在");
|
|
|
|
|
return await MoveBinRecordRepository.DeleteAsync(user);
|
|
|
|
|
}
|
|
|
|
|
public Result<SwapMonitorScreenResp> GetSwapMonitorData()
|
|
|
|
|
{
|
|
|
|
|
var configBinInfo =
|
|
|
|
|
new MapperConfiguration(cfg => cfg.CreateMap<StepModel, SwappingStateInfoResp>().ReverseMap());
|
|
|
|
|
IMapper mapperBinInfo = configBinInfo.CreateMapper();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<SwappingStateInfoResp> stateInfoList = new List<SwappingStateInfoResp>();
|
|
|
|
|
ConcurrentDictionary<string, StepModel> dictionary = StationSoftMgr.SwappingStateMachine.StepModel;
|
|
|
|
|
stateInfoList = dictionary.Values
|
|
|
|
|
.OrderBy(model => model.StepNo)
|
|
|
|
|
.Select(model => mapperBinInfo.Map<SwappingStateInfoResp>(model))
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var tboxCarInfoModel = StationSoftMgr.SwappingStateMachine.BoxCarInfoModel;
|
|
|
|
|
|
|
|
|
|
List<BinInfo> binInfos = BinInfoRepository.QueryListByClause(i => i.Exists == 1 && i.Status == 1);
|
|
|
|
|
|
|
|
|
|
var plcSwapModel = new PlcSwapModelResp();
|
|
|
|
|
if(ClientMgr.PlcClient!=null)
|
|
|
|
|
{
|
|
|
|
|
plcSwapModel.ModelState = ClientMgr.PlcClient.Auto ? 1010 : 1000;
|
|
|
|
|
plcSwapModel.ControlModel = ClientMgr.PlcClient.Remote ? 1010 : 1000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SwapMonitorScreenResp monitorScreenResp = new SwapMonitorScreenResp();
|
|
|
|
|
monitorScreenResp.PlcSwapModel = plcSwapModel;
|
|
|
|
|
monitorScreenResp.StateInfo = stateInfoList;
|
|
|
|
|
monitorScreenResp.VehicleInfo = new SwapVehicleResp();
|
|
|
|
|
monitorScreenResp.VehicleInfo.OrderNo = StationSoftMgr.SwappingStateMachine.SwapOrder != null
|
|
|
|
|
? StationSoftMgr.SwappingStateMachine.SwapOrder.Sn
|
|
|
|
|
: null;
|
|
|
|
|
monitorScreenResp.VehicleInfo.VelMac = StationSoftMgr.SwappingStateMachine.RfidReadModel != null
|
|
|
|
|
? StationSoftMgr.SwappingStateMachine.RfidReadModel.VelMac
|
|
|
|
|
: null;
|
|
|
|
|
monitorScreenResp.VehicleInfo.LockStatus = tboxCarInfoModel != null ? tboxCarInfoModel.CarStatus?.LockStatus : null;
|
|
|
|
|
monitorScreenResp.VehicleInfo.KeyStatus = tboxCarInfoModel != null ? tboxCarInfoModel.CarStatus?.Keys : null;
|
|
|
|
|
monitorScreenResp.VehicleInfo.VelNo = StationSoftMgr.SwappingStateMachine.RfidReadModel != null
|
|
|
|
|
? StationSoftMgr.SwappingStateMachine.RfidReadModel.VelNo
|
|
|
|
|
: null;
|
|
|
|
|
monitorScreenResp.VehicleInfo.VelVin = StationSoftMgr.SwappingStateMachine.RfidReadModel != null
|
|
|
|
|
? StationSoftMgr.SwappingStateMachine.RfidReadModel.VelVin
|
|
|
|
|
: null;
|
|
|
|
|
monitorScreenResp.VehicleInfo.Break = StationSoftMgr.SwappingStateMachine.BoxCarInfoModel?.CarStatus?.Break;
|
|
|
|
|
monitorScreenResp.VehicleInfo.Gear = StationSoftMgr.SwappingStateMachine.BoxCarInfoModel?.CarStatus?.Gear;
|
|
|
|
|
monitorScreenResp.BatteryInfo = new();
|
|
|
|
|
monitorScreenResp.BatteryInfo.BatteryTotalCount = binInfos.Count;
|
|
|
|
|
monitorScreenResp.BatteryInfo.UsingSwapBatteryCount = binInfos.Select(i => i.ChargeStatus == 2 &&
|
|
|
|
|
i.AmtLock == (int)InfoEnum.AmtBatLockStatus.UnLock &&
|
|
|
|
|
i.Soc > StaticStationInfo.SwapSoc &&
|
|
|
|
|
new TimeSpan(DateTime.Now.Ticks -
|
|
|
|
|
i.LastChargeFinishTime.ToDateTime().Ticks)
|
|
|
|
|
.TotalMinutes >
|
|
|
|
|
StaticStationInfo.SwapFinishChargeTime).Count();
|
|
|
|
|
|
|
|
|
|
if (monitorScreenResp.VehicleInfo.OrderNo!=null)
|
|
|
|
|
{
|
|
|
|
|
SwapOrderBattery queryByClauseAsync = _SwapOrderBatteryRepository.QueryByClause(u => u.SwapOrderSn == monitorScreenResp.VehicleInfo.OrderNo);
|
|
|
|
|
monitorScreenResp.VehicleInfo.DownBatteryBinNo = queryByClauseAsync.DownBatteryBinNo;
|
|
|
|
|
monitorScreenResp.VehicleInfo.UpBatteryBinNo = queryByClauseAsync.UpBatteryBinNo;
|
|
|
|
|
}
|
|
|
|
|
//SwapMonitorScreenResp monitorScreenResp = new()
|
|
|
|
|
//{
|
|
|
|
|
|
|
|
|
|
// PlcSwapModel = plcSwapModel,
|
|
|
|
|
// StateInfo = stateInfoList,
|
|
|
|
|
// VehicleInfo = new SwapVehicleResp()
|
|
|
|
|
// {
|
|
|
|
|
// OrderNo = StationSoftMgr.SwappingStateMachine.SwapOrder != null
|
|
|
|
|
// ? StationSoftMgr.SwappingStateMachine.SwapOrder.Sn
|
|
|
|
|
// : null,
|
|
|
|
|
// VelMac = StationSoftMgr.SwappingStateMachine.RfidReadModel != null
|
|
|
|
|
// ? StationSoftMgr.SwappingStateMachine.RfidReadModel.VelMac
|
|
|
|
|
// : null,
|
|
|
|
|
// LockStatus = tboxCarInfoModel != null ? tboxCarInfoModel.CarStatus.LockStatus : null,
|
|
|
|
|
// KeyStatus = tboxCarInfoModel != null ? tboxCarInfoModel.CarStatus.Keys : null,
|
|
|
|
|
// VelNo = StationSoftMgr.SwappingStateMachine.RfidReadModel != null
|
|
|
|
|
// ? StationSoftMgr.SwappingStateMachine.RfidReadModel.VelNo
|
|
|
|
|
// : null,
|
|
|
|
|
// VelVin = StationSoftMgr.SwappingStateMachine.RfidReadModel != null
|
|
|
|
|
// ? StationSoftMgr.SwappingStateMachine.RfidReadModel.VelVin
|
|
|
|
|
// : null,
|
|
|
|
|
// Break = StationSoftMgr.SwappingStateMachine.BoxCarInfoModel?.CarStatus?.Break,
|
|
|
|
|
// Gear = StationSoftMgr.SwappingStateMachine.BoxCarInfoModel?.CarStatus?.Gear,
|
|
|
|
|
// },
|
|
|
|
|
// BatteryInfo = new()
|
|
|
|
|
// {
|
|
|
|
|
// BatteryTotalCount = binInfos.Count,
|
|
|
|
|
// UsingSwapBatteryCount = binInfos.Select(i => i.ChargeStatus == 2 &&
|
|
|
|
|
// i.AmtLock == (int)InfoEnum.AmtBatLockStatus.UnLock &&
|
|
|
|
|
// i.Soc > StaticStationInfo.SwapSoc &&
|
|
|
|
|
// new TimeSpan(DateTime.Now.Ticks -
|
|
|
|
|
// i.LastChargeFinishTime.ToDateTime().Ticks)
|
|
|
|
|
// .TotalMinutes >
|
|
|
|
|
// StaticStationInfo.SwapFinishChargeTime).Count()
|
|
|
|
|
// }
|
|
|
|
|
//};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Result<SwapMonitorScreenResp>.Success(monitorScreenResp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模式類
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public Result<SwapModelResp> GetModel()
|
|
|
|
|
{
|
|
|
|
|
SwapModelResp resp = new()
|
|
|
|
|
{
|
|
|
|
|
StationStatus = StaticStationInfo.StationStatus,
|
|
|
|
|
StationWay = StaticStationInfo.StationWay,
|
|
|
|
|
StationModel = StaticStationInfo.StationModel
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return Result<SwapModelResp>.Success(resp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 连接状态类
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public Result<DeviceStateResp> GetDeviceState()
|
|
|
|
|
{
|
|
|
|
|
bool isConnected = StationSoftMgr.SwappingStateMachine.BoxCarInfoModel == null
|
|
|
|
|
? false
|
|
|
|
|
: StationSoftMgr.SwappingStateMachine.BoxCarInfoModel.Connected;
|
|
|
|
|
|
|
|
|
|
DeviceStateResp resp = new()
|
|
|
|
|
{
|
|
|
|
|
BoxConnectFlag = isConnected,
|
|
|
|
|
// CloudConnectFlag = CloudClientMgr.CloudClient == null ? false : CloudClientMgr.CloudClient.Connected,
|
|
|
|
|
PlcConnectFlag = ClientMgr.PlcClient != null && ClientMgr.PlcClient.Connected
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return Result<DeviceStateResp>.Success(resp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//TODO:: 首页--当月,当日换电量
|
|
|
|
|
public Result<SwapAndChargingCountResp> SwapAndChargingCount()
|
|
|
|
|
{
|
|
|
|
|
SwapAndChargingCountResp chargingCountResp = new()
|
|
|
|
|
{
|
|
|
|
|
ChargeTodayCount = ChargeOrderRepository.GetCount(i =>
|
|
|
|
|
DateTime.Today <= i.EndTime && i.EndTime <= DateUtils.GetTomorrowFirst()),
|
|
|
|
|
ChargeTotalCount = ChargeOrderRepository.GetCount(i => i.EndTime != null),
|
|
|
|
|
SwapTodayCount =
|
|
|
|
|
SwapOrderRepository.GetCount(i =>
|
|
|
|
|
i.SwapResult != 0 && DateTime.Today <= i.SwapEndTime &&
|
|
|
|
|
i.SwapEndTime <= DateUtils.GetTomorrowFirst()),
|
|
|
|
|
SwapTotalCount = SwapOrderRepository.GetCount(i => i.SwapResult != 0),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return Result<SwapAndChargingCountResp>.Success(chargingCountResp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电池移仓
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="removeBinNo"></param>
|
|
|
|
|
/// <param name="putBinNo"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public Result<bool> BatteryRelocation(ushort removeBinNo, ushort putBinNo, int type = 0)
|
|
|
|
|
{
|
|
|
|
|
MoveBinRecord moveBinRecord = null;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
//校验:出仓位
|
|
|
|
|
BinInfo? removeBin = BinInfoRepository.QueryByClause(i =>
|
|
|
|
|
i.No.Equals(removeBinNo) && (i.ChargeStatus != 1) && i.Exists == 1 &&
|
|
|
|
|
i.AmtLock == 0);
|
|
|
|
|
|
|
|
|
|
if (removeBin == null)
|
|
|
|
|
{
|
|
|
|
|
return Result<bool>.Fail("出仓位状态有误");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BinInfo? putBin = BinInfoRepository.QueryByClause(i =>
|
|
|
|
|
i.No.Equals(putBinNo) && i.Exists == 0 && i.AmtLock == 0 &&
|
|
|
|
|
i.Status == 1);
|
|
|
|
|
if (putBin == null)
|
|
|
|
|
{
|
|
|
|
|
return Result<bool>.Fail("入仓位状态有误");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//TODO::判断是否存在其他任务
|
|
|
|
|
/*if (PlcMgr.PlcClient?.ReadTaskNo() != 0)
|
|
|
|
|
{
|
|
|
|
|
Log.Info("当前存在其他任务");
|
|
|
|
|
return Result<bool>.Fail("当前存在其他任务");
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
moveBinRecord = new MoveBinRecord()
|
|
|
|
|
{
|
|
|
|
|
UpBinNo = removeBinNo.ToString(),
|
|
|
|
|
UpBatteryNo = removeBin.BatteryNo,
|
|
|
|
|
UpBatterySoc = removeBin.Soc.ToString(),
|
|
|
|
|
InBatteryNo = putBin.BatteryNo,
|
|
|
|
|
InBatterySoc = putBin.Soc.ToString(),
|
|
|
|
|
InBinNo = putBinNo.ToString(),
|
|
|
|
|
Status = 0,
|
|
|
|
|
Type = type,
|
|
|
|
|
CreatedTime = DateTime.Now
|
|
|
|
|
};
|
|
|
|
|
moveBinRecord= MoveBinRecordRepository.Insert(moveBinRecord);
|
|
|
|
|
|
|
|
|
|
//发送移仓任务
|
|
|
|
|
MoveCommandReq MoveCommandReq = new MoveCommandReq((byte)removeBinNo,(byte)putBinNo);
|
|
|
|
|
PlcServer PlcServer = new PlcServer();
|
|
|
|
|
PlcServer.SendMoveCommandReq(MoveCommandReq);
|
|
|
|
|
//TODO::判断任务是否执行
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Log.Error($"move battery fail e={e.Message}");
|
|
|
|
|
if (moveBinRecord != null)
|
|
|
|
|
{
|
|
|
|
|
moveBinRecord.Status = 3;
|
|
|
|
|
MoveBinRecordRepository.Update(moveBinRecord);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Result<bool>.Fail();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Result<bool>.Success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Result<List<BinInfoResp>> GetChargeBinOption()
|
|
|
|
|
{
|
|
|
|
|
List<BinInfo> queryListByClause = BinInfoRepository.Query();
|
|
|
|
|
var configBinInfo =
|
|
|
|
|
new MapperConfiguration(cfg => cfg.CreateMap<BinInfo, BinInfoResp>().ReverseMap());
|
|
|
|
|
IMapper mapperBinInfo = configBinInfo.CreateMapper();
|
|
|
|
|
|
|
|
|
|
return Result<List<BinInfoResp>>.Success(mapperBinInfo.Map<List<BinInfoResp>>(queryListByClause));
|
|
|
|
|
}
|
|
|
|
|
}
|