Merge pull request #302 from Kitzanos/csv-sign-fix-prod

Cherry-pick ( Removed = sign from csv data)
This commit is contained in:
Rinaldo
2025-06-04 11:30:11 +02:00
committed by GitHub

View File

@@ -1956,7 +1956,7 @@ public class ApplicationDao {
} }
// Wrap it in ="..." to make Excel treat it as a literal string // Wrap it in ="..." to make Excel treat it as a literal string
return "=\"" + stringValue.replace("\"", "\"\"") + "\""; return stringValue;
} catch (Exception e) { } catch (Exception e) {
return ""; return "";