|
@@ -199,6 +199,7 @@ namespace MySystem
|
|
|
decimal DiviMoney = PayMoney * (1 - GetPercent - cusumerFeePercent - profitPercent);
|
|
|
if (DiviMoney > 0)
|
|
|
{
|
|
|
+ RedisDbconn.Instance.AddRightList("ConsumerOrders:Divi:" + PayMode + ":" + order.MerchantId, order);
|
|
|
DiviMoney = DiviMoney / DiviPersons;
|
|
|
List<int> deletes = new List<int>();
|
|
|
long CurDiviPersons = DiviPersons;
|
|
@@ -209,15 +210,19 @@ namespace MySystem
|
|
|
{
|
|
|
CurDiviPersons = CurQueueCount;
|
|
|
}
|
|
|
- if(order.QueryCount < CurDiviPersons)
|
|
|
- {
|
|
|
- CurDiviPersons = order.QueryCount;
|
|
|
- }
|
|
|
if (DiviPersons < QueueCount)
|
|
|
{
|
|
|
QueueCount = DiviPersons;
|
|
|
}
|
|
|
decimal OtherMoney = 0; // 退款金额>最大退款金额-当前退款金额,次金额应归还给商户
|
|
|
+
|
|
|
+ // List<ConsumerOrders> orders = RedisDbconn.Instance.GetList<ConsumerOrders>("ConsumerOrders:Divi:" + PayMode + ":" + MerchantId);
|
|
|
+ // foreach(ConsumerOrders sub in orders)
|
|
|
+ // {
|
|
|
+ // function.WriteLog(sub.Id.ToString(), "返现队列");
|
|
|
+ // }
|
|
|
+ // function.WriteLog("\n\n", "返现队列");
|
|
|
+
|
|
|
// 减去自己付的订单
|
|
|
// CurDiviPersons = CurDiviPersons - 1;
|
|
|
int OutCount = 0; // 出局人数
|