Skip to content

Commit

Permalink
[TASK] CSV-export the registration date by default
Browse files Browse the repository at this point in the history
Relates to #1442
  • Loading branch information
oliverklee committed Feb 15, 2025
1 parent 10db85f commit 2230426
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Changed

- CSV-export the registration date by default (#4156)
- !!! Always include the UID in the event slugs (#4152)
- Improve some FE labels (#4141)
- !!! Do not localize the CSV headings anymore (#4133)
Expand Down
4 changes: 2 additions & 2 deletions Configuration/TypoScript/PluginShared.typoscript
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ plugin.tx_seminars {
fieldsFromFeUserForCsv = name,company,address,zip,city,country,telephone,email

# comma-separated list of field names from tx_seminars_attendances that will be used for CSV export
fieldsFromAttendanceForCsv = uid,price,total_price,method_of_payment,interests,expectations,background_knowledge,known_from,notes
fieldsFromAttendanceForCsv = uid,crdate,price,total_price,method_of_payment,interests,expectations,background_knowledge,known_from,notes

# whether to show attendances on the registration queue in the CSV export or not
showAttendancesOnRegistrationQueueInCSV = 0
Expand All @@ -102,7 +102,7 @@ plugin.tx_seminars {
fieldsFromFeUserForEmailCsv = name,company,address,zip,city,country,telephone,email

# comma-separated list of field names from tx_seminars_attendances that will be used for CLI CSV export
fieldsFromAttendanceForEmailCsv = uid,price,total_price,method_of_payment,interests,expectations,background_knowledge,known_from,notes
fieldsFromAttendanceForEmailCsv = uid,crdate,price,total_price,method_of_payment,interests,expectations,background_knowledge,known_from,notes

# whether to show attendances on the registration queue in the CLI CSV export or not
showAttendancesOnRegistrationQueueInEmailCsv = 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ only be configured using your TypoScript setup, but not via flexforms.
that will be used for CSV export

Default
uid,price,total\_price,method\_of\_payment,interests,expectations,back
uid,crdate,price,total\_price,method\_of\_payment,interests,expectations,back
ground\_knowledge,known\_from,notes


Expand Down Expand Up @@ -570,7 +570,7 @@ only be configured using your TypoScript setup, but not via flexforms.
that will be used for CLI CSV export

Default
uid,price,total\_price,method\_of\_payment,interests,expectations,back
uid,crdate,price,total\_price,method\_of\_payment,interests,expectations,back
ground\_knowledge,known\_from,notes


Expand Down

0 comments on commit 2230426

Please sign in to comment.