ChangePosFeeUtil.cs 27 KB

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