LifePayment/LifePayment.Application/LifePay/LifePayOrderService.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
LifePayment/LifePayment.Application/LifePay/LifePayService.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
LifePayment/LifePayment.Host/LifePaymentService.HttpApi.xml | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
LifePayment/LifePayment.Application/LifePay/LifePayOrderService.cs
@@ -380,6 +380,10 @@ } } /// <summary> /// 统计所有收支流水 /// </summary> /// <returns></returns> public async Task GetAllLifePayExpensesReceipts() { var orderlist = await (from a in _lifePayOrderRepository.Where(x => x.PayStatus >= LifePayStatusEnum.已支付) @@ -433,7 +437,8 @@ /// 毛利 var grossProfit = item.RechargeAmount * (item.ChannleRate - item.PlatformRate) / 100; /// 渠道佣金 ((充值面额 * 渠道折扣比例)-(充值面额 * 平台折扣比例))* 佣金比例 var channlesRakePrice = grossProfit * (item.ChannlesRakeRate) / 100; var channlesRakePrice = grossProfit * item.ChannlesRakeRate / 100; if (channlesRakePrice.HasValue) { LifePayChannlesRake lifePayChannlesRake = new LifePayChannlesRake() LifePayment/LifePayment.Application/LifePay/LifePayService.cs
@@ -609,7 +609,7 @@ public async Task<List<CreateEditPayChannelsInput>> GetLifePayChannlesAllList() { return await GetLifePayChannlesListFilter().Where(x => x.Status == LifePayChannelsStatsEnum.启用).ToListAsync(); return await GetLifePayChannlesListFilter().ToListAsync(); } public async Task<CreateEditPayChannelsInput> GetLifePayChannlesDto(Guid id) LifePayment/LifePayment.Host/LifePaymentService.HttpApi.xml
@@ -353,7 +353,7 @@ </member> <member name="M:LifePayment.HttpApi.LifePayController.GetAllChannlesRake"> <summary> 同步订单 同步订单分佣信息 </summary> <returns></returns> </member> LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs
@@ -621,7 +621,7 @@ } /// <summary> /// 同步订单 /// 同步订单分佣信息 /// </summary> /// <returns></returns> [HttpGet]