fix
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 21s
Docker Build & Deploy / Deploy to Production (push) Successful in 5s

This commit is contained in:
2025-12-27 11:50:12 +08:00
parent 9dbdc04a82
commit e68aef6ba1
8 changed files with 122 additions and 76 deletions

View File

@@ -341,7 +341,7 @@ public class ImportService(
}
// 使用正则表达式提取退款金额
var regex = new System.Text.RegularExpressions.Regex(@"¥(-?\d+(\.\d+)?)");
var regex = new Regex(@"¥(-?\d+(\.\d+)?)");
var match = regex.Match(status);
if (match.Success && decimal.TryParse(match.Groups[1].Value, out var refundAmount))
{