Commit 9ccd0ad6 by lizefeng

fix

parent 300a5cfd
......@@ -270,7 +270,7 @@ namespace AutoTurnOver.Services
SellerOrderId = feeItem.TraceId,
description = $"To account ending in: {feeItem.AccountTail}",
type = "Transfer", // 提现
total = 0 - (decimal)feeItem.OriginalTotal.CurrencyAmount - (decimal)feeItem.BeginningBalance.CurrencyAmount,
total = (decimal)feeItem.BeginningBalance.CurrencyAmount - (decimal)feeItem.OriginalTotal.CurrencyAmount ,
currency_code = feeItem.OriginalTotal.CurrencyCode
};
transferFee.other = transferFee.total;
......
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