X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?a=blobdiff_plain;f=yarrg%2Fweb%2Froutetrade;h=3e024e1a2acb0085fea66b1ec3683fb86d0fde35;hb=db75e9a488c8c07fff3d1ed6156e12965c4c0ec2;hp=e200aa5cfd78e7643297dfb350f73f2320b0b640;hpb=3f99b04acd8cf6080069b542206f9f3de049f58a;p=ypp-sc-tools.db-test.git diff --git a/yarrg/web/routetrade b/yarrg/web/routetrade index e200aa5..3e024e1 100644 --- a/yarrg/web/routetrade +++ b/yarrg/web/routetrade @@ -32,6 +32,30 @@ This Mason component is the core trade planner for a specific route. +========== TODO ========== +16:36 alpha,byrne,papaya,turtle,jorvik,luthien is my example + +16:37 if tehre are 2 rows which take the same object and sell it for the + same profit at two other islands, choose the shortest route as the + preferred one +16:37 coconut buy 10 sell 16, at luthien or jorvik, in that example +16:38 Do you see what I mean? + +16:38 I don't know how hard this is, but can you show only the suggested + trades to start ith and have a button to show all? +16:39 Also, maybe colour to highlight the suggested trades? + +16:40 columns should be sortable with the small arrows as before + +16:46 Also trading plan not functional but I guess you know that :-) + +Also: +- potential cost of losses +- max volume/mass +- use POST for update. Hrrm. + +========== TODO ========== + <%args> $dbh @@ -142,16 +166,31 @@ my $sth= $dbh->prepare($stmt); $sth->execute(@query_params); my @flows; -my @columns; +my @cols; + +my $addcols= sub { + my $base= shift @_; + foreach my $name (@_) { + push @cols, { Name => $name, %$base }; + } +}; + if ($qa->{ShowStalls}) { - push @columns, qw(org_name org_stallname dst_name dst_stallname); + $addcols->({ Text => 1 }, qw( + org_name org_stallname + dst_name dst_stallname + )); } else { - push @columns, qw(org_name dst_name); + $addcols->({Text => 1 }, qw( + org_name dst_name + )); } -push @columns, qw(commodname - org_price org_qty dst_price dst_qty - unitprofit PctProfit - MaxQty MaxCapital MaxProfit); +$addcols->({ Text => 1 }, qw(commodname)); +$addcols->({}, + qw( org_price org_qty dst_price dst_qty + Margin unitprofit MaxQty + MaxCapital MaxProfit + )); @@ -176,7 +215,7 @@ push @columns, qw(commodname $f->{MaxProfit}= $f->{MaxQty} * $f->{'unitprofit'}; $f->{MaxCapital}= $f->{MaxQty} * $f->{'org_price'}; - $f->{PctProfit}= sprintf "%3.1f%%", + $f->{Margin}= sprintf "%3.1f%%", $f->{'dst_price'} * 100.0 / $f->{'org_price'} - 100.0; $f->{"org_stallid"}= $f->{"dst_stallid"}= 'all' @@ -245,7 +284,8 @@ die "$cmpu $uue ?" if length $cmpu > 20; die "$f->{UidLong} = $f->{UidShort} = $recons_long ?"; } - if ($qa->{"R$f->{UidShort}"} && !$qa->{"T$f->{UidShort}"}) { + if (defined $qa->{"R$f->{UidShort}"} && + !defined $qa->{"T$f->{UidShort}"}) { $f->{Suppress}= 1; } @@ -364,7 +404,12 @@ if ($qa->{'debug'}) { die unless $found_section; }; -push @columns, qw(OptQty OptCapital OptProfit); +$addcols->({}, qw( + OptQty + )); +$addcols->({ Total => 0 }, qw( + OptCapital OptProfit + )); @@ -373,7 +418,18 @@ push @columns, qw(OptQty OptCapital OptProfit); % { % my $cdspan= $qa->{ShowStalls} ? ' colspan=2' : ''; % my $cdstall= $qa->{ShowStalls} ? 'Stall' : ''; - +
+++<% $qa->{ShowStalls} ? '' : '' %> ++++++% if ($optimise) { ++% } @@ -396,8 +452,8 @@ push @columns, qw(OptQty OptCapital OptProfit); +
>Collect @@ -384,7 +440,7 @@ push @columns, qw(OptQty OptCapital OptProfit); Profit Max % if ($optimise) { -Suggested +Planned % }
Qty Price Qty -Unit Margin +Unit Qty Capital Profit @@ -413,14 +469,63 @@ push @columns, qw(OptQty OptCapital OptProfit); {UidShort} %> value=""> {UidShort} %> value="" <% $flow->{Suppress} ? '' : 'checked' %> > -% foreach my $col (@columns) { -<% $flow->{$col} |h %> +% foreach my $ci (0..$#cols) { +% my $col= $cols[$ci]; +% my $v= $flow->{$col->{Name}}; +% $col->{Total} += $v if defined $col->{Total}; +% $v='' if !$col->{Text} && !$v; +{Text} ? '' : 'align=right' %>><% $v |h %> +% } +% } +
+Total +% foreach my $ci (2..$#cols) { +% my $col= $cols[$ci]; + +% if (defined $col->{Total}) { +<% $col->{Total} |h %> % } % }
+% if ($optimise) { # ========== TRADING PLAN ========== +% +% my $iquery= $dbh->prepare('SELECT islandname FROM islands +% WHERE islandid = ?'); +% +

Voyage trading plan

+ +% foreach my $i (0..$#islandids) { +Buy or sell flow +% } +% } +% } +
+% $iquery->execute($islandids[$i]); +% my ($islandname) = $iquery->fetchrow_array(); +% if (!$i) { +Start at <% $islandname |h %> +% } else { +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) { +% next if $f->{Suppress}; +% next unless $f->{"${od}_id"} == $islandids[$i]; +% next unless $f->{OptQty}; +
+% +% } # ========== TRADING PLAN ========== + <%init> use CommodsWeb; use Commods;