Commit 9a58e027 authored by liudong1993's avatar liudong1993

no message

parents 58e74850 075e2f58
......@@ -677,7 +677,7 @@ namespace Mall.WebApi.Controllers.MallBase
var pram = new Common.Pay.WeChatPat.PayParam()
{
TotalFee = Convert.ToInt32((omodel.Income ?? 0) * 100),
RefundFee = (omodel.Income ?? 0) * 100,
RefundFee = Convert.ToInt32((omodel.Income ?? 0) * 100),
OrderNumber = omodel.MerchantsNo,
RefundNumber = RefundOrderNo
};
......@@ -1472,7 +1472,7 @@ namespace Mall.WebApi.Controllers.MallBase
var pram = new Common.Pay.WeChatPat.PayParam()
{
TotalFee = Convert.ToInt32(Refund * 100),
RefundFee = Refund * 100,
RefundFee = Convert.ToInt32(Refund * 100),
OrderNumber = orderModel.MerchantsNo,
RefundNumber = RefundOrderNo
};
......@@ -1561,7 +1561,7 @@ namespace Mall.WebApi.Controllers.MallBase
var pram = new Common.Pay.WeChatPat.PayParam()
{
TotalFee = Convert.ToInt32(Refund * 100),
RefundFee = Refund * 100,
RefundFee = Convert.ToInt32(Refund * 100),
OrderNumber = orderModel.MerchantsNo,
RefundNumber = RefundOrderNo
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment