ChangePosFeeUtil.cs 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  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.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.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.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 = PublicImportDataService.Instance.SetLiSDeposit(pos.PosSn, int.Parse(DepositId));
  224. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "立刷-设置押金-返回报文");
  225. JsonData jsonObj = JsonMapper.ToObject(content);
  226. if (jsonObj["ret_code"].ToString() != "00")
  227. {
  228. return jsonObj["ret_msg"].ToString();
  229. }
  230. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "立刷-设置押金-返回报文");
  231. var BeforeDeposit = 0;
  232. if (string.IsNullOrEmpty(pos.PrizeParams))
  233. {
  234. if (RelationClass.GetKqProductBrandInfo(pos.BrandId) == "立刷云电签")
  235. {
  236. BeforeDeposit = 249;
  237. }
  238. else
  239. {
  240. BeforeDeposit = 299;
  241. }
  242. }
  243. else
  244. {
  245. BeforeDeposit = int.Parse(pos.PrizeParams);
  246. }
  247. pos.PrizeParams = DepositId;
  248. db.SaveChanges();
  249. //设置押金添加记录
  250. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  251. }
  252. db.Dispose();
  253. return "设置成功";
  254. }
  255. #endregion
  256. #region 盛付通-设置押金
  257. public static string SetSFTDeposit(string SnIds, string DepositId)
  258. {
  259. string check = RedisDbconn.Instance.Get<string>("SetSFTPosDepositWait:" + SnIds);
  260. if (!string.IsNullOrEmpty(check))
  261. {
  262. return "操作频繁,请稍后再试";
  263. }
  264. RedisDbconn.Instance.Set("SetSFTPosDepositWait:" + SnIds, SnIds);
  265. RedisDbconn.Instance.SetExpire("SetSFTPosDepositWait:" + SnIds, 10);
  266. Dictionary<string, object> Obj = new Dictionary<string, object>();
  267. WebCMSEntities db = new WebCMSEntities();
  268. string[] SnIdList = SnIds.Split(',');
  269. foreach (string SnId in SnIdList)
  270. {
  271. int SnIdNum = int.Parse(SnId);
  272. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  273. if (pos == null)
  274. {
  275. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  276. }
  277. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "盛付通-设置押金-返回报文");
  278. string DepositIdString = DepositId;
  279. if(DepositIdString == "0") DepositIdString = "000";
  280. string content = PublicImportDataService.Instance.SetDepositForSft(pos.PosSn, "2024POS" + DepositIdString);
  281. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "盛付通-设置押金-返回报文");
  282. JsonData jsonObj = JsonMapper.ToObject(content);
  283. if (jsonObj["respCode"].ToString() != "00")
  284. {
  285. return jsonObj["errorMsg"].ToString();
  286. }
  287. var BeforeDeposit = 0;
  288. if (string.IsNullOrEmpty(pos.PrizeParams))
  289. {
  290. BeforeDeposit = 299;
  291. }
  292. else
  293. {
  294. BeforeDeposit = int.Parse(pos.PrizeParams);
  295. }
  296. pos.PrizeParams = DepositId.Replace("2024POS", "");
  297. db.SaveChanges();
  298. //设置押金添加记录
  299. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  300. }
  301. db.Dispose();
  302. return "设置成功";
  303. }
  304. #endregion
  305. #region 海科-设置押金
  306. public static string SetHKDeposit(string SnIds, string DepositId)
  307. {
  308. // string DepositId = "300";
  309. string check = RedisDbconn.Instance.Get<string>("SetHKPosDepositWait:" + SnIds);
  310. if (!string.IsNullOrEmpty(check))
  311. {
  312. return "操作频繁,请稍后再试";
  313. }
  314. RedisDbconn.Instance.Set("SetHKPosDepositWait:" + SnIds, SnIds);
  315. RedisDbconn.Instance.SetExpire("SetHkPosDepositWait:" + SnIds, 10);
  316. WebCMSEntities db = new WebCMSEntities();
  317. Dictionary<string, object> Obj = new Dictionary<string, object>();
  318. string[] SnIdList = SnIds.Split(',');
  319. foreach (string SnId in SnIdList)
  320. {
  321. int SnIdNum = int.Parse(SnId);
  322. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  323. if (pos == null)
  324. {
  325. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  326. }
  327. string OldId = "", NewId = "";
  328. if (DepositId == "100")
  329. {
  330. NewId = pos.BrandId == 8 ? "202207011718129" : "202207011718197";
  331. }
  332. else if (DepositId == "200")
  333. {
  334. NewId = pos.BrandId == 8 ? "747200504467566592" : "747199934126108672";
  335. }
  336. else if (DepositId == "300")
  337. {
  338. NewId = pos.BrandId == 8 ? "747193472108732416" : "747193820156276736";
  339. }
  340. string content = PublicImportDataService.Instance.QueryActiveForConfigHK(pos.PosSn, pos.BrandId);
  341. JsonData jsonObj = JsonMapper.ToObject(content);
  342. if (jsonObj["code"].ToString() == "0")
  343. {
  344. OldId = jsonObj["data"]["posMarket"]["id"].ToString();
  345. }
  346. jsonObj = JsonMapper.ToObject(content);
  347. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + OldId + ":" + NewId, "海科-设置押金-返回报文");
  348. content = PublicImportDataService.Instance.SetDepositForHK(pos.PosSn, OldId, NewId, pos.BrandId);
  349. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "海科-设置押金-返回报文");
  350. if (content == "fail")
  351. {
  352. return "机具" + pos.PosSn + "设置失败";
  353. }
  354. jsonObj = JsonMapper.ToObject(content);
  355. if (jsonObj["code"].ToString() != "0")
  356. {
  357. return jsonObj["msg"].ToString();
  358. }
  359. decimal amount = decimal.Parse(DepositId);
  360. var BeforeDeposit = 0;
  361. if (string.IsNullOrEmpty(pos.PrizeParams))
  362. {
  363. BeforeDeposit = 299;
  364. }
  365. else
  366. {
  367. BeforeDeposit = int.Parse(pos.PrizeParams);
  368. }
  369. if (pos.BrandId == 8 || pos.BrandId == 9)
  370. {
  371. amount -= 1;
  372. }
  373. pos.PrizeParams = amount.ToString("f0");
  374. db.SaveChanges();
  375. //设置押金添加记录
  376. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  377. }
  378. db.Dispose();
  379. return "设置成功";
  380. }
  381. #endregion
  382. #region 联动-设置押金
  383. public static string SetLDDeposit(string SnIds, string DepositId)
  384. {
  385. // string DepositId = "299";
  386. string check = RedisDbconn.Instance.Get<string>("SetLDPosDepositWait:" + SnIds);
  387. if (!string.IsNullOrEmpty(check))
  388. {
  389. return "操作频繁,请稍后再试";
  390. }
  391. RedisDbconn.Instance.Set("SetLDPosDepositWait:" + SnIds, SnIds);
  392. RedisDbconn.Instance.SetExpire("SetLDPosDepositWait:" + SnIds, 10);
  393. Dictionary<string, object> Obj = new Dictionary<string, object>();
  394. WebCMSEntities db = new WebCMSEntities();
  395. string[] SnIdList = SnIds.Split(',');
  396. foreach (string SnId in SnIdList)
  397. {
  398. int SnIdNum = int.Parse(SnId);
  399. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  400. if (pos == null)
  401. {
  402. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  403. }
  404. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "联动-设置押金-返回报文");
  405. string content = PublicImportDataService.Instance.LDServiceFee(pos.PosSn, int.Parse(DepositId), pos.BrandId);
  406. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "联动-设置押金-返回报文");
  407. JsonData jsonObj = JsonMapper.ToObject(content);
  408. if (jsonObj["code"].ToString() != "000000")
  409. {
  410. return jsonObj["msg"].ToString();
  411. }
  412. var BeforeDeposit = 0;
  413. if (string.IsNullOrEmpty(pos.PrizeParams))
  414. {
  415. BeforeDeposit = 299;
  416. }
  417. else
  418. {
  419. BeforeDeposit = int.Parse(pos.PrizeParams);
  420. }
  421. decimal amount = decimal.Parse(DepositId);
  422. pos.PrizeParams = amount.ToString("f0");
  423. db.SaveChanges();
  424. //设置押金添加记录
  425. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  426. }
  427. db.Dispose();
  428. return "设置成功";
  429. }
  430. #endregion
  431. #region 盒易付-设置押金
  432. public static string SetHYFDeposit(string SnIds, string DepositId)
  433. {
  434. // string DepositId = "299";
  435. string check = RedisDbconn.Instance.Get<string>("SetHYFPosDepositWait:" + SnIds);
  436. if (!string.IsNullOrEmpty(check))
  437. {
  438. return "操作频繁,请稍后再试";
  439. }
  440. RedisDbconn.Instance.Set("SetHYFPosDepositWait:" + SnIds, SnIds);
  441. RedisDbconn.Instance.SetExpire("SetHYFPosDepositWait:" + SnIds, 10);
  442. WebCMSEntities db = new WebCMSEntities();
  443. Dictionary<string, object> Obj = new Dictionary<string, object>();
  444. string[] SnIdList = SnIds.Split(',');
  445. foreach (string SnId in SnIdList)
  446. {
  447. int SnIdNum = int.Parse(SnId);
  448. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  449. if (pos == null)
  450. {
  451. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  452. }
  453. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "盒易付-设置押金-返回报文");
  454. string content = PublicImportDataService.Instance.BoxServiceFee(pos.PosSn, DepositId);
  455. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "盒易付-设置押金-返回报文");
  456. if (content == "fail")
  457. {
  458. return "机具" + pos.PosSn + "设置失败";
  459. }
  460. JsonData jsonObj = JsonMapper.ToObject(content);
  461. if (jsonObj["resultCode"].ToString() != "1")
  462. {
  463. return jsonObj["errorDesc"].ToString();
  464. }
  465. var BeforeDeposit = 0;
  466. if (string.IsNullOrEmpty(pos.PrizeParams))
  467. {
  468. BeforeDeposit = 299;
  469. }
  470. else
  471. {
  472. BeforeDeposit = int.Parse(pos.PrizeParams);
  473. }
  474. decimal amount = decimal.Parse(DepositId);
  475. pos.PrizeParams = amount.ToString("f0");
  476. db.SaveChanges();
  477. //设置押金添加记录
  478. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  479. }
  480. db.Dispose();
  481. return "设置成功";
  482. }
  483. #endregion
  484. #region POSP-设置押金
  485. public static string SetPosPDeposit(string SnIds, string DepositId)
  486. {
  487. string policy_code = "";
  488. string policy_name = "";
  489. if(DepositId == "0")
  490. {
  491. policy_code = "LKB_000";
  492. policy_name = "联客宝";
  493. }
  494. else if(DepositId == "99")
  495. {
  496. policy_code = "LKB_99";
  497. policy_name = "联客宝";
  498. }
  499. else if(DepositId == "199")
  500. {
  501. policy_code = "LKB_199";
  502. policy_name = "联客宝";
  503. }
  504. else if(DepositId == "299")
  505. {
  506. policy_code = "LKB_299";
  507. policy_name = "联客宝299押金";
  508. }
  509. string check = RedisDbconn.Instance.Get<string>("SetPosPDepositWait:" + SnIds);
  510. if (!string.IsNullOrEmpty(check))
  511. {
  512. return "操作频繁,请稍后再试";
  513. }
  514. RedisDbconn.Instance.Set("SetPosPDepositWait:" + SnIds, SnIds);
  515. RedisDbconn.Instance.SetExpire("SetPosPDepositWait:" + SnIds, 10);
  516. WebCMSEntities db = new WebCMSEntities();
  517. Dictionary<string, object> Obj = new Dictionary<string, object>();
  518. string[] SnIdList = SnIds.Split(',');
  519. foreach (string SnId in SnIdList)
  520. {
  521. int SnIdNum = int.Parse(SnId);
  522. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
  523. if (pos == null)
  524. {
  525. return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
  526. }
  527. function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "POSP-设置押金-返回报文");
  528. List<string> PosList = new List<string>();
  529. PosList.Add(pos.PosSn);
  530. string content = PublicImportDataService.Instance.PospServiceFee(PosList, policy_code, policy_name);
  531. function.WriteLog(DateTime.Now.ToString() + "\n" + content, "POSP-设置押金-返回报文");
  532. if (content == "fail")
  533. {
  534. return "机具" + pos.PosSn + "设置失败";
  535. }
  536. JsonData jsonObj = JsonMapper.ToObject(content);
  537. if (jsonObj["code"].ToString() != "200")
  538. {
  539. return "设置失败";
  540. }
  541. var BeforeDeposit = 0;
  542. if (string.IsNullOrEmpty(pos.PrizeParams))
  543. {
  544. BeforeDeposit = 299;
  545. }
  546. else
  547. {
  548. BeforeDeposit = int.Parse(pos.PrizeParams);
  549. }
  550. decimal amount = decimal.Parse(DepositId);
  551. pos.PrizeParams = amount.ToString("f0");
  552. db.SaveChanges();
  553. //设置押金添加记录
  554. PublicFunction.MerchantDepositSet(pos.BrandId, pos.BuyUserId, SnIdNum, pos.PosSn, BeforeDeposit, decimal.Parse(pos.PrizeParams), content);
  555. }
  556. db.Dispose();
  557. return "设置成功";
  558. }
  559. #endregion
  560. }
  561. }