From e0a2b9aa266e0e42d9224eff3839b1875b211218 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 19 Dec 2019 20:16:10 +0100 Subject: save all the wagon orders we can get --- templates/journey.html.ep | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/journey.html.ep b/templates/journey.html.ep index 976dc4d..396bc4e 100644 --- a/templates/journey.html.ep +++ b/templates/journey.html.ep @@ -188,7 +188,25 @@ % } - % if ($journey->{user_data} and $journey->{user_data}{wagons}) { + % if ($journey->{user_data} and $journey->{user_data}{wagongroups} and not exists $journey->{user_data}{wagons}) { + + Rollmaterial + + % for my $wagongroup (@{$journey->{user_data}{wagongroups} // []}) { + Wagenverbund <%= $wagongroup->{name} %> von <%= $wagongroup->{from} %> nach <%= $wagongroup->{to} %> als <%= $journey->{type} %> <%= $wagongroup->{no} %>
+ % for my $wagon (@{$wagongroup->{wagons}}) { + <%= substr($wagon->{id}, 0, 2) %><%= substr($wagon->{id}, 2, 2) %><%= substr($wagon->{id}, 4, 1) %><%= substr($wagon->{id}, 5, 3) %><%= substr($wagon->{id}, 8, 3) %><%= substr($wagon->{id}, 11) %> + %= $wagon->{type} + % if ($wagon->{number}) { + – Wagen <%= $wagon->{number} %> + % } +
+ % } + % } + + + % } + % elsif ($journey->{user_data} and $journey->{user_data}{wagons}) { Rollmaterial -- cgit v1.2.3