ChangePosFeeUtil.cs 27 KB

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