|
|
@@ -45,6 +45,11 @@ func NewCalcPriceIncreaseFormula(userAmountValue string, oneCirclesGreenEnergyBa |
|
|
|
values = userAmount.Div(afterPrice).Truncate(8).String() //用户得到绿色能量个数 |
|
|
|
nowPriceValue = nowPrice.String() |
|
|
|
afterPriceValue = afterPrice.String() |
|
|
|
zhios_order_relate_utils.FilePutContents("virtual_coin_not", zhios_order_relate_utils.SerializeStr(map[string]interface{}{ |
|
|
|
"before_price": nowPriceValue, |
|
|
|
"after_price": afterPriceValue, |
|
|
|
"user_amount": userAmountValue, |
|
|
|
})) |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
@@ -121,6 +126,12 @@ func CalcPriceReductionFormula(engine *xorm.Engine, userExchangeNumsValue string |
|
|
|
greenEnergyFee = userExchangeNums.Mul(exchangeAccountBalanceFee.Div(decimalRate)).Truncate(8).String() //绿色能量手续费 |
|
|
|
nowPriceValue = nowPrice.String() |
|
|
|
afterPriceValue = afterPrice.String() |
|
|
|
|
|
|
|
zhios_order_relate_utils.FilePutContents("virtual_coin_not", zhios_order_relate_utils.SerializeStr(map[string]interface{}{ |
|
|
|
"before_price": nowPriceValue, |
|
|
|
"after_price": afterPriceValue, |
|
|
|
"user_amount": userExchangeNumsValue, |
|
|
|
})) |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|