chiark / gitweb /
Better title for commodity enquiries
[ypp-sc-tools.db-test.git] / yarrg / web / query_commod
index eddc0975d05f067358c6835a81710d97f8039b8d..aeee3cee83d0bf8288ee79903ec005e20b36f4fc 100644 (file)
@@ -35,7 +35,9 @@
 </%doc>
 <%args>
 $quri
+$dbh
 $commodstring => '';
+$prselector
 $someresults
 $emsgokorprint
 </%args>
@@ -47,7 +49,9 @@ my ($commodname,$commodid);
 my $qa= \%ARGS;
 </%perl>
 
-<h1>Select commodity</h1>
+<h1>Commodity enquiry</h1>
+
+% $prselector->('BuySell');
 
 %#---------- textbox, user enters route as string ----------
 % if (!$qa->{Dropdowns}) {
@@ -56,7 +60,8 @@ Enter commodity (abbreviations are OK):<br>
 
 <form action="<% $quri->() |h %>" method="get">
 
-<&| qtextstring, qa => $qa, thingstring => 'commodstring', emsgstore => \$emsg,
+<&| qtextstring, qa => $qa, dbh => $dbh,
+    thingstring => 'commodstring', emsgstore => \$emsg,
     perresult => sub { ($commodname,$commodid)= @_; }
  &>
  size=80
@@ -75,10 +80,50 @@ Not yet implemented.
 </form>
 
 %#========== results ==========
-% $emsgokorprint->($emsg) or $commodid=undef;
+<%perl>
+
+$emsgokorprint->($emsg) or $commodid=undef;
+return unless defined $commodid;
+$someresults->();
+
+#---------- actually compute the results and print them ----------
+
+foreach my $bs (split /_/, $ARGS{BuySell}) {
+       $bs =~ m/^(buy|sell)$/ or die;
+       $bs= $1;
+
+       my $sth= $dbh->prepare(
+       "SELECT archipelago, islandname, stallname, price, qty
+               FROM $bs NATURAL JOIN stalls NATURAL JOIN islands
+               WHERE commodid = ?"
+               );
+       # fixme this query is utterly wrong
 
-% if (defined $commodid) {
-%      $someresults->();
-COMMODITY <% $commodid %> named <% $commodname |h %>
+       $sth->execute($commodid);
 
-% }
+</%perl>
+
+<h2>Offers to <% uc $bs |h %> <% $commodname |h %></h2>
+
+<table>
+<tr>
+<th>Archipelago
+<th>Island
+<th>Best stall
+<th>Best price
+<th>Qty at best
+</tr>
+%      my $row;
+%      while ($row=$sth->fetchrow_hashref) {
+<tr> <td><% $row->{'archipelago'} %>
+     <td><% $row->{'islandname'} %>
+     <td><% $row->{'stallname'} %>
+     <td><% $row->{'price'} %>
+     <td><% $row->{'qty'} %>
+</tr>
+%      }
+</table>
+
+<%perl>
+}
+</%perl>