(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
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user