You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Situation: Flights were imported containing a call_sign, but no aircraft_type. According to BookingsImport, when both call_sign and aircraft_type are filled in, these details are not allowed to be edited.
However, because aircraft_type was missing, is_editable is set to true. This meant 2 things:
Whenever somebody doesn't confirm / cancels their booking, both callsign and acType where set to null.
The callsign could be changed
The following needs to be done:
Add is_callsign_editable flag to Booking
If able without breaking too much: Rename is_editable to is_actype_editable
Ensure BookingsImport can handle the new flag
Change views + BookingController so it can handle the new flag as needed
The text was updated successfully, but these errors were encountered:
Situation: Flights were imported containing a
call_sign
, but noaircraft_type
. According to BookingsImport, when bothcall_sign
andaircraft_type
are filled in, these details are not allowed to be edited.However, because
aircraft_type
was missing,is_editable
is set totrue
. This meant 2 things:callsign
andacType
where set tonull
.callsign
could be changedThe following needs to be done:
is_callsign_editable
flag toBooking
is_editable
tois_actype_editable
BookingsImport
can handle the new flagBookingController
so it can handle the new flag as neededThe text was updated successfully, but these errors were encountered: