mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 15:43:27 +08:00
【修复】修复提现二次扣除手续费的问题,同时优化相关提示。
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user