【修复】修复提现二次扣除手续费的问题,同时优化相关提示。

This commit is contained in:
jianweie
2024-05-15 23:55:00 +08:00
parent 481518b474
commit ad53da6d99
4 changed files with 36 additions and 13 deletions

View File

@@ -314,7 +314,8 @@ namespace CoreCms.Net.Services
};
//按分计算
var amount = Convert.ToInt32((info.money - info.withdrawals) * 100);
//var amount = Convert.ToInt32((info.money - info.withdrawals) * 100);
var amount = Convert.ToInt32(info.money * 100);
//企业付款到零钱
var request = new WeChatPayPromotionTransfersRequest
{
@@ -393,7 +394,8 @@ namespace CoreCms.Net.Services
};
//按分计算
var amount = Convert.ToInt32((info.money - info.withdrawals) * 100);
//var amount = Convert.ToInt32((info.money - info.withdrawals) * 100);
var amount = Convert.ToInt32(info.money * 100);
//企业付款到零钱
var request = new WeChatPayPayBankRequest
{
@@ -459,7 +461,8 @@ namespace CoreCms.Net.Services
};
//按分计算
var amount = Convert.ToInt32((info.money - info.withdrawals) * 100);
//var amount = Convert.ToInt32((info.money - info.withdrawals) * 100);
var amount = Convert.ToInt32(info.money * 100);
var model = new WeChatPayTransferBatchesBodyModel
{