ChangePosFeeUtil.cs 27 KB

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