ConsumerOrdersReturnDoService.cs 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. using System;
  2. using System.Collections.Generic;
  3. using Library;
  4. using LitJson;
  5. using System.Linq;
  6. using System.Threading;
  7. using MySystem.PxcModels;
  8. namespace MySystem
  9. {
  10. public class ConsumerOrdersReturnDoService
  11. {
  12. public readonly static ConsumerOrdersReturnDoService Instance = new ConsumerOrdersReturnDoService();
  13. private ConsumerOrdersReturnDoService()
  14. { }
  15. public void Start()
  16. {
  17. Thread th = new Thread(DoRefund);
  18. th.IsBackground = true;
  19. th.Start();
  20. }
  21. private void DoRefund()
  22. {
  23. bool op = true;
  24. while (op)
  25. {
  26. DateTime start = DateTime.Now.AddDays(-1);
  27. WebCMSEntities db = new WebCMSEntities();
  28. var list = db.ConsumerProfit.Select(m => new { m.Id, m.Status, m.CreateDate }).Where(m => m.CreateDate >= start && m.Status == 0).Take(20).ToList();
  29. foreach(var sub in list)
  30. {
  31. try
  32. {
  33. ConsumerProfit item = db.ConsumerProfit.FirstOrDefault(m => m.Id == sub.Id);
  34. if(item != null)
  35. {
  36. bool success = false;
  37. if (item.QueryCount == 1)
  38. {
  39. string resultString = new AlipayFunction().Refund(item.SeoTitle, item.GetMoney.ToString("f2"), "202202BB4fc8c2c03c914f2f87b6c678a77d7C03");
  40. JsonData jsonObj = JsonMapper.ToObject(resultString);
  41. if (jsonObj["alipay_trade_refund_response"]["code"].ToString() == "10000")
  42. {
  43. success = true;
  44. }
  45. }
  46. else if (item.QueryCount == 2)
  47. {
  48. string AppId = "wxe2c051b3e46c0f6f";
  49. string MchId = "1611167423";
  50. MerchantAddInfo merchantAdd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == item.MerchantId) ?? new MerchantAddInfo();
  51. MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == item.MerchantId) ?? new MerchantInfo();
  52. string SubMchId = merchantAdd.SubMchid;
  53. string Description = merchant.Name;
  54. string RefundNo = DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8);
  55. Dictionary<string, string> dic = new WeChatFunction().Refund(AppId, MchId, SubMchId, item.GetMoney, decimal.Parse(function.CheckNum(item.SeoKeyword)), item.SeoTitle, RefundNo);
  56. if (dic.ContainsKey("status"))
  57. {
  58. if (dic["status"] == "SUCCESS")
  59. {
  60. success = true;
  61. }
  62. }
  63. }
  64. if (success)
  65. {
  66. item.Status = 1;
  67. ConsumerOrders order = db.ConsumerOrders.FirstOrDefault(m => m.Id == item.OrderId);
  68. if (order != null)
  69. {
  70. order.Status = 2;
  71. }
  72. db.SaveChanges();
  73. }
  74. }
  75. }
  76. catch (Exception ex)
  77. {
  78. function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "退款返现队列异常");
  79. }
  80. }
  81. db.Dispose();
  82. }
  83. }
  84. }
  85. }