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%2Froutetrade;h=97359a9fc1fea4920f7a6deaad345d775a34d036;hp=cb0ef9379e1a451ebbe3b5c3aff332794ada7850;hb=cfb91181c6dec6df662af8325c0293d4c2e8be25;hpb=7d910f97374604024af42c3497b82c35ed7715ab diff --git a/yarrg/web/routetrade b/yarrg/web/routetrade index cb0ef93..97359a9 100644 --- a/yarrg/web/routetrade +++ b/yarrg/web/routetrade @@ -32,6 +32,42 @@ 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:51 YPP interfaces have price then qty. You have qty then price. This + is confusing! +16:51 the max column ordering is OK +16:51 (alo profit and suggested are OK) +16:52 Err, you want qty on the left in those two but on the right in + collect and deliver ? +16:53 Yes (price and capital are not the same thing) +16:53 OK +16:53 for max the order in which you want to think about it is 'I need to + buy ten of them and that will cost me $total price) +16:54 s/)/'/ + +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 @@ -260,7 +296,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; } @@ -466,6 +503,41 @@ $addcols->({ Total => 0 }, qw( +% 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;