From: Ian Jackson Date: Mon, 24 Aug 2009 02:15:05 +0000 (+0100) Subject: Trade plan; wip data age X-Git-Tag: 3.4~115 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.web-live.git;a=commitdiff_plain;h=73e2dfca626db42870a6e1342f7f7ead4a5a819e;ds=sidebyside Trade plan; wip data age --- diff --git a/yarrg/web/routetrade b/yarrg/web/routetrade index c135e67..0adf992 100644 --- a/yarrg/web/routetrade +++ b/yarrg/web/routetrade @@ -115,9 +115,11 @@ my $stmt= " SELECT sell_islands.islandname org_name, sell_islands.islandid org_id, sell.price org_price, + sell_uploads.timestamp org_timestamp, buy_islands.islandname dst_name, buy_islands.islandid dst_id, buy.price dst_price, + buy_uploads.timestamp dst_timestamp, ".($qa->{ShowStalls} ? " sell.stallid org_stallid, sell_stalls.stallname org_stallname, @@ -140,6 +142,8 @@ my $stmt= " JOIN sell ON commods.commodid = sell.commodid JOIN islands AS sell_islands ON sell.islandid = sell_islands.islandid JOIN islands AS buy_islands ON buy.islandid = buy_islands.islandid + JOIN uploads AS sell_uploads ON sell.islandid = sell_uploads.islandid + JOIN uploads AS buy_uploads ON buy.islandid = buy_uploads.islandid ".($qa->{ShowStalls} ? " JOIN stalls AS sell_stalls ON sell.stallid = sell_stalls.stallid JOIN stalls AS buy_stalls ON buy.stallid = buy_stalls.stallid @@ -532,15 +536,55 @@ Sail to <% $islandname |h %> % foreach my $od (qw(dst org)) { % my $sign= $od eq 'dst' ? -1 : +1; -% foreach my $f (sort { -% $a->{'commodname'} cmp $b->{'commodname'} -% or $sign * ($a->{"${od}_price"} <=> $b->{"${od}_price"}) -% or $a->{"${od}_stallname"} cmp $b->{"${od}_stallname"} -% } @flows) { +% my %todo; +% foreach my $f (@flows) { % next if $f->{Suppress}; % next unless $f->{"${od}_id"} == $islandids[$i]; % next unless $f->{OptQty}; -Buy or sell flow +% my $price= $f->{"${od}_price"}; +% my $stallname= $f->{"${od}_stallname"}; +% my $todo= \$todo{ $f->{'commodname'}, +% (sprintf "%07d", $price), +% $stallname }; +% $$todo= { } unless $$todo; +% $$todo->{'commodname'}= $f->{'commodname'}; +% $$todo->{'stallname'}= $stallname; +% $$todo->{Price} += $price; +% $$todo->{Qty} += $f->{OptQty}; +% $$todo->{Total} = $$todo->{Price} * $$todo->{Qty}; +% $$todo->{Timestamp} = $f->{"${od}_timestamp"}; +% } +% my $total= 0; +% my $dline= 0; +% foreach my $tkey (sort keys %todo) { +% my $t= $todo{$tkey}; +% $total += $t->{Total}; + +% if ($od eq 'org') { +Collect +% } else { +Deliver +% } +<% $t->{'commodname'} |h %> +<% $t->{Price} |h %> each +% if ($qa->{ShowStalls}) { +<% $t->{'stallname'} |h %> +% } +<% $t->{Qty} |h %> unit(s) +<% $t->{Total} |h %> total +% $dline ^= 1; +% } +% if (%todo) { + +{ShowStalls} %>> +<% (values %todo)[0]->{Timestamp} %> + +% if ($od eq 'org') { +Outlay +% } else { +Proceeds +% } +<% $total |h %> total % } % } % }