fix: 处理对账单金额问题

This commit is contained in:
周俊耀 2025-06-27 15:50:17 +08:00
parent d1181e4460
commit 58abfab434

View File

@ -478,7 +478,7 @@ func CreateAntomPay(c *gin.Context) {
UserName: userInfo.Name, UserName: userInfo.Name,
UserTel: userInfo.TelNum, UserTel: userInfo.TelNum,
BundleName: bundleName, BundleName: bundleName,
PayAmount: float32(req.ProductAllPrice), PayAmount: float32(req.ProductAllPrice / 100), // 以后别用float存钱无语
CurrencyType: int32(currencyType), CurrencyType: int32(currencyType),
PayStatus: 1, PayStatus: 1,
UserID: userInfo.ID, UserID: userInfo.ID,