This commit is contained in:
“wanyongkang”
2022-05-07 11:36:07 +08:00
parent 35814d3436
commit 45b2b5176a
8 changed files with 87 additions and 8 deletions

View File

@@ -338,7 +338,8 @@ FROM product_order where {where} GROUP BY Channel,ProductName order by Channel,
PayChannel = request.PayChannel,
Channel = request.Channel,
IsAutoRefund = productEntity.AutoRefund,
agent_id = userEntity.agent_id
agent_id = userEntity.agent_id,
Remark = request.phone
};
if (request.OrderType == OrderType.New || request.OrderType == OrderType.AgainBuy)
{
@@ -640,7 +641,8 @@ FROM product_order where {where} GROUP BY Channel,ProductName order by Channel,
ChargeStatus = AccountChargeStatus.Normal,
UserId = order.UserId,
UserCode = order.UserName,
agent_id = order.agent_id
agent_id = order.agent_id,
UserPhone = order.Remark
};
accountEntitys.Add(accountEntity);
});