Zeige Preisentwicklung von Consumables

This commit is contained in:
Patrick Kilian 2022-05-12 17:27:51 -06:00
parent a9338805e2
commit 79e5fdf56b
2 changed files with 14 additions and 0 deletions

View File

@ -164,6 +164,7 @@
<ul id="consumable_{{vehicle.id}}_{{consumable.id}}_tabs" class="nav nav-tabs" data-tabs="tabs">
{{ nav_tab(vehicle.id|string + '_' + consumable.id|string + '_consumption', 'Consumption', true) }}
{{ nav_tab(vehicle.id|string + '_' + consumable.id|string + '_amount', 'Amount', false) }}
{{ nav_tab(vehicle.id|string + '_' + consumable.id|string + '_price', 'Price', false) }}
</ul>
<div id="consumable_{{vehicle.id}}_{{consumable.id}}_content" class="tab-content ">
{{ tab_pane(
@ -188,6 +189,17 @@
false
)
}}
{{ tab_pane(
vehicle.id|string + '_' + consumable.id|string + '_price',
chart(
consumable.price,
'ref_' + vehicle.id|string + '_' + consumable.id|string + '_price',
'€ / '+consumable.unit,
url_for('create_pit_stop_form', vid=vehicle.id, cid=consumable.id)
),
false
)
}}
</div>
{{ tab_script('vehicle_' + vehicle.id|string + '_' + consumable.id|string + '_tabs') }}
</div>

View File

@ -27,6 +27,7 @@ class ConsumableStats:
self.average_amount_used = 0
self.average_amount = []
self.amounts = []
self.price = []
pitstops = [
stop for stop in vehicle.pitstops if stop.consumable_id == consumable.id
@ -37,6 +38,7 @@ class ConsumableStats:
for pitstop in pitstops:
self.overall_amount += pitstop.amount
self.amounts.append(StatsEvent(pitstop.date, pitstop.amount))
self.price.append(StatsEvent(pitstop.date, pitstop.costs/pitstop.amount))
self.average_amount_fuelled = self.overall_amount / pitstop_count
if pitstop_count > 1:
overall_distance = (