diff --git a/CHANGES.rst b/CHANGES.rst index 089aaa55..4a442909 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,6 +5,9 @@ Changelog 2.0.1 (unreleased) ------------------ +- Add booking details to the export file + [folix-01] + - Change PrenotazioniFolder.cosa_serve field type to RichText [folix-01] diff --git a/src/redturtle/prenotazioni/browser/prenotazioni_search.py b/src/redturtle/prenotazioni/browser/prenotazioni_search.py index 1f23ae32..1143caa1 100644 --- a/src/redturtle/prenotazioni/browser/prenotazioni_search.py +++ b/src/redturtle/prenotazioni/browser/prenotazioni_search.py @@ -295,6 +295,7 @@ def columns(self): "Data prenotazione", "Codice prenotazione", "Note del personale", + "Dettagli", ] ) @@ -329,6 +330,7 @@ def get_row_data(self, brain): # ), obj.getBookingCode(), obj.getStaff_notes() or "", + obj.description, ] )