(fix) felhős projekthez csak bejelentkezés után lehet csatlakozni, név megjelenítése a kapcsolatok mellett a terepbejárás nézetben.
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s

This commit is contained in:
2026-08-07 21:25:31 +02:00
parent 950c2f48f1
commit e1128700f0
10 changed files with 124 additions and 18 deletions
+14 -1
View File
@@ -40,7 +40,17 @@ class ContactExportService {
: v;
}
final header = ['Nev', 'Cim', 'Telefon', 'Email', 'Megjegyzes'].join(sep);
final header = [
'Nev',
'Cim',
'Telefon',
'Email',
'Megjegyzes',
'Szélesség',
'Hosszúság',
'EOV_Y',
'EOV_X'
].join(sep);
final sb = StringBuffer();
sb.write('\uFEFF'); // UTF-8 BOM — az Excel enélkül elrontja az ékezeteket
@@ -52,6 +62,9 @@ class ContactExportService {
txt(c.phone),
txt(c.email),
txt(c.note),
c.lat?.toString() ?? '',
c.lon?.toString() ?? '',
c.eovY?.toString() ?? '',
].join(sep));
}