Compare commits

...

2 Commits

Author SHA1 Message Date
bb7184c480 Merge branch 'feat-zjy-fixbug-003' into main 2025-06-27 17:44:55 +08:00
633c903f33 fix: 处理对账单金额问题 2025-06-27 17:43:09 +08:00

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 / 100), // 以后别用float存钱无语 PayAmount: float32(req.ProductAllPrice) / 100, // 以后别用float存钱无语
CurrencyType: int32(currencyType), CurrencyType: int32(currencyType),
PayStatus: 1, PayStatus: 1,
UserID: userInfo.ID, UserID: userInfo.ID,