HaoDaFeeHelper.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading;
  4. using System.Threading.Tasks;
  5. using System.Linq;
  6. using Microsoft.Extensions.Hosting;
  7. using MySystem;
  8. using MySystem.Models;
  9. using LitJson;
  10. using Library;
  11. using MySystem.Models.Main;
  12. public class HaoDaFeeHelper
  13. {
  14. public readonly static HaoDaFeeHelper Instance = new HaoDaFeeHelper();
  15. private HaoDaFeeHelper()
  16. {
  17. }
  18. public void Start()
  19. {
  20. Thread th = new Thread(StartDo);
  21. th.IsBackground = true;
  22. th.Start();
  23. }
  24. private void StartDo()
  25. {
  26. while (true)
  27. {
  28. string content = RedisDbconn.Instance.RPop<string>("HaoDaFeeQueue");
  29. if (!string.IsNullOrEmpty(content))
  30. {
  31. SetFee(content);
  32. }
  33. else
  34. {
  35. Thread.Sleep(10000);
  36. }
  37. }
  38. }
  39. public void SetFee(string data)
  40. {
  41. try
  42. {
  43. string[] list = data.Split('|');
  44. int Id = int.Parse(list[0]);
  45. string FeeRate = list[1];
  46. WebCMSEntities db = new WebCMSEntities();
  47. MerchantAddInfo addinfo = db.MerchantAddInfo.FirstOrDefault(m => m.Id == Id);
  48. MerchantInfo info = db.MerchantInfo.FirstOrDefault(m => m.Id == Id);
  49. if(info != null && addinfo != null)
  50. {
  51. // string FeeRate = addinfo.FeeRate;
  52. if(string.IsNullOrEmpty(FeeRate)) FeeRate = "0.38";
  53. bool op = true;
  54. int channel = int.Parse(addinfo.AgentName);
  55. int reqCount = 0;
  56. while(op)
  57. {
  58. string result = HaoDaHelper.Instance.SetFee(addinfo.MchtNo, FeeRate, addinfo.BrandId, channel.ToString());
  59. JsonData jsonObj = JsonMapper.ToObject(result);
  60. result = result.Replace("null", "\"\"");
  61. int Status = 0;
  62. string Remark = "";
  63. string resultCode = jsonObj["resultCode"].ToString();
  64. if(resultCode != "1")
  65. {
  66. Remark = jsonObj["errorDesc"].ToString();
  67. }
  68. else
  69. {
  70. Status = 1;
  71. addinfo.FeeRate = FeeRate;
  72. op = false;
  73. }
  74. db.MerchantFeeRecord.Add(new MerchantFeeRecord()
  75. {
  76. Status = Status,
  77. CreateDate = DateTime.Now,
  78. SettleFee = FeeRate,
  79. MerchantId = addinfo.Id,
  80. UserId = info.UserId,
  81. Remark = Remark,
  82. });
  83. db.SaveChanges();
  84. reqCount += 1;
  85. if(reqCount >= 5)
  86. {
  87. op = false;
  88. }
  89. if(Remark == "无权限的操作")
  90. {
  91. channel += 1;
  92. if(channel > 5) channel = 1;
  93. }
  94. }
  95. }
  96. db.Dispose();
  97. }
  98. catch (Exception ex)
  99. {
  100. LogHelper.Instance.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "修改商户费率异常");
  101. }
  102. }
  103. }