ChangePosFeeUtil.cs 27 KB

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