|
@@ -4,6 +4,7 @@ using System.Linq;
|
|
|
using System.Data;
|
|
|
using MySystem.Models;
|
|
|
using Library;
|
|
|
+using LitJson;
|
|
|
using System.Threading;
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
using System.Threading.Tasks;
|
|
@@ -306,6 +307,7 @@ namespace MySystem
|
|
|
{
|
|
|
OutCount += 1;
|
|
|
}
|
|
|
+ RedisDbconn.Instance.AddList("ConsumerOrdersSetDivi", "{\"OrderId\":\"" + suborder.Id + "\",\"DiviAmt\":\"" + suborder.CurDivi + "\"}");
|
|
|
}
|
|
|
}
|
|
|
else
|
|
@@ -2100,5 +2102,48 @@ namespace MySystem
|
|
|
}
|
|
|
#endregion
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public void StartSetDivi()
|
|
|
+ {
|
|
|
+ Thread th = new Thread(StartSetDiviDo);
|
|
|
+ th.IsBackground = true;
|
|
|
+ th.Start();
|
|
|
+ }
|
|
|
+ public void StartSetDiviDo()
|
|
|
+ {
|
|
|
+ while (true)
|
|
|
+ {
|
|
|
+ string content = RedisDbconn.Instance.RPop<string>("ConsumerOrdersSetDivi");
|
|
|
+ if (!string.IsNullOrEmpty(content))
|
|
|
+ {
|
|
|
+ SetDivi(content);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ Thread.Sleep(10000);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public void SetDivi(string content)
|
|
|
+ {
|
|
|
+ JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
+ int orderId = int.Parse(jsonObj["OrderId"].ToString());
|
|
|
+ decimal diviAmt = int.Parse(jsonObj["DiviAmt"].ToString());
|
|
|
+ WebCMSEntities db = new WebCMSEntities();
|
|
|
+ ConsumerOrders order = db.ConsumerOrders.FirstOrDefault(m => m.Id == orderId);
|
|
|
+ if(order != null)
|
|
|
+ {
|
|
|
+ order.CurDivi = diviAmt;
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ db.Dispose();
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|