@@ -111,7 +111,6 @@ def generate_reservation_series_from_allocations(application_round_id: int) -> N
111111
112112 reservation_details = ReservationDetails (
113113 name = recurring_reservation .name ,
114- description = application .additional_information ,
115114 type = ReservationTypeChoice .SEASONAL ,
116115 state = ReservationStateChoice .CONFIRMED ,
117116 user = recurring_reservation .user ,
@@ -126,6 +125,8 @@ def generate_reservation_series_from_allocations(application_round_id: int) -> N
126125 billing_address_street = billing_address_street ,
127126 billing_address_city = billing_address_city ,
128127 billing_address_zip = billing_address_zip ,
128+ purpose = application_section .purpose ,
129+ home_city = application .home_city ,
129130 )
130131
131132 reservation_details ["reservee_type" ] = (
@@ -136,6 +137,16 @@ def generate_reservation_series_from_allocations(application_round_id: int) -> N
136137 else CustomerTypeChoice .NONPROFIT
137138 )
138139
140+ reservation_details ["description" ] = (
141+ application .additional_information
142+ if reservation_details ["reservee_type" ] == CustomerTypeChoice .INDIVIDUAL
143+ else (
144+ translate_for_user (_ ("Core business" ), application .user )
145+ + ": "
146+ + application .organisation .core_business
147+ )
148+ )
149+
139150 if reservation_details ["reservee_type" ] == CustomerTypeChoice .INDIVIDUAL :
140151 reservation_details ["reservee_address_street" ] = billing_address_street
141152 reservation_details ["reservee_address_city" ] = billing_address_city
0 commit comments