ChargePoint16Service.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. using Dapper;
  2. using EVCB_OCPP.Packet.Messages.SubTypes;
  3. using EVCB_OCPP.WEBAPI.Models;
  4. using EVCB_OCPP.WEBAPI.Models.WebAPI;
  5. using EVCB_OCPP.WEBAPI.Models.WebAPI.Dto;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Configuration;
  9. using System.Data;
  10. using System.Data.SqlClient;
  11. using System.Linq;
  12. using System.Web;
  13. namespace EVCB_OCPP.WEBAPI.Services.Integration
  14. {
  15. public interface IChargePointService
  16. {
  17. int GetNumberofConnectors(string chargeBoxId);
  18. string GetVersionbyChargeBoxId(string chargeBoxId);
  19. List<TransasctionData> GetActiveSessionInfo(string chargeBoxId, List<Measurand> requiredMeasurands, string sessionId = "", string idTag = "");
  20. List<SessionDetail> GetSessionDetail(string chargeBoxId, string sessionId, string idTag, DateTime startTime, DateTime stopTime);
  21. EVSE GetEVSEsbyChargeBoxId(string chargeboxid, DateTime? dateFrom, DateTime? dateTo);
  22. }
  23. public class ChargePoint16Service : IChargePointService
  24. {
  25. string mainConnectionString = ConfigurationManager.ConnectionStrings["MainDBContext"].ConnectionString;
  26. string meterConnectionString = ConfigurationManager.ConnectionStrings["MeterValueDBContext"].ConnectionString;
  27. public DateTime GetLastUpdatedTimebyMachineId(string machineId)
  28. {
  29. DateTime lastUpdatedOn = DateTime.UtcNow;
  30. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  31. {
  32. var parameters = new DynamicParameters();
  33. parameters.Add("@MachineId", machineId, DbType.String, ParameterDirection.Input);
  34. parameters.Add("@LastUpdatedTime", lastUpdatedOn, DbType.DateTime, ParameterDirection.Output);
  35. conn.Execute("GetBasicInfoLastUpdatedTimeById", parameters, commandType: System.Data.CommandType.StoredProcedure);
  36. DateTime? time = null;
  37. try
  38. {
  39. time = parameters.Get<DateTime>("@LastUpdatedTime");
  40. }
  41. catch (Exception ex)
  42. {
  43. time = DateTime.UtcNow;
  44. }
  45. lastUpdatedOn = DateTime.SpecifyKind(time.Value, DateTimeKind.Utc);
  46. }
  47. return lastUpdatedOn;
  48. }
  49. public string GetMachineIdbyChargeBoxId(string chargeBoxId)
  50. {
  51. string machineId = string.Empty;
  52. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  53. {
  54. var parameters = new DynamicParameters();
  55. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  56. string strSql = "Select Id from [dbo].[Machine] where ChargeBoxId=@ChargeBoxId and IsDelete=0; ";
  57. machineId = conn.Query<string>(strSql, parameters).FirstOrDefault();
  58. }
  59. return machineId;
  60. }
  61. public DateTime GetMachineUpdatedOn(string chargeBoxId)
  62. {
  63. DateTime dt = new DateTime();
  64. string machineId = string.Empty;
  65. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  66. {
  67. var parameters = new DynamicParameters();
  68. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  69. string strSql = "Select HeartbeatUpdatedOn from [dbo].[Machine] where ChargeBoxId=@ChargeBoxId and IsDelete=0; ";
  70. dt = conn.Query<DateTime>(strSql, parameters).FirstOrDefault();
  71. }
  72. return dt;
  73. }
  74. public string GetVersionbyChargeBoxId(string chargeBoxId)
  75. {
  76. string version = string.Empty;
  77. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  78. {
  79. var parameters = new DynamicParameters();
  80. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  81. string strSql = "Select BoardVersions from [dbo].[Machine] where ChargeBoxId=@ChargeBoxId and IsDelete=0; ";
  82. version = conn.Query<string>(strSql, parameters).FirstOrDefault();
  83. }
  84. return version;
  85. }
  86. public EVSE GetEVSEsbyChargeBoxId(string chargeboxid, DateTime? dateFrom, DateTime? dateTo)
  87. {
  88. string machineId = GetMachineIdbyChargeBoxId(chargeboxid);
  89. ChargePoint16Service _CPService = new ChargePoint16Service();
  90. var _machineUpdateOn = _CPService.GetLastUpdatedTimebyMachineId(machineId);
  91. var _machine = _CPService.GetBasicInfobyId(machineId);
  92. _machine.LastUpdated = _machineUpdateOn;
  93. return _machine;
  94. }
  95. public EVSE GetBasicInfobyId(string machineId)
  96. {
  97. EVSE cp = new EVSE();
  98. Machine _machine = new Machine();
  99. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  100. {
  101. var parameters = new DynamicParameters();
  102. parameters.Add("@Id", machineId, DbType.String, ParameterDirection.Input);
  103. string strSql = "Select ChargeBoxId,ChargePointSerialNumber,ChargePointModel,RatedPower,Online,OfflineOn ,GunAmt,Latitude,Longitude,ConnectorType from [dbo].[Machine] where Id=@Id and IsDelete=0; ";
  104. _machine = conn.Query<Machine>(strSql, parameters).FirstOrDefault();
  105. }
  106. if (_machine != null)
  107. {
  108. cp.ChargeBoxSystemID = _machine.ChargePointModel + _machine.ChargePointSerialNumber;
  109. cp.ChargeBoxId = _machine.ChargeBoxId;
  110. cp.NumberofConnectors = _machine.GunAmt;
  111. cp.RatedPower = _machine.RatedPower;
  112. cp.Status = _machine.Online ? Status.Available : Status.Offline;
  113. cp.LastUpdated = _machine.CreatedOn > _machine.OfflineOn ? _machine.CreatedOn : _machine.OfflineOn;
  114. cp.Coordinates = new GeoLocation() { Latitude = _machine.Latitude, Longitude = _machine.Longitude };
  115. cp.Connectors = new List<Connector>();
  116. var _Connectors = GetConnectorStatus(_machine.ChargeBoxId);
  117. for (int i = 1; i <= _machine.GunAmt; i++)
  118. {
  119. var _RefConnector = _Connectors.Where(x => x.ConnectorId == i).FirstOrDefault();
  120. if (_RefConnector == null) continue;
  121. cp.Connectors.Add(new Connector()
  122. {
  123. ConnectorId = _RefConnector == null ? i : _RefConnector.ConnectorId,
  124. Status = cp.Status == Status.Offline ? Status.Offline : _RefConnector == null ? Status.Unknown : ConvertConnectorStatus(_RefConnector.Status),
  125. ConnectorType = ConvertConnectorType(int.Parse(_machine.ConnectorType.Split(',')[i - 1])),
  126. FaultMessage = ((ChargePointErrorCode)_RefConnector.ChargePointErrorCodeId).ToString() + (string.IsNullOrEmpty(_RefConnector.VendorErrorCode) ? "" : "-" + _RefConnector.VendorErrorCode)
  127. });
  128. }
  129. }
  130. return _machine == null ? null : cp;
  131. }
  132. public List<ConnectorStatus> GetConnectorStatus(string chargeBoxId)
  133. {
  134. List<ConnectorStatus> _Connectors = new List<ConnectorStatus>();
  135. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  136. {
  137. var parameters = new DynamicParameters();
  138. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  139. string strSql = "Select ConnectorId,Status,ChargePointErrorCodeId,VendorErrorCode from [dbo].[ConnectorStatus] where ChargeBoxId=@ChargeBoxId order by ConnectorId; ";
  140. _Connectors = conn.Query<ConnectorStatus>(strSql, parameters).SkipWhile(x => x.ConnectorId == 0).ToList();
  141. }
  142. return _Connectors;
  143. }
  144. public int GetNumberofConnectors(string chargeBoxId)
  145. {
  146. int count = 0;
  147. if (string.IsNullOrEmpty(chargeBoxId)) return -1;
  148. if (Exists(chargeBoxId))
  149. {
  150. var parameters = new DynamicParameters();
  151. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  152. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  153. {
  154. string strSql = "Select GunAmt from [dbo].[Machine] where ChargeBoxId=@ChargeBoxId and IsDelete=0; ";
  155. count = conn.ExecuteScalarAsync<int>(strSql, parameters, null, EVCBConfiguration.DB_DefaultConnectionTimeout).Result;
  156. }
  157. }
  158. return count;
  159. }
  160. public bool Exists(string chargeBoxId)
  161. {
  162. bool exists = false;
  163. if (string.IsNullOrEmpty(chargeBoxId)) return exists;
  164. var parameters = new DynamicParameters();
  165. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  166. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  167. {
  168. string strSql = "Select count(*) from [dbo].[Machine] where ChargeBoxId=@ChargeBoxId and IsDelete=0; ";
  169. exists = conn.ExecuteScalar<bool>(strSql, parameters, null, EVCBConfiguration.DB_DefaultConnectionTimeout);
  170. }
  171. return exists;
  172. }
  173. public int GetConnectorwithOngoingTransaction(string chargeBoxId, int transactionId)
  174. {
  175. int connectorId = -1;
  176. if (string.IsNullOrEmpty(chargeBoxId)) return connectorId;
  177. var parameters = new DynamicParameters();
  178. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  179. parameters.Add("@TransactionId", transactionId, DbType.Int32, ParameterDirection.Input);
  180. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  181. {
  182. string strSql = "Select ConnectorId from [dbo].[TransactionRecord] where ChargeBoxId=@ChargeBoxId and Id= @TransactionId and StopTime='1991/01/01'; ";
  183. connectorId = conn.Query<Int32>(strSql, parameters).FirstOrDefault();
  184. }
  185. return connectorId;
  186. }
  187. public bool IsTransactionRunning(string chargeBoxId, int transactionId)
  188. {
  189. bool exists = false;
  190. if (string.IsNullOrEmpty(chargeBoxId)) return exists;
  191. var parameters = new DynamicParameters();
  192. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  193. parameters.Add("@TransactionId", transactionId, DbType.Int32, ParameterDirection.Input);
  194. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  195. {
  196. string strSql = "Select Id from [dbo].[TransactionRecord] where ChargeBoxId=@ChargeBoxId and Id= @TransactionId and StopTime='1991/01/01'; ";
  197. int id = conn.Query<Int32>(strSql, parameters).FirstOrDefault();
  198. exists = id > 0 ? true : false;
  199. }
  200. return exists;
  201. }
  202. /// <summary>
  203. /// 取得電樁或充電槍的狀態
  204. /// </summary>
  205. /// <param name="chargeBoxId">Charge Box Id</param>
  206. /// <param name="connectorId">充電槍號(0代表樁/槍號從1開始)</param>
  207. /// <returns>依據OCPP狀態回覆 NULL表示離線</returns>
  208. public ChargePointStatus? GetChargePointCurrentSatus(string chargeBoxId, int connectorId = 0)
  209. {
  210. ChargePointStatus? _status = null;
  211. if (string.IsNullOrEmpty(chargeBoxId)) return _status;
  212. var parameters = new DynamicParameters();
  213. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  214. parameters.Add("@ConnectorId", connectorId, DbType.Int32, ParameterDirection.Input);
  215. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  216. {
  217. string strSql = "Select online from [dbo].[Machine] where ChargeBoxId=@ChargeBoxId and IsDelete=0; ";
  218. bool online = conn.ExecuteScalar<bool>(strSql, parameters, null, EVCBConfiguration.DB_DefaultConnectionTimeout);
  219. if (online)
  220. {
  221. string connectorStrSql = "Select Status from [dbo].[ConnectorStatus] where ChargeBoxId=@ChargeBoxId and ConnectorId=@ConnectorId; ";
  222. int _statusfromdb = conn.Query<Int32>(connectorStrSql, parameters).FirstOrDefault();
  223. _status = (_statusfromdb <= 0 && connectorId == 0) ? ChargePointStatus.Available : (_statusfromdb <= 0 ? ((ChargePointStatus?)null) : ((ChargePointStatus)_statusfromdb));
  224. }
  225. }
  226. return _status;
  227. }
  228. public bool IsOnline(string chargeBoxId)
  229. {
  230. bool online = false;
  231. if (string.IsNullOrEmpty(chargeBoxId)) return online;
  232. var parameters = new DynamicParameters();
  233. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  234. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  235. {
  236. string strSql = "Select online from [dbo].[Machine] where ChargeBoxId=@ChargeBoxId and IsDelete=0; ";
  237. online = conn.ExecuteScalar<bool>(strSql, parameters, null, EVCBConfiguration.DB_DefaultConnectionTimeout);
  238. }
  239. return online;
  240. }
  241. public bool ContainsChargePoint(string chargeBoxId, string customerId)
  242. {
  243. bool existed = false;
  244. if (string.IsNullOrEmpty(chargeBoxId)) return existed;
  245. var parameters = new DynamicParameters();
  246. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  247. parameters.Add("@CustomerId", customerId, DbType.String, ParameterDirection.Input);
  248. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  249. {
  250. string strSql = "Select Count(*) from [dbo].[Machine] where ChargeBoxId=@ChargeBoxId and CustomerId=@CustomerId and IsDelete=0; ";
  251. existed = conn.ExecuteScalar<bool>(strSql, parameters, null, EVCBConfiguration.DB_DefaultConnectionTimeout);
  252. }
  253. return existed;
  254. }
  255. public List<TransasctionData> GetActiveSessionInfo(string chargeBoxId, List<Measurand> requiredMeasurands, string sessionId = "", string idTag = "")
  256. {
  257. List<ConnectorMeterValue> meterValues = new List<ConnectorMeterValue>();
  258. ConnectorMeterValueModel meterModel = null;
  259. List<TransasctionData> transactionDatas = null;
  260. if (string.IsNullOrEmpty(chargeBoxId)) return transactionDatas;
  261. try
  262. {
  263. var parameters = new DynamicParameters();
  264. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  265. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  266. {
  267. string date = DateTime.UtcNow.ToString("yyMMdd");
  268. string strSql = string.Empty;
  269. if (string.IsNullOrEmpty(sessionId) && string.IsNullOrEmpty(idTag))
  270. {
  271. strSql = "Select Id, ConnectorId, StartTime,Fee, StartIdTag from TransactionRecord " +
  272. "where StopTime = '1991-01-01 00:00:00.000' and ChargeBoxId = @ChargeBoxId and StartTime in (select max(StartTime) from[TransactionRecord] where StopTime = '1991-01-01 00:00:00.000' and ChargeBoxId = @ChargeBoxId group by ConnectorId )";
  273. }
  274. else
  275. {
  276. parameters.Add(string.IsNullOrEmpty(sessionId) ? "@StartIdTag" : "@Id", string.IsNullOrEmpty(sessionId) ? idTag : sessionId, DbType.String, ParameterDirection.Input);
  277. strSql = "Select Id, ConnectorId, StartTime,Fee, StartIdTag from TransactionRecord" +
  278. "where StopTime = '1991-01-01 00:00:00.000' and ChargeBoxId = @ChargeBoxId and StartTime in (select max(StartTime) from [TransactionRecord] where " + (string.IsNullOrEmpty(sessionId) ? "StartIdTag=@StartIdTag" : "Id=@TransactionId") + " and StopTime = '1991-01-01 00:00:00.000' and ChargeBoxId = @ChargeBoxId group by ConnectorId )";
  279. }
  280. transactionDatas = conn.Query<TransasctionData>(strSql, parameters, null, true, EVCBConfiguration.DB_DefaultConnectionTimeout).ToList();
  281. }
  282. }
  283. catch (Exception ex)
  284. {
  285. ;
  286. }
  287. for (int i = 0; i < requiredMeasurands.Count; i++)
  288. {
  289. for (int j = 0; j < transactionDatas.Count; j++)
  290. {
  291. var parameters = new DynamicParameters();
  292. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  293. parameters.Add("@TransactionId", transactionDatas[j].Id, DbType.String, ParameterDirection.Input);
  294. parameters.Add("@MeasurandId", requiredMeasurands[i], DbType.String, ParameterDirection.Input);
  295. try
  296. {
  297. int retry = 0;
  298. string date = DateTime.UtcNow.ToString("yyMMdd");
  299. while (retry < 2)
  300. {
  301. retry++;
  302. using (SqlConnection conn = new SqlConnection(meterConnectionString))
  303. {
  304. string strSql = "Select Top(1) * from [dbo].[ConnectorMeterValueRecord" + date + "] where ChargeBoxId=@ChargeBoxId and TransactionId=@TransactionId and MeasurandId=@MeasurandId order by CreatedOn desc;";
  305. meterModel = conn.Query<ConnectorMeterValueModel>(strSql, parameters, null, true, EVCBConfiguration.DB_DefaultConnectionTimeout).FirstOrDefault();
  306. if (meterModel == null)
  307. {
  308. date = transactionDatas[j].StartTime.ToString("yyMMdd");
  309. }
  310. else
  311. {
  312. retry = 2;
  313. }
  314. }
  315. }
  316. if (meterModel != null)
  317. {
  318. if (transactionDatas[j].MeterValues == null)
  319. {
  320. transactionDatas[j].MeterValues = new List<ConnectorMeterValue>();
  321. }
  322. transactionDatas[j].MeterValues.Add(new ConnectorMeterValue()
  323. {
  324. ChargeBoxId = meterModel.ChargeBoxId,
  325. ConnectorId = meterModel.ConnectorId,
  326. CreatedOn = meterModel.CreatedOn,
  327. Context = meterModel.ContextId < 1 ? (ReadingContext?)null : (ReadingContext?)meterModel.ContextId,
  328. Format = meterModel.FormatId < 1 ? (ValueFormat?)null : (ValueFormat?)meterModel.FormatId,
  329. Location = meterModel.LocationId < 1 ? (Location?)null : (Location?)meterModel.LocationId,
  330. Measurand = meterModel.MeasurandId < 1 ? (Measurand?)null : (Measurand?)meterModel.MeasurandId,
  331. Phase = meterModel.PhaseId < 1 ? (Phase?)null : (Phase?)meterModel.PhaseId,
  332. Unit = meterModel.UnitId < 1 ? (UnitOfMeasure?)UnitOfMeasure.Wh : (UnitOfMeasure?)meterModel.UnitId,
  333. Value = meterModel.Value,
  334. TransactionId = meterModel.TransactionId
  335. });
  336. }
  337. }
  338. catch (Exception ex)
  339. {
  340. break;
  341. }
  342. }
  343. }
  344. return transactionDatas;
  345. }
  346. public List<SessionDetail> GetSessionDetail(string chargeBoxId, string sessionId, string idTag, DateTime startTime, DateTime stopTime)
  347. {
  348. List<SessionDetail> detail = new List<SessionDetail>();
  349. List<TransactionRecordModel> transactionModel = null;
  350. if (string.IsNullOrEmpty(chargeBoxId)) return detail;
  351. var parameters = new DynamicParameters();
  352. try
  353. {
  354. bool restrictedRange = false;
  355. if (startTime != new DateTime(1991, 1, 1))
  356. {
  357. restrictedRange = true;
  358. parameters.Add("@startTime", startTime, DbType.DateTime, ParameterDirection.Input);
  359. parameters.Add("@stopTime", stopTime, DbType.DateTime, ParameterDirection.Input);
  360. }
  361. using (SqlConnection conn = new SqlConnection(mainConnectionString))
  362. {
  363. string strSql = string.Empty;
  364. if (!string.IsNullOrEmpty(sessionId) && string.IsNullOrEmpty(idTag))
  365. {
  366. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  367. parameters.Add("@TransactionId", sessionId, DbType.String, ParameterDirection.Input);
  368. strSql = "Select Top(1) * from [dbo].[TransactionRecord] where ChargeBoxId=@ChargeBoxId and Id=@TransactionId and StopTime!='1991-01-01 00:00:00.000' " + (restrictedRange ? " and StartTime >=@startTime and StartTime <=@stopTime" : "") + " Order by Id desc ;";
  369. }
  370. else if (!string.IsNullOrEmpty(idTag) && string.IsNullOrEmpty(sessionId))
  371. {
  372. if (!string.IsNullOrEmpty(chargeBoxId))
  373. {
  374. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  375. }
  376. parameters.Add("@StartIdTag", idTag, DbType.String, ParameterDirection.Input);
  377. strSql = "Select * from [dbo].[TransactionRecord] where " + (!string.IsNullOrEmpty(chargeBoxId) ? " ChargeBoxId=@ChargeBoxId and " : "") + " StartIdTag=@StartIdTag and StopTime!='1991-01-01 00:00:00.000' " + (restrictedRange ? " and StartTime >=@startTime and StartTime <=@stopTime" : "") + " Order by Id desc ;";
  378. }
  379. else
  380. {
  381. parameters.Add("@ChargeBoxId", chargeBoxId, DbType.String, ParameterDirection.Input);
  382. strSql = "Select * from [dbo].[TransactionRecord] where ChargeBoxId=@ChargeBoxId and StopTime!='1991-01-01 00:00:00.000' " + (restrictedRange ? " and StartTime >=@startTime and StartTime <=@stopTime" : "") + " Order by Id desc ;";
  383. }
  384. transactionModel = conn.Query<TransactionRecordModel>(strSql, parameters, null, true, EVCBConfiguration.DB_DefaultConnectionTimeout).ToList();
  385. }
  386. foreach (var item in transactionModel)
  387. {
  388. detail.Add(new SessionDetail()
  389. {
  390. ChargeBoxId = item.ChargeBoxId,
  391. ConnectorId = (int)item.ConnectorId,
  392. IdTag = item.StartIdTag,
  393. MeterStart = item.MeterStart,
  394. MeterStop = item.MeterStop,
  395. StartTime = item.StartTime.ToString(EVCBConfiguration.UTC_DATETIMEFORMAT),
  396. StopTime = item.StopTime.ToString(EVCBConfiguration.UTC_DATETIMEFORMAT),
  397. SessionId = item.Id.ToString(),
  398. StopReason = item.StopReason,
  399. Currency = item.Fee.Length > 3 ? item.Fee.Substring(item.Fee.Length - 3, 3) : "",
  400. TotalCost = item.Cost
  401. });
  402. }
  403. }
  404. catch (Exception ex)
  405. {
  406. }
  407. return detail;
  408. }
  409. private Status ConvertConnectorStatus(int value)
  410. {
  411. Status result = Status.Unknown;
  412. switch (value)
  413. {
  414. case 1://Available
  415. {
  416. result = Status.Available;
  417. }
  418. break;
  419. case 2://Preparing
  420. {
  421. result = Status.Preparing;
  422. }
  423. break;
  424. case 3://Charging
  425. {
  426. result = Status.Charging;
  427. }
  428. break;
  429. case 4://SuspendedEVSE
  430. {
  431. result = Status.SuspendedEVSE;
  432. }
  433. break;
  434. case 5://SuspendedEV
  435. {
  436. result = Status.SuspendedEV;
  437. }
  438. break;
  439. case 6://Finishing
  440. {
  441. result = Status.Finishing;
  442. }
  443. break;
  444. case 7://Reserved
  445. {
  446. result = Status.Reserved;
  447. }
  448. break;
  449. case 8://Unavailable
  450. {
  451. result = Status.Unavailable;
  452. }
  453. break;
  454. case 9://Faulted
  455. {
  456. result = Status.Faulted;
  457. }
  458. break;
  459. default:
  460. break;
  461. }
  462. return result;
  463. }
  464. private ConnectorType ConvertConnectorType(int value)
  465. {
  466. ConnectorType result = (ConnectorType)value;
  467. return result;
  468. }
  469. }
  470. }