X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-live.git;a=blobdiff_plain;f=yarrg%2Fweb%2Fquery_commod;h=34b1347f20f5034315a1821d535cd6de40f8f8e2;hp=4869e5c50fad00d6222fa0a1ce8e2df110f488a9;hb=f6d7a4d627f3ecc0624649bb895dbf8e59afcf47;hpb=890faab73220a817300d53a362464d6a7fc06788 diff --git a/yarrg/web/query_commod b/yarrg/web/query_commod index 4869e5c..34b1347 100644 --- a/yarrg/web/query_commod +++ b/yarrg/web/query_commod @@ -52,6 +52,7 @@ my $qa= \%ARGS;

Commodity enquiry

% $prselector->('BuySell'); +% $prselector->('ShowBlank'); %#---------- textbox, user enters route as string ---------- % if (!$qa->{Dropdowns}) { @@ -88,19 +89,21 @@ $someresults->(); #---------- actually compute the results and print them ---------- +my $onloads= ""; + foreach my $bs (split /_/, $ARGS{BuySell}) { $bs =~ m/^(buy|sell)$/ or die; $bs= $1; my ($ascdesc) = ($bs eq 'buy') ? ('DESC') : ('ASC'); -#INNER JOIN + my $joinkind= $ARGS{ShowBlank} ? 'LEFT OUTER JOIN' : 'INNER JOIN'; my $islands= $dbh->prepare( "SELECT islands.islandid AS islandid, archipelago, islandname, sum(qty) as tqty - FROM islands LEFT OUTER JOIN $bs offers + FROM islands $joinkind $bs offers ON islands.islandid == offers.islandid AND commodid == ? - GROUP BY islands.islandid, + GROUP BY islands.islandid ORDER BY archipelago, islandname" ); @@ -116,23 +119,25 @@ foreach my $bs (split /_/, $ARGS{BuySell}) {

Offers to <% uc $bs |h %> <% $commodname |h %>

- +
+ % $islands->execute($commodid); % my $island; +% my %ts_sortkeys; +% my $rowix= 0; % while ($island= $islands->fetchrow_hashref) { % my $islandid= $island->{'islandid'}; % $offers->execute($commodid, $islandid); @@ -159,21 +164,65 @@ foreach my $bs (split /_/, $ARGS{BuySell}) { % $approxqty += $qty; % } % } -% my $nstalls= @beststalls; +% my $stallname; +% +% my $rowid= "id_${bs}_$islandid"; +% my $s= [ ]; +% +% $s->[2]= sprintf "%06d", scalar @beststalls; +% if (!@beststalls) { +% $stallname= '-'; +% } elsif (@beststalls==1) { +% $stallname= $beststalls[0]; +% $s->[2] .= " $stallname"; +% } else { +% $stallname= sprintf "%d offers", scalar @beststalls; +% } +% % $cqty == $tqty or die "$bs $cqty $tqty $commodid $islandid "; - class="<% 'datarow'.($rowix & 1) %>"> + +% for my $cix (0..$#$s) { +% $ts_sortkeys{$cix}{$rowid}= $s->[$cix]; +% } +% $rowix++; % }
Prices -Quantities available -
Quantity at price +
Archipelago Island -Unique best stall +Stall(s) Best Median -At best -Within 10% -Total +Best ++/-10% +Any
<% $island->{'archipelago'} |h %> - <% $island->{'islandname'} |h %> - <% $nstalls==0 ? '-' : - $nstalls==1 ? $beststalls[0] : "$nstalls offers" |h %> - <% length $bestqty ? $bestprice : '-' %> - <% $median %> - <% $bestqty %> - <% $approxqty %> - <% $cqty %> +
<% $s->[0]= $island->{'archipelago'} |h %> + <% $s->[1]= $island->{'islandname'} |h %> + <% $stallname |h %> + <% $s->[3]= (length $bestqty ? $bestprice : '-') %> + <% $s->[4]= $median %> + <% $s->[5]= $bestqty %> + <% $s->[6]= $approxqty %> + <% $s->[7]= $cqty %>
+<& tabsort, table => "${bs}_table", sortkeys => "${bs}_sortkeys", + throw => "${bs}_table_thr", rowclass => 'datarow', cols => [ + {}, {}, + { DoReverse => 1 }, + { DoReverse => 1, Numeric => 1, MapFn => "ts_Pricemap_${bs}" }, + { DoReverse => 1, Numeric => 1, MapFn => "ts_Pricemap_${bs}" }, + { DoReverse => 1, Numeric => 1 }, + { DoReverse => 1, Numeric => 1 }, + { DoReverse => 1, Numeric => 1 }, + ] &> +<&| script &> + <% $bs %>_sortkeys= <% to_json_protecttags(\%ts_sortkeys) %>; + function ts_Pricemap_<% $bs %>(price) { + if (price=='-') { return <% $bs eq 'buy' ? '-1' : '99999999' %>; } + return price; + } + +% $onloads .= " ts_onload__${bs}_table();\n"; + <%perl> } + +<&| script &> + function all_onload() { +<% $onloads %> + } + window.onload= all_onload; +