ChangePosFeeUtil.cs 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. using Library;
  2. using System.Collections.Generic;
  3. using System;
  4. using System.Linq;
  5. using LitJson;
  6. using MySystem.PxcModels;
  7. namespace MySystem
  8. {
  9. /// <summary>
  10. /// 调整机具服务费工具类
  11. /// </summary>
  12. public class ChangePosFeeUtil
  13. {
  14. #region 金控-设置押金
  15. public static string SetJKDeposit(string SnIds, string DepositId)
  16. {
  17. // string DepositId = "299";
  18. string check = RedisDbconn.Instance.Get<string>("SetJKPosDepositWait:" + SnIds);
  19. if (!string.IsNullOrEmpty(check))
  20. {
  21. return "操作频繁,请稍后再试";
  22. }
  23. RedisDbconn.Instance.Set("SetJKPosDepositWait:" + SnIds, SnIds);
  24. RedisDbconn.Instance.SetExpire("SetJKPosDepositWait:" + SnIds, 10);
  25. WebCMSEntities db = new WebCMSEntities();
  26. Dictionary<string, object> Obj = new Dictionary<string, object>();
  27. string[] SnIdList = SnIds.Split(',');
  28. foreach (string SnId in SnIdList)
  29. {
  30. int SnIdNum = int.Parse(SnId);
  31. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  32. if (pos == null)
  33. {
  34. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  35. }
  36. //判断是否存在关联数据
  37. string content = "";
  38. PosMachineOther otherPos = db.PosMachineOther.FirstOrDefault(m => m.Id == pos.Id);
  39. if(otherPos != null)
  40. {
  41. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "金控-设置押金-返回报文");
  42. content = PublicImportDataService.Instance.LkbSetDeposit(pos.PosSn, decimal.Parse(DepositId));
  43. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
  44. if (content == "fail")
  45. {
  46. return "机具" + pos.PosSn + "设置失败";
  47. }
  48. JsonData jsonObj = JsonMapper.ToObject(content);
  49. content = jsonObj["data"].ToString();
  50. content = PublicImportDataService.Instance.Decrypt(content);
  51. if (jsonObj["respCode"].ToString() != "00")
  52. {
  53. return jsonObj["respMsg"].ToString();
  54. }
  55. }
  56. else
  57. {
  58. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "金控-设置押金-返回报文");
  59. content = function.GetWebRequest("http://sp.kexiaoshuang.com/api/test/SetDeposit?sn=" + pos.PosSn + "&num=" + DepositId);
  60. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
  61. if (content == "fail")
  62. {
  63. return "机具" + pos.PosSn + "设置失败";
  64. }
  65. JsonData jsonObj = JsonMapper.ToObject(content);
  66. if (jsonObj["code"].ToString() != "000000")
  67. {
  68. return jsonObj["message"].ToString();
  69. }
  70. content = jsonObj["data"].ToString();
  71. content = PublicImportDataService.Instance.Decrypt(content);
  72. JsonData contentObj = JsonMapper.ToObject(content);
  73. if (contentObj["respCode"].ToString() != "00")
  74. {
  75. return contentObj["respMsg"].ToString();
  76. }
  77. }
  78. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
  79. var BeforeDeposit = 0;
  80. if (string.IsNullOrEmpty(pos.PrizeParams))
  81. {
  82. BeforeDeposit = 299;
  83. }
  84. else
  85. {
  86. BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
  87. }
  88. decimal amount = decimal.Parse(DepositId);
  89. pos.PrizeParams = amount.ToString("f0");
  90. db.SaveChanges();
  91. //设置押金添加记录
  92. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  93. }
  94. db.Dispose();
  95. return "设置成功";
  96. }
  97. #endregion
  98. #region 开店宝-设置押金
  99. public static string SetKDBDeposit(string SnIds, string DepositId)
  100. {
  101. // string DepositId = "473";
  102. string check = RedisDbconn.Instance.Get<string>("SetKDBPosDepositWait:" + SnIds);
  103. if (!string.IsNullOrEmpty(check))
  104. {
  105. return "操作频繁,请稍后再试";
  106. }
  107. RedisDbconn.Instance.Set("SetKDBPosDepositWait:" + SnIds, SnIds);
  108. RedisDbconn.Instance.SetExpire("SetKDBPosDepositWait:" + SnIds, 10);
  109. WebCMSEntities db = new WebCMSEntities();
  110. string[] SnIdList = SnIds.Split(',');
  111. foreach (string SnId in SnIdList)
  112. {
  113. int SnIdNum = int.Parse(SnId);
  114. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  115. if (pos == null)
  116. {
  117. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  118. }
  119. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "开店宝-设置押金-返回报文");
  120. string content = PublicImportDataService.Instance.ModifyDeposit(pos.PosSn, DepositId);
  121. if (content == "fail")
  122. {
  123. return "机具" + pos.PosSn + "设置失败";
  124. }
  125. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "开店宝-设置押金-返回报文");
  126. var BeforeDeposit = 0;
  127. if (string.IsNullOrEmpty(pos.PrizeParams))
  128. {
  129. BeforeDeposit = 299;
  130. }
  131. else
  132. {
  133. BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
  134. }
  135. decimal amount = decimal.Parse(PublicImportDataService.Instance.GetDepositAmount(DepositId));
  136. pos.PrizeParams = amount.ToString("f0");
  137. db.SaveChanges();
  138. //设置押金添加记录
  139. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  140. }
  141. db.Dispose();
  142. return "设置成功";
  143. }
  144. #endregion
  145. #region 乐刷-设置押金
  146. public static string SetLSDeposit(string SnIds, string DepositId)
  147. {
  148. // string DepositId = "300";
  149. string check = RedisDbconn.Instance.Get<string>("SetLSPosDepositWait:" + SnIds);
  150. if (!string.IsNullOrEmpty(check))
  151. {
  152. return "操作频繁,请稍后再试";
  153. }
  154. RedisDbconn.Instance.Set("SetLSPosDepositWait:" + SnIds, SnIds);
  155. RedisDbconn.Instance.SetExpire("SetLSPosDepositWait:" + SnIds, 10);
  156. WebCMSEntities db = new WebCMSEntities();
  157. Dictionary<string, object> Obj = new Dictionary<string, object>();
  158. string[] SnIdList = SnIds.Split(',');
  159. foreach (string SnId in SnIdList)
  160. {
  161. int SnIdNum = int.Parse(SnId);
  162. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  163. if (pos == null)
  164. {
  165. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  166. }
  167. string OldId = "", NewId = "";
  168. if (DepositId == "100")
  169. {
  170. NewId = "704067039039856640";
  171. }
  172. else if (DepositId == "200")
  173. {
  174. NewId = "709820183485095936";
  175. }
  176. else if (DepositId == "300")
  177. {
  178. NewId = "709820390742437888";
  179. }
  180. string content = PublicImportDataService.Instance.QueryActiveForConfig(pos.PosSn, pos.BrandId);
  181. JsonData jsonObj = JsonMapper.ToObject(content);
  182. if (jsonObj["code"].ToString() == "0")
  183. {
  184. OldId = jsonObj["data"]["posMarket"]["id"].ToString();
  185. }
  186. jsonObj = JsonMapper.ToObject(content);
  187. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + OldId + ":" + NewId, "乐刷-设置押金-返回报文");
  188. content = PublicImportDataService.Instance.SetDepositForLS(pos.PosSn, OldId, NewId, pos.BrandId);
  189. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "乐刷-设置押金-返回报文");
  190. if (content == "fail")
  191. {
  192. return "机具" + pos.PosSn + "设置失败";
  193. }
  194. jsonObj = JsonMapper.ToObject(content);
  195. if (jsonObj["code"].ToString() != "0")
  196. {
  197. return jsonObj["msg"].ToString();
  198. }
  199. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "乐刷-设置押金-返回报文");
  200. var BeforeDeposit = 0;
  201. if (string.IsNullOrEmpty(pos.PrizeParams))
  202. {
  203. BeforeDeposit = 299;
  204. }
  205. else
  206. {
  207. BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
  208. }
  209. decimal amount = decimal.Parse(DepositId);
  210. if (pos.BrandId == 4 || pos.BrandId == 5)
  211. {
  212. amount -= 1;
  213. }
  214. pos.PrizeParams = amount.ToString("f0");
  215. db.SaveChanges();
  216. //设置押金添加记录
  217. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  218. }
  219. db.Dispose();
  220. return "设置成功";
  221. }
  222. #endregion
  223. #region 立刷-设置押金
  224. public static string SetLISDeposit(string SnIds, string DepositId)
  225. {
  226. // string DepositId = "249";
  227. string check = RedisDbconn.Instance.Get<string>("SetLISPosDepositWait:" + SnIds);
  228. if (!string.IsNullOrEmpty(check))
  229. {
  230. return "操作频繁,请稍后再试";
  231. }
  232. RedisDbconn.Instance.Set("SetLISPosDepositWait:" + SnIds, SnIds);
  233. RedisDbconn.Instance.SetExpire("SetLISPosDepositWait:" + SnIds, 10);
  234. WebCMSEntities db = new WebCMSEntities();
  235. Dictionary<string, object> Obj = new Dictionary<string, object>();
  236. string[] SnIdList = SnIds.Split(',');
  237. foreach (string SnId in SnIdList)
  238. {
  239. int SnIdNum = int.Parse(SnId);
  240. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  241. if (pos == null)
  242. {
  243. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  244. }
  245. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "立刷-设置押金-返回报文");
  246. string content = "";
  247. if(pos.BrandId == 6)
  248. {
  249. content = PublicImportDataService.Instance.SetLiSDeposit(pos.PosSn, int.Parse(DepositId));
  250. }
  251. else
  252. {
  253. content = PublicImportDataService.Instance.SetLiSWeDeposit(pos.PosSn, int.Parse(DepositId));
  254. }
  255. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "立刷-设置押金-返回报文");
  256. JsonData jsonObj = JsonMapper.ToObject(content);
  257. if (jsonObj["ret_code"].ToString() != "00")
  258. {
  259. return jsonObj["ret_msg"].ToString();
  260. }
  261. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "立刷-设置押金-返回报文");
  262. var BeforeDeposit = 0;
  263. if (string.IsNullOrEmpty(pos.PrizeParams))
  264. {
  265. BeforeDeposit = 299;
  266. }
  267. else
  268. {
  269. BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
  270. }
  271. pos.PrizeParams = DepositId;
  272. db.SaveChanges();
  273. //设置押金添加记录
  274. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  275. }
  276. db.Dispose();
  277. return "设置成功";
  278. }
  279. #endregion
  280. #region 盛付通-设置押金
  281. public static string SetSFTDeposit(string SnIds, string DepositId)
  282. {
  283. string check = RedisDbconn.Instance.Get<string>("SetSFTPosDepositWait:" + SnIds);
  284. if (!string.IsNullOrEmpty(check))
  285. {
  286. return "操作频繁,请稍后再试";
  287. }
  288. RedisDbconn.Instance.Set("SetSFTPosDepositWait:" + SnIds, SnIds);
  289. RedisDbconn.Instance.SetExpire("SetSFTPosDepositWait:" + SnIds, 10);
  290. Dictionary<string, object> Obj = new Dictionary<string, object>();
  291. WebCMSEntities db = new WebCMSEntities();
  292. string[] SnIdList = SnIds.Split(',');
  293. foreach (string SnId in SnIdList)
  294. {
  295. int SnIdNum = int.Parse(SnId);
  296. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum) ?? new PosMachinesTwo();
  297. if (!string.IsNullOrEmpty(pos.SeoKeyword))
  298. {
  299. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  300. }
  301. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "盛付通-设置押金-返回报文");
  302. string DepositIdString = DepositId;
  303. if(DepositIdString == "0") DepositIdString = "000";
  304. if(DepositId == "0")
  305. {
  306. PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new PosMerchantInfo();
  307. if(!string.IsNullOrEmpty(merchant.KqMerNo))
  308. {
  309. string back = PublicImportDataService.Instance.SftSnBindOrUnbind(pos.PosSn, merchant.KqMerNo);
  310. function.WriteLog("back:" + back, "盛付通-设置押金-返回报文");
  311. }
  312. }
  313. string content = PublicImportDataService.Instance.SetDepositForSft(pos.PosSn, "2024POS" + DepositIdString);
  314. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "盛付通-设置押金-返回报文");
  315. JsonData jsonObj = JsonMapper.ToObject(content);
  316. if (jsonObj["respCode"].ToString() != "00")
  317. {
  318. return jsonObj["errorMsg"].ToString();
  319. }
  320. var BeforeDeposit = 0;
  321. if (string.IsNullOrEmpty(pos.PrizeParams))
  322. {
  323. BeforeDeposit = 299;
  324. }
  325. else
  326. {
  327. BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
  328. }
  329. pos.PrizeParams = DepositId.Replace("2024POS", "");
  330. db.SaveChanges();
  331. //设置押金添加记录
  332. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  333. }
  334. db.Dispose();
  335. return "设置成功";
  336. }
  337. #endregion
  338. #region 海科-设置押金
  339. public static string SetHKDeposit(string SnIds, string DepositId)
  340. {
  341. // string DepositId = "300";
  342. string check = RedisDbconn.Instance.Get<string>("SetHKPosDepositWait:" + SnIds);
  343. if (!string.IsNullOrEmpty(check))
  344. {
  345. return "操作频繁,请稍后再试";
  346. }
  347. RedisDbconn.Instance.Set("SetHKPosDepositWait:" + SnIds, SnIds);
  348. RedisDbconn.Instance.SetExpire("SetHkPosDepositWait:" + SnIds, 10);
  349. WebCMSEntities db = new WebCMSEntities();
  350. Dictionary<string, object> Obj = new Dictionary<string, object>();
  351. string[] SnIdList = SnIds.Split(',');
  352. foreach (string SnId in SnIdList)
  353. {
  354. int SnIdNum = int.Parse(SnId);
  355. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  356. if (pos == null)
  357. {
  358. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  359. }
  360. string OldId = "", NewId = "";
  361. if (DepositId == "100")
  362. {
  363. NewId = pos.BrandId == 8 ? "202207011718129" : "202207011718197";
  364. }
  365. else if (DepositId == "200")
  366. {
  367. NewId = pos.BrandId == 8 ? "747200504467566592" : "747199934126108672";
  368. }
  369. else if (DepositId == "300")
  370. {
  371. NewId = pos.BrandId == 8 ? "747193472108732416" : "747193820156276736";
  372. }
  373. string content = PublicImportDataService.Instance.QueryActiveForConfigHK(pos.PosSn, pos.BrandId);
  374. JsonData jsonObj = JsonMapper.ToObject(content);
  375. if (jsonObj["code"].ToString() == "0")
  376. {
  377. OldId = jsonObj["data"]["posMarket"]["id"].ToString();
  378. }
  379. jsonObj = JsonMapper.ToObject(content);
  380. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + OldId + ":" + NewId, "海科-设置押金-返回报文");
  381. content = PublicImportDataService.Instance.SetDepositForHK(pos.PosSn, OldId, NewId, pos.BrandId);
  382. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "海科-设置押金-返回报文");
  383. if (content == "fail")
  384. {
  385. return "机具" + pos.PosSn + "设置失败";
  386. }
  387. jsonObj = JsonMapper.ToObject(content);
  388. if (jsonObj["code"].ToString() != "0")
  389. {
  390. return jsonObj["msg"].ToString();
  391. }
  392. decimal amount = decimal.Parse(DepositId);
  393. var BeforeDeposit = 0;
  394. if (string.IsNullOrEmpty(pos.PrizeParams))
  395. {
  396. BeforeDeposit = 299;
  397. }
  398. else
  399. {
  400. BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
  401. }
  402. if (pos.BrandId == 8 || pos.BrandId == 9)
  403. {
  404. amount -= 1;
  405. }
  406. pos.PrizeParams = amount.ToString("f0");
  407. db.SaveChanges();
  408. //设置押金添加记录
  409. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  410. }
  411. db.Dispose();
  412. return "设置成功";
  413. }
  414. #endregion
  415. #region 联动-设置押金
  416. public static string SetLDDeposit(string SnIds, string DepositId)
  417. {
  418. // string DepositId = "299";
  419. string check = RedisDbconn.Instance.Get<string>("SetLDPosDepositWait:" + SnIds);
  420. if (!string.IsNullOrEmpty(check))
  421. {
  422. return "操作频繁,请稍后再试";
  423. }
  424. RedisDbconn.Instance.Set("SetLDPosDepositWait:" + SnIds, SnIds);
  425. RedisDbconn.Instance.SetExpire("SetLDPosDepositWait:" + SnIds, 10);
  426. Dictionary<string, object> Obj = new Dictionary<string, object>();
  427. WebCMSEntities db = new WebCMSEntities();
  428. string[] SnIdList = SnIds.Split(',');
  429. foreach (string SnId in SnIdList)
  430. {
  431. int SnIdNum = int.Parse(SnId);
  432. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  433. if (pos == null)
  434. {
  435. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  436. }
  437. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "联动-设置押金-返回报文");
  438. string content = PublicImportDataService.Instance.LDServiceFee(pos.PosSn, int.Parse(DepositId), pos.BrandId);
  439. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "联动-设置押金-返回报文");
  440. JsonData jsonObj = JsonMapper.ToObject(content);
  441. if (jsonObj["code"].ToString() != "000000")
  442. {
  443. return jsonObj["msg"].ToString();
  444. }
  445. var BeforeDeposit = 0;
  446. if (string.IsNullOrEmpty(pos.PrizeParams))
  447. {
  448. BeforeDeposit = 299;
  449. }
  450. else
  451. {
  452. BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
  453. }
  454. decimal amount = decimal.Parse(DepositId);
  455. pos.PrizeParams = amount.ToString("f0");
  456. db.SaveChanges();
  457. //设置押金添加记录
  458. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  459. }
  460. db.Dispose();
  461. return "设置成功";
  462. }
  463. #endregion
  464. #region 盒易付-设置押金
  465. public static string SetHYFDeposit(string SnIds, string DepositId)
  466. {
  467. // string DepositId = "299";
  468. string check = RedisDbconn.Instance.Get<string>("SetHYFPosDepositWait:" + SnIds);
  469. if (!string.IsNullOrEmpty(check))
  470. {
  471. return "操作频繁,请稍后再试";
  472. }
  473. RedisDbconn.Instance.Set("SetHYFPosDepositWait:" + SnIds, SnIds);
  474. RedisDbconn.Instance.SetExpire("SetHYFPosDepositWait:" + SnIds, 10);
  475. WebCMSEntities db = new WebCMSEntities();
  476. Dictionary<string, object> Obj = new Dictionary<string, object>();
  477. string[] SnIdList = SnIds.Split(',');
  478. foreach (string SnId in SnIdList)
  479. {
  480. int SnIdNum = int.Parse(SnId);
  481. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  482. if (pos == null)
  483. {
  484. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  485. }
  486. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "盒易付-设置押金-返回报文");
  487. string content = PublicImportDataService.Instance.BoxServiceFee(pos.PosSn, DepositId, pos.BuyUserId);
  488. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "盒易付-设置押金-返回报文");
  489. if (content == "fail")
  490. {
  491. return "机具" + pos.PosSn + "设置失败";
  492. }
  493. JsonData jsonObj = JsonMapper.ToObject(content);
  494. if (jsonObj["resultCode"].ToString() != "1")
  495. {
  496. return jsonObj["errorDesc"].ToString();
  497. }
  498. var BeforeDeposit = 0;
  499. if (string.IsNullOrEmpty(pos.PrizeParams))
  500. {
  501. BeforeDeposit = 299;
  502. }
  503. else
  504. {
  505. BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
  506. }
  507. decimal amount = decimal.Parse(DepositId);
  508. pos.PrizeParams = amount.ToString("f0");
  509. db.SaveChanges();
  510. //设置押金添加记录
  511. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  512. }
  513. db.Dispose();
  514. return "设置成功";
  515. }
  516. #endregion
  517. #region POSP-设置押金
  518. public static string SetPosPDeposit(string SnIds, string DepositId)
  519. {
  520. string policy_code = "";
  521. string policy_name = "";
  522. if(DepositId == "0")
  523. {
  524. policy_code = "LKB_000";
  525. policy_name = "联客宝";
  526. }
  527. else if(DepositId == "99")
  528. {
  529. policy_code = "LKB_99";
  530. policy_name = "联客宝";
  531. }
  532. else if(DepositId == "199")
  533. {
  534. policy_code = "LKB_199";
  535. policy_name = "联客宝";
  536. }
  537. else if(DepositId == "299")
  538. {
  539. policy_code = "LKB_299";
  540. policy_name = "联客宝299押金";
  541. }
  542. string check = RedisDbconn.Instance.Get<string>("SetPosPDepositWait:" + SnIds);
  543. if (!string.IsNullOrEmpty(check))
  544. {
  545. return "操作频繁,请稍后再试";
  546. }
  547. RedisDbconn.Instance.Set("SetPosPDepositWait:" + SnIds, SnIds);
  548. RedisDbconn.Instance.SetExpire("SetPosPDepositWait:" + SnIds, 10);
  549. WebCMSEntities db = new WebCMSEntities();
  550. Dictionary<string, object> Obj = new Dictionary<string, object>();
  551. string[] SnIdList = SnIds.Split(',');
  552. foreach (string SnId in SnIdList)
  553. {
  554. int SnIdNum = int.Parse(SnId);
  555. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  556. if (pos == null)
  557. {
  558. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  559. }
  560. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "POSP-设置押金-返回报文");
  561. List<string> PosList = new List<string>();
  562. PosList.Add(pos.PosSn);
  563. string content = PublicImportDataService.Instance.PospServiceFee(PosList, policy_code, policy_name);
  564. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "POSP-设置押金-返回报文");
  565. if (content == "fail")
  566. {
  567. return "机具" + pos.PosSn + "设置失败";
  568. }
  569. JsonData jsonObj = JsonMapper.ToObject(content);
  570. if (jsonObj["code"].ToString() != "200")
  571. {
  572. return "设置失败";
  573. }
  574. var BeforeDeposit = 0;
  575. if (string.IsNullOrEmpty(pos.PrizeParams))
  576. {
  577. BeforeDeposit = 299;
  578. }
  579. else
  580. {
  581. BeforeDeposit = (int)decimal.Parse(pos.PrizeParams);
  582. }
  583. decimal amount = decimal.Parse(DepositId);
  584. pos.PrizeParams = amount.ToString("f0");
  585. db.SaveChanges();
  586. //设置押金添加记录
  587. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  588. }
  589. db.Dispose();
  590. return "设置成功";
  591. }
  592. #endregion
  593. }
  594. }