fixes issue with first pitstop for a vehicle

This commit is contained in:
Joachim Lusiardi 2018-08-11 18:57:33 +02:00
parent 13090d2735
commit 3a2b25d3bd
1 changed files with 1 additions and 2 deletions

View File

@ -67,8 +67,7 @@ def create_pit_stop_form(vid, cid):
form.set_pitstops(vehicle.pitstops)
form.same_odometer_allowed = (type(data[-1]) != Pitstop) or (data[-1].consumable.id != cid)
else:
form.set_pitstop(Pitstop(date(1970, 1, 1), 0, vid, 0, ''))
form.set_pitstop(Pitstop(0, 0, date(1970, 1, 1), 0, cid))
form.set_pitstops([Pitstop(date(1970, 1, 1), 0, vid, 0, ''),Pitstop(0, 0, date(1970, 1, 1), 0, cid)])
form.same_odometer_allowed = True
# set the label of the litres field to make the user comfortable