|
@@ -25,82 +25,33 @@ namespace MySystem
|
|
|
}
|
|
|
RedisDbconn.Instance.Set("SetJKPosDepositWait:" + SnIds, SnIds);
|
|
|
RedisDbconn.Instance.SetExpire("SetJKPosDepositWait:" + SnIds, 10);
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
|
|
|
- if (pos == null)
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
//判断是否存在关联数据
|
|
|
string content = "";
|
|
|
- // PosMachineOther otherPos = db.PosMachineOther.FirstOrDefault(m => m.Id == pos.Id);
|
|
|
- // if(otherPos != null)
|
|
|
- // {
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "金控-设置押金-返回报文");
|
|
|
- content = PublicImportDataService.Instance.LkbSetDeposit(pos.PosSn, decimal.Parse(DepositId));
|
|
|
- function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
|
|
|
- if (content == "fail")
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "设置失败";
|
|
|
- }
|
|
|
- JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
- if (jsonObj["code"].ToString() != "000000")
|
|
|
- {
|
|
|
- return jsonObj["message"].ToString();
|
|
|
- }
|
|
|
- content = jsonObj["data"].ToString();
|
|
|
- content = PublicImportDataService.Instance.LkbDecrypt(content);
|
|
|
- JsonData contentObj = JsonMapper.ToObject(content);
|
|
|
- if (contentObj["respCode"].ToString() != "00")
|
|
|
- {
|
|
|
- return contentObj["respMsg"].ToString();
|
|
|
- }
|
|
|
- // }
|
|
|
- // else
|
|
|
- // {
|
|
|
- // function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "金控-设置押金-返回报文");
|
|
|
- // content = function.GetWebRequest("http://sp.kexiaoshuang.com/api/test/SetDeposit?sn=" + pos.PosSn + "&num=" + DepositId);
|
|
|
- // function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
|
|
|
- // if (content == "fail")
|
|
|
- // {
|
|
|
- // return "机具" + pos.PosSn + "设置失败";
|
|
|
- // }
|
|
|
- // JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
- // if (jsonObj["code"].ToString() != "000000")
|
|
|
- // {
|
|
|
- // return jsonObj["message"].ToString();
|
|
|
- // }
|
|
|
- // content = jsonObj["data"].ToString();
|
|
|
- // content = PublicImportDataService.Instance.Decrypt(content);
|
|
|
- // JsonData contentObj = JsonMapper.ToObject(content);
|
|
|
- // if (contentObj["respCode"].ToString() != "00")
|
|
|
- // {
|
|
|
- // return contentObj["respMsg"].ToString();
|
|
|
- // }
|
|
|
- // }
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + DepositId, "金控-设置押金-返回报文");
|
|
|
+ content = PublicImportDataService.Instance.LkbSetDeposit(PosSn, decimal.Parse(DepositId));
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
+ if (content == "fail")
|
|
|
{
|
|
|
- BeforeDeposit = 299;
|
|
|
+ return "机具" + PosSn + "设置失败";
|
|
|
}
|
|
|
- else
|
|
|
+ JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
+ if (jsonObj["code"].ToString() != "000000")
|
|
|
{
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
+ return jsonObj["message"].ToString();
|
|
|
}
|
|
|
- decimal amount = decimal.Parse(DepositId);
|
|
|
- pos.PrizeParams = amount.ToString("f0");
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
+ content = jsonObj["data"].ToString();
|
|
|
+ content = PublicImportDataService.Instance.LkbDecrypt(content);
|
|
|
+ JsonData contentObj = JsonMapper.ToObject(content);
|
|
|
+ if (contentObj["respCode"].ToString() != "00")
|
|
|
+ {
|
|
|
+ return contentObj["respMsg"].ToString();
|
|
|
+ }
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|
|
@@ -118,41 +69,17 @@ namespace MySystem
|
|
|
}
|
|
|
RedisDbconn.Instance.Set("SetKDBPosDepositWait:" + SnIds, SnIds);
|
|
|
RedisDbconn.Instance.SetExpire("SetKDBPosDepositWait:" + SnIds, 10);
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
|
|
|
- if (pos == null)
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "开店宝-设置押金-返回报文");
|
|
|
- string content = PublicImportDataService.Instance.ModifyDeposit(pos.PosSn, DepositId);
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + DepositId, "开店宝-设置押金-返回报文");
|
|
|
+ string content = PublicImportDataService.Instance.ModifyDeposit(PosSn, DepositId);
|
|
|
if (content == "fail")
|
|
|
{
|
|
|
- return "机具" + pos.PosSn + "设置失败";
|
|
|
+ return "机具" + PosSn + "设置失败";
|
|
|
}
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "开店宝-设置押金-返回报文");
|
|
|
-
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
- }
|
|
|
- decimal amount = decimal.Parse(PublicImportDataService.Instance.GetDepositAmount(DepositId));
|
|
|
- pos.PrizeParams = amount.ToString("f0");
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|
|
@@ -160,7 +87,7 @@ namespace MySystem
|
|
|
|
|
|
|
|
|
#region 乐刷-设置押金
|
|
|
- public static string SetLSDeposit(string SnIds, string DepositId)
|
|
|
+ public static string SetLSDeposit(string SnIds, string DepositId, string BrandId = "4")
|
|
|
{
|
|
|
// string DepositId = "300";
|
|
|
string check = RedisDbconn.Instance.Get<string>("SetLSPosDepositWait:" + SnIds);
|
|
@@ -170,17 +97,10 @@ namespace MySystem
|
|
|
}
|
|
|
RedisDbconn.Instance.Set("SetLSPosDepositWait:" + SnIds, SnIds);
|
|
|
RedisDbconn.Instance.SetExpire("SetLSPosDepositWait:" + SnIds, 10);
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
|
|
|
- if (pos == null)
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
string OldId = "", NewId = "";
|
|
|
if (DepositId == "100")
|
|
|
{
|
|
@@ -194,19 +114,19 @@ namespace MySystem
|
|
|
{
|
|
|
NewId = "709820390742437888";
|
|
|
}
|
|
|
- string content = PublicImportDataService.Instance.QueryActiveForConfig(pos.PosSn, pos.BrandId);
|
|
|
+ string content = PublicImportDataService.Instance.QueryActiveForConfig(PosSn, int.Parse(BrandId));
|
|
|
JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["code"].ToString() == "0")
|
|
|
{
|
|
|
OldId = jsonObj["data"]["posMarket"]["id"].ToString();
|
|
|
}
|
|
|
jsonObj = JsonMapper.ToObject(content);
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + OldId + ":" + NewId, "乐刷-设置押金-返回报文");
|
|
|
- content = PublicImportDataService.Instance.SetDepositForLS(pos.PosSn, OldId, NewId, pos.BrandId);
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + OldId + ":" + NewId, "乐刷-设置押金-返回报文");
|
|
|
+ content = PublicImportDataService.Instance.SetDepositForLS(PosSn, OldId, NewId, int.Parse(BrandId));
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "乐刷-设置押金-返回报文");
|
|
|
if (content == "fail")
|
|
|
{
|
|
|
- return "机具" + pos.PosSn + "设置失败";
|
|
|
+ return "机具" + PosSn + "设置失败";
|
|
|
}
|
|
|
jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["code"].ToString() != "0")
|
|
@@ -214,27 +134,8 @@ namespace MySystem
|
|
|
return jsonObj["msg"].ToString();
|
|
|
}
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "乐刷-设置押金-返回报文");
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
- }
|
|
|
- decimal amount = decimal.Parse(DepositId);
|
|
|
- if (pos.BrandId == 4 || pos.BrandId == 5)
|
|
|
- {
|
|
|
- amount -= 1;
|
|
|
- }
|
|
|
- pos.PrizeParams = amount.ToString("f0");
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
+
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|
|
@@ -242,9 +143,8 @@ namespace MySystem
|
|
|
|
|
|
|
|
|
#region 立刷-设置押金
|
|
|
- public static string SetLISDeposit(string SnIds, string DepositId)
|
|
|
+ public static string SetLISDeposit(string SnIds, string DepositId, string BrandId = "6")
|
|
|
{
|
|
|
- // string DepositId = "249";
|
|
|
string check = RedisDbconn.Instance.Get<string>("SetLISPosDepositWait:" + SnIds);
|
|
|
if (!string.IsNullOrEmpty(check))
|
|
|
{
|
|
@@ -252,26 +152,19 @@ namespace MySystem
|
|
|
}
|
|
|
RedisDbconn.Instance.Set("SetLISPosDepositWait:" + SnIds, SnIds);
|
|
|
RedisDbconn.Instance.SetExpire("SetLISPosDepositWait:" + SnIds, 10);
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
|
|
|
- if (pos == null)
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "立刷-设置押金-返回报文");
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + DepositId, "立刷-设置押金-返回报文");
|
|
|
string content = "";
|
|
|
- if(pos.BrandId == 6)
|
|
|
+ if(BrandId == "6")
|
|
|
{
|
|
|
- content = PublicImportDataService.Instance.SetLiSDeposit(pos.PosSn, int.Parse(DepositId));
|
|
|
+ content = PublicImportDataService.Instance.SetLiSDeposit(PosSn, int.Parse(DepositId));
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- content = PublicImportDataService.Instance.SetLiSWeDeposit(pos.PosSn, int.Parse(DepositId));
|
|
|
+ content = PublicImportDataService.Instance.SetLiSWeDeposit(PosSn, int.Parse(DepositId));
|
|
|
}
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "立刷-设置押金-返回报文");
|
|
|
JsonData jsonObj = JsonMapper.ToObject(content);
|
|
@@ -280,22 +173,8 @@ namespace MySystem
|
|
|
return jsonObj["ret_msg"].ToString();
|
|
|
}
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "立刷-设置押金-返回报文");
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
- }
|
|
|
- pos.PrizeParams = DepositId;
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
+
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|
|
@@ -313,51 +192,29 @@ namespace MySystem
|
|
|
RedisDbconn.Instance.Set("SetSFTPosDepositWait:" + SnIds, SnIds);
|
|
|
RedisDbconn.Instance.SetExpire("SetSFTPosDepositWait:" + SnIds, 10);
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum) ?? new PosMachinesTwo();
|
|
|
- if (!string.IsNullOrEmpty(pos.SeoKeyword))
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "盛付通-设置押金-返回报文");
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + DepositId, "盛付通-设置押金-返回报文");
|
|
|
string DepositIdString = DepositId;
|
|
|
if(DepositIdString == "0") DepositIdString = "000";
|
|
|
- if(DepositId == "0")
|
|
|
- {
|
|
|
- PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new PosMerchantInfo();
|
|
|
- if(!string.IsNullOrEmpty(merchant.KqMerNo))
|
|
|
- {
|
|
|
- string back = PublicImportDataService.Instance.SftSnBindOrUnbind(pos.PosSn, merchant.KqMerNo);
|
|
|
- function.WriteLog("back:" + back, "盛付通-设置押金-返回报文");
|
|
|
- }
|
|
|
- }
|
|
|
- string content = PublicImportDataService.Instance.SetDepositForSft(pos.PosSn, "2024POS" + DepositIdString);
|
|
|
+ // if(DepositId == "0")
|
|
|
+ // {
|
|
|
+ // PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new PosMerchantInfo();
|
|
|
+ // if(!string.IsNullOrEmpty(merchant.KqMerNo))
|
|
|
+ // {
|
|
|
+ // string back = PublicImportDataService.Instance.SftSnBindOrUnbind(PosSn, merchant.KqMerNo);
|
|
|
+ // function.WriteLog("back:" + back, "盛付通-设置押金-返回报文");
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ string content = PublicImportDataService.Instance.SetDepositForSft(PosSn, "2024POS" + DepositIdString);
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "盛付通-设置押金-返回报文");
|
|
|
JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["respCode"].ToString() != "00")
|
|
|
{
|
|
|
return jsonObj["errorMsg"].ToString();
|
|
|
}
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
- }
|
|
|
- pos.PrizeParams = DepositId.Replace("2024POS", "");
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|
|
@@ -365,7 +222,7 @@ namespace MySystem
|
|
|
|
|
|
|
|
|
#region 海科-设置押金
|
|
|
- public static string SetHKDeposit(string SnIds, string DepositId)
|
|
|
+ public static string SetHKDeposit(string SnIds, string DepositId, string BrandId = "8")
|
|
|
{
|
|
|
// string DepositId = "300";
|
|
|
string check = RedisDbconn.Instance.Get<string>("SetHKPosDepositWait:" + SnIds);
|
|
@@ -378,68 +235,41 @@ namespace MySystem
|
|
|
WebCMSEntities db = new WebCMSEntities();
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
|
|
|
- if (pos == null)
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
string OldId = "", NewId = "";
|
|
|
if (DepositId == "100")
|
|
|
{
|
|
|
- NewId = pos.BrandId == 8 ? "202207011718129" : "202207011718197";
|
|
|
+ NewId = BrandId == "8" ? "202207011718129" : "202207011718197";
|
|
|
}
|
|
|
else if (DepositId == "200")
|
|
|
{
|
|
|
- NewId = pos.BrandId == 8 ? "747200504467566592" : "747199934126108672";
|
|
|
+ NewId = BrandId == "8" ? "747200504467566592" : "747199934126108672";
|
|
|
}
|
|
|
else if (DepositId == "300")
|
|
|
{
|
|
|
- NewId = pos.BrandId == 8 ? "747193472108732416" : "747193820156276736";
|
|
|
+ NewId = BrandId == "8" ? "747193472108732416" : "747193820156276736";
|
|
|
}
|
|
|
- string content = PublicImportDataService.Instance.QueryActiveForConfigHK(pos.PosSn, pos.BrandId);
|
|
|
+ string content = PublicImportDataService.Instance.QueryActiveForConfigHK(PosSn, int.Parse(BrandId));
|
|
|
JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["code"].ToString() == "0")
|
|
|
{
|
|
|
OldId = jsonObj["data"]["posMarket"]["id"].ToString();
|
|
|
}
|
|
|
jsonObj = JsonMapper.ToObject(content);
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + OldId + ":" + NewId, "海科-设置押金-返回报文");
|
|
|
- content = PublicImportDataService.Instance.SetDepositForHK(pos.PosSn, OldId, NewId, pos.BrandId);
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + OldId + ":" + NewId, "海科-设置押金-返回报文");
|
|
|
+ content = PublicImportDataService.Instance.SetDepositForHK(PosSn, OldId, NewId, int.Parse(BrandId));
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "海科-设置押金-返回报文");
|
|
|
if (content == "fail")
|
|
|
{
|
|
|
- return "机具" + pos.PosSn + "设置失败";
|
|
|
+ return "机具" + PosSn + "设置失败";
|
|
|
}
|
|
|
jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["code"].ToString() != "0")
|
|
|
{
|
|
|
return jsonObj["msg"].ToString();
|
|
|
}
|
|
|
- decimal amount = decimal.Parse(DepositId);
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
- }
|
|
|
- if (pos.BrandId == 8 || pos.BrandId == 9)
|
|
|
- {
|
|
|
- amount -= 1;
|
|
|
- }
|
|
|
- pos.PrizeParams = amount.ToString("f0");
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
-
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|
|
@@ -447,7 +277,7 @@ namespace MySystem
|
|
|
|
|
|
|
|
|
#region 联动-设置押金
|
|
|
- public static string SetLDDeposit(string SnIds, string DepositId)
|
|
|
+ public static string SetLDDeposit(string SnIds, string DepositId, string BrandId = "10")
|
|
|
{
|
|
|
// string DepositId = "299";
|
|
|
string check = RedisDbconn.Instance.Get<string>("SetLDPosDepositWait:" + SnIds);
|
|
@@ -458,41 +288,18 @@ namespace MySystem
|
|
|
RedisDbconn.Instance.Set("SetLDPosDepositWait:" + SnIds, SnIds);
|
|
|
RedisDbconn.Instance.SetExpire("SetLDPosDepositWait:" + SnIds, 10);
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
|
|
|
- if (pos == null)
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "联动-设置押金-返回报文");
|
|
|
- string content = PublicImportDataService.Instance.LDServiceFee(pos.PosSn, int.Parse(DepositId), pos.BrandId);
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + DepositId, "联动-设置押金-返回报文");
|
|
|
+ string content = PublicImportDataService.Instance.LDServiceFee(PosSn, int.Parse(DepositId), int.Parse(BrandId));
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "联动-设置押金-返回报文");
|
|
|
JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["code"].ToString() != "000000")
|
|
|
{
|
|
|
return jsonObj["msg"].ToString();
|
|
|
}
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
- }
|
|
|
- decimal amount = decimal.Parse(DepositId);
|
|
|
- pos.PrizeParams = amount.ToString("f0");
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|
|
@@ -500,7 +307,7 @@ namespace MySystem
|
|
|
|
|
|
|
|
|
#region 盒易付-设置押金
|
|
|
- public static string SetHYFDeposit(string SnIds, string DepositId)
|
|
|
+ public static string SetHYFDeposit(string SnIds, string DepositId, string UserId = "0")
|
|
|
{
|
|
|
// string DepositId = "299";
|
|
|
string check = RedisDbconn.Instance.Get<string>("SetHYFPosDepositWait:" + SnIds);
|
|
@@ -510,46 +317,23 @@ namespace MySystem
|
|
|
}
|
|
|
RedisDbconn.Instance.Set("SetHYFPosDepositWait:" + SnIds, SnIds);
|
|
|
RedisDbconn.Instance.SetExpire("SetHYFPosDepositWait:" + SnIds, 10);
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
|
|
|
- if (pos == null)
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "盒易付-设置押金-返回报文");
|
|
|
- string content = PublicImportDataService.Instance.BoxServiceFee(pos.PosSn, DepositId, pos.BuyUserId);
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + DepositId, "盒易付-设置押金-返回报文");
|
|
|
+ string content = PublicImportDataService.Instance.BoxServiceFee(PosSn, DepositId, int.Parse(UserId));
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "盒易付-设置押金-返回报文");
|
|
|
if (content == "fail")
|
|
|
{
|
|
|
- return "机具" + pos.PosSn + "设置失败";
|
|
|
+ return "机具" + PosSn + "设置失败";
|
|
|
}
|
|
|
JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["resultCode"].ToString() != "1")
|
|
|
{
|
|
|
return jsonObj["errorDesc"].ToString();
|
|
|
}
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
- }
|
|
|
- decimal amount = decimal.Parse(DepositId);
|
|
|
- pos.PrizeParams = amount.ToString("f0");
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|
|
@@ -588,48 +372,25 @@ namespace MySystem
|
|
|
}
|
|
|
RedisDbconn.Instance.Set("SetPosPDepositWait:" + SnIds, SnIds);
|
|
|
RedisDbconn.Instance.SetExpire("SetPosPDepositWait:" + SnIds, 10);
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
|
|
|
- if (pos == null)
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "POSP-设置押金-返回报文");
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + DepositId, "POSP-设置押金-返回报文");
|
|
|
List<string> PosList = new List<string>();
|
|
|
- PosList.Add(pos.PosSn);
|
|
|
+ PosList.Add(PosSn);
|
|
|
string content = PublicImportDataService.Instance.PospServiceFee(PosList, policy_code, policy_name);
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "POSP-设置押金-返回报文");
|
|
|
if (content == "fail")
|
|
|
{
|
|
|
- return "机具" + pos.PosSn + "设置失败";
|
|
|
+ return "机具" + PosSn + "设置失败";
|
|
|
}
|
|
|
JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["code"].ToString() != "200")
|
|
|
{
|
|
|
return "设置失败";
|
|
|
}
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
- }
|
|
|
- decimal amount = decimal.Parse(DepositId);
|
|
|
- pos.PrizeParams = amount.ToString("f0");
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|
|
@@ -646,25 +407,18 @@ namespace MySystem
|
|
|
}
|
|
|
RedisDbconn.Instance.Set("SetLKLPosDepositWait:" + SnIds, SnIds);
|
|
|
RedisDbconn.Instance.SetExpire("SetLKLPosDepositWait:" + SnIds, 10);
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
string[] SnIdList = SnIds.Split(',');
|
|
|
- foreach (string SnId in SnIdList)
|
|
|
+ foreach (string PosSn in SnIdList)
|
|
|
{
|
|
|
- int SnIdNum = int.Parse(SnId);
|
|
|
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
|
|
|
- if (pos == null)
|
|
|
- {
|
|
|
- return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
- }
|
|
|
//判断是否存在关联数据
|
|
|
string content = "";
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "拉卡拉-设置押金-返回报文");
|
|
|
- content = PublicImportDataService.Instance.LkLSetDeposit(pos.PosSn, decimal.Parse(DepositId));
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":请求参数," + PosSn + ":" + DepositId, "拉卡拉-设置押金-返回报文");
|
|
|
+ content = PublicImportDataService.Instance.LkLSetDeposit(PosSn, decimal.Parse(DepositId));
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "拉卡拉-设置押金-返回报文");
|
|
|
if (content == "fail")
|
|
|
{
|
|
|
- return "机具" + pos.PosSn + "设置失败";
|
|
|
+ return "机具" + PosSn + "设置失败";
|
|
|
}
|
|
|
JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["code"].ToString() != "000000")
|
|
@@ -678,23 +432,7 @@ namespace MySystem
|
|
|
return content;
|
|
|
}
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "拉卡拉-设置押金-返回报文");
|
|
|
- var BeforeDeposit = 0;
|
|
|
- if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
|
|
|
- }
|
|
|
- decimal amount = decimal.Parse(DepositId);
|
|
|
- pos.PrizeParams = amount.ToString("f0");
|
|
|
- db.SaveChanges();
|
|
|
-
|
|
|
- //设置押金添加记录
|
|
|
- PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
return "设置成功";
|
|
|
}
|
|
|
#endregion
|