[後端] 完成hinet程序, 修改historyData loadtable 程序
This commit is contained in:
parent
8840d501ed
commit
48dfbe134c
@ -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";
|
||||
|
@ -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
|
||||
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user