合併衝突
This commit is contained in:
commit
af7d66e5ee
@ -234,9 +234,9 @@ namespace Backend.Services.Implement
|
||||
row.parent_path = stationName;
|
||||
|
||||
//full_name 其實是點位名稱 point_name
|
||||
row.full_name = conPoint.Where(x => x.name == tagName).Select(x => x.displayName).FirstOrDefault();
|
||||
if (conPoint.Where(x => x.name == tagName).FirstOrDefault() != null)
|
||||
conPoint.Where(x => x.name == tagName).FirstOrDefault().isHistory = true;
|
||||
row.full_name = conPoint.Where(x => x.name == tagName.Replace('_', '/') && !x.isHistory).Select(x => x.displayName).FirstOrDefault();
|
||||
if (conPoint.Where(x => x.name == tagName.Replace('_', '/') && !x.isHistory).FirstOrDefault() != null)
|
||||
conPoint.Where(x => x.name == tagName.Replace('_', '/') && !x.isHistory).FirstOrDefault().isHistory = true;
|
||||
row.isHistory = true;
|
||||
|
||||
result.Add(row);
|
||||
@ -263,9 +263,9 @@ namespace Backend.Services.Implement
|
||||
|
||||
row.parent_path = stationName;
|
||||
//full_name 其實是點位名稱 point_name
|
||||
row.full_name = conPoint.Where(x => x.name.Contains(tagName) && !x.isHistory).Select(x => x.displayName).FirstOrDefault();
|
||||
if (conPoint.Where(x => x.name.Contains(tagName) && !x.isHistory).FirstOrDefault() != null)
|
||||
conPoint.Where(x => x.name.Contains(tagName) && !x.isHistory).FirstOrDefault().isHistory = true;
|
||||
row.full_name = conPoint.Where(x => x.name.Contains(tagName.Replace('_', '/')) && !x.isHistory).Select(x => x.displayName).FirstOrDefault();
|
||||
if (conPoint.Where(x => x.name.Contains(tagName.Replace('_', '/')) && !x.isHistory).FirstOrDefault() != null)
|
||||
conPoint.Where(x => x.name.Contains(tagName.Replace('_', '/')) && !x.isHistory).FirstOrDefault().isHistory = true;
|
||||
row.isHistory = true;
|
||||
result.Add(row);
|
||||
}
|
||||
@ -321,7 +321,7 @@ namespace Backend.Services.Implement
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
return result.Where(x => x.full_name != null).ToList();
|
||||
}
|
||||
//private static void getRefData(string urlString, string encoded, List<control_point> conPoint, List<ImpNiaItem> result, Welcome data ) //obixHistory data
|
||||
//{
|
||||
|
@ -393,7 +393,6 @@
|
||||
// console.log("loadTable",pageAct.devicePoiName.split(" ")[0])
|
||||
v.type = pageAct.devicePoiName.split(" ")[0];
|
||||
});
|
||||
}
|
||||
|
||||
let tag = "#historyTable";
|
||||
|
||||
@ -434,6 +433,7 @@
|
||||
|
||||
historyTable = new YourTeam.JqDataTables.getTableByStatic(tag, data, columns, column_defs, null, null, null, null, "tpi");
|
||||
}
|
||||
}
|
||||
|
||||
function exportExcel() {
|
||||
let url = baseApiUrl + "/History/OpeExportExcel";
|
||||
|
@ -532,6 +532,7 @@ namespace FrontendWebApi.ApiControllers
|
||||
left join device_master dm ON d.device_building_tag = dm.device_building_tag
|
||||
AND d.device_name_tag = dm.device_name_tag
|
||||
left join device_item di ON d.device_name_tag = di.device_name_tag
|
||||
AND di.device_building_tag = '{post.building_tag}'
|
||||
AND di.deleted = 0
|
||||
AND di.is_show_riserDiagram = 1
|
||||
left join floor f on d.device_floor_tag = f.full_name and f.deleted = 0
|
||||
|
@ -9,6 +9,8 @@ using FrontendWebApi.Models;
|
||||
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
||||
using Repository.BackendRepository.Interface;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Collections.Generic;
|
||||
|
||||
/// <summary>
|
||||
/// HiNet 企業簡訊 API for .NetCore 2.0
|
||||
@ -120,7 +122,7 @@ namespace FrontendWebApi.ApiControllers
|
||||
/// <summary>
|
||||
/// HiNet企業簡訊 Hiair .Net Core API
|
||||
/// </summary>
|
||||
public class HiNetController : MyBaseApiController<GraphManageController>
|
||||
public class HiNetController : MyBaseApiController<HiNetController>
|
||||
{
|
||||
private readonly IBackendRepository backendRepository;
|
||||
public Socket socket;
|
||||
@ -767,11 +769,11 @@ namespace FrontendWebApi.ApiControllers
|
||||
public ActionResult<ApiResult<string>> HiNetMsg([FromBody] HiNetInput input)
|
||||
{
|
||||
ApiResult<string> apiResult = new ApiResult<string>(jwt_str);
|
||||
//if (!jwtlife)
|
||||
//{
|
||||
// apiResult.Code = "5000";
|
||||
// return BadRequest(apiResult);
|
||||
//}
|
||||
if (!jwtlife)
|
||||
{
|
||||
apiResult.Code = "5000";
|
||||
return BadRequest(apiResult);
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
@ -789,8 +791,25 @@ namespace FrontendWebApi.ApiControllers
|
||||
//發送文字簡訊並回傳狀態碼
|
||||
retCode = this.SendMsg(input.Number, input.Msg);
|
||||
//取得messageID或文字描述
|
||||
retContent = this.Get_Message();
|
||||
apiResult.Data = retCode + " : " + retContent;
|
||||
retContent = this.Get_Message(); //return id when sent message
|
||||
apiResult.Data = retCode.ToString();
|
||||
Dictionary<string, object> hiNetMsg = new Dictionary<string, object>();
|
||||
if (retCode == 0)
|
||||
hiNetMsg.Add("@MsgId", retContent);
|
||||
else
|
||||
hiNetMsg.Add("@ErrMessage", retCode + " : " + retContent);
|
||||
|
||||
hiNetMsg.Add("@deleted", 0);
|
||||
hiNetMsg.Add("@Number", input.Number);
|
||||
hiNetMsg.Add("@Message", input.Msg);
|
||||
hiNetMsg.Add("@status", retCode);
|
||||
hiNetMsg.Add("@created_at", DateTime.Now);
|
||||
hiNetMsg.Add("@created_by", myUser.userinfo_guid);
|
||||
backendRepository.AddOneByCustomTableReturnId(hiNetMsg, "hinet_message");
|
||||
|
||||
//Thread.Sleep(5000);
|
||||
//retCode = this.QueryMsg(retContent);
|
||||
//retContent = this.Get_Message(); //return success status id(Successful:20230517103949") when querymsg status
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1148,13 +1148,15 @@ namespace FrontendWebApi.ApiControllers
|
||||
{
|
||||
var device_number = hi.Device_number_point.Split(":")[0];
|
||||
var point = hi.Device_number_point.Split(":")[1];
|
||||
//var tableName = await backgroundServiceMsSqlRepository.GetAllAsync<string>($"select table_name from INFORMATION_SCHEMA.TABLES where table_name like '%{device_number}%'");
|
||||
var tableName = await backgroundServiceMsSqlRepository.GetOneAsync<string>($"select table_name from INFORMATION_SCHEMA.TABLES where table_name like '%{device_number}_{point}%'");
|
||||
if (!string.IsNullOrEmpty(tableName))
|
||||
{
|
||||
var device_item_infos = await frontendRepository.GetAllAsync<DeviceItemInfo>(sqlDeviceItemInfo, new { Device_number = device_number });
|
||||
|
||||
var device_item_info = device_item_infos.Where(x => x.Device_number == device_number && x.Points == point).FirstOrDefault();
|
||||
|
||||
var sql = $@"select '{device_item_info.Building_name}' as Building_name, '{device_item_info.Main_system_name}' as Main_system_name,
|
||||
'{device_item_info.Sub_system_name}' as Sub_system_name, '{device_item_info.Device_number}' as Device_number,
|
||||
'{device_item_info.Sub_system_name}' as Sub_system_name', {device_item_info.Device_number}' as Device_number,
|
||||
'{device_item_info.Device_name}' as Device_name, '{device_item_info.Item_name}' as Item_name, '{device_item_info.Points}' as Points,
|
||||
'{device_item_info.Unit}' as Unit, timestamp as Timestamp, round(value, 2) as Value
|
||||
from FIC_CENTER_{device_number}_{point}
|
||||
@ -1163,6 +1165,7 @@ namespace FrontendWebApi.ApiControllers
|
||||
apiResult.Data.AddRange(
|
||||
await backgroundServiceMsSqlRepository.GetAllAsync<HistoryRawData>(sql, new { startTime = input.Start_timestamp, endTime = input.End_timestamp })
|
||||
);
|
||||
}
|
||||
//foreach (var tn in tableName)
|
||||
//{
|
||||
//}
|
||||
|
Loading…
Reference in New Issue
Block a user