get_journey_stats: Support uid override, fix uninitialized value warning
This commit is contained in:
parent
c77a7d2cd2
commit
0f28fdfb85
1 changed files with 6 additions and 3 deletions
|
@ -1309,7 +1309,7 @@ sub startup {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
my $uid = $self->current_user->{id};
|
my $uid = $opt{uid} // $self->current_user->{id};
|
||||||
my $year = $opt{year} // 0;
|
my $year = $opt{year} // 0;
|
||||||
my $month = $opt{month} // 0;
|
my $month = $opt{month} // 0;
|
||||||
|
|
||||||
|
@ -1360,6 +1360,7 @@ sub startup {
|
||||||
}
|
}
|
||||||
|
|
||||||
my @journeys = $self->get_user_travels(
|
my @journeys = $self->get_user_travels(
|
||||||
|
uid => $uid,
|
||||||
cancelled => $opt{cancelled} ? 1 : 0,
|
cancelled => $opt{cancelled} ? 1 : 0,
|
||||||
verbose => 1,
|
verbose => 1,
|
||||||
after => $interval_start,
|
after => $interval_start,
|
||||||
|
@ -1839,10 +1840,12 @@ sub startup {
|
||||||
$num_trains++;
|
$num_trains++;
|
||||||
$km_route += $journey->{km_route};
|
$km_route += $journey->{km_route};
|
||||||
$km_beeline += $journey->{km_beeline};
|
$km_beeline += $journey->{km_beeline};
|
||||||
if ( $journey->{sched_duration} > 0 ) {
|
if ( $journey->{sched_duration}
|
||||||
|
and $journey->{sched_duration} > 0 )
|
||||||
|
{
|
||||||
$min_travel_sched += $journey->{sched_duration} / 60;
|
$min_travel_sched += $journey->{sched_duration} / 60;
|
||||||
}
|
}
|
||||||
if ( $journey->{rt_duration} > 0 ) {
|
if ( $journey->{rt_duration} and $journey->{rt_duration} > 0 ) {
|
||||||
$min_travel_real += $journey->{rt_duration} / 60;
|
$min_travel_real += $journey->{rt_duration} / 60;
|
||||||
}
|
}
|
||||||
if ( $journey->{sched_departure} and $journey->{rt_departure} )
|
if ( $journey->{sched_departure} and $journey->{rt_departure} )
|
||||||
|
|
Loading…
Reference in a new issue