<% template TranLogSvc(starwave.webgames.minigame.challenge.services.TranLogSvc obj) context = obj.minigameContext entryTo = context.entryDBTo challenge = obj.challenge %> <% entryTo.fullName %> - Transaction Log <% Header("TranLogSvc") %>
Transaction Log
<% EntryHeader(context) %>
Group Directory
Transaction Options
START DATE   END DATE   TRANSACTION   PLAYER'S LAST NAME    
       

Transactions
<% transactions = obj.transactions recCount = obj.recordCount if (recCount == 0) { 'No matching transactions' } else { slot_lookup = challenge.positions foreach (row in transactions) { tran = row tran["dateAction"] & ' ' slotFromInt = tran["slot_id_from"].asInteger slotToInt = tran["slot_id_to"].asInteger if (slotFromInt == 1004) { 'added ' & slot_lookup[slotToInt].abbrev } else if (slotToInt == 1005) { 'dropped ' & slot_lookup[slotFromInt].abbrev } // numberFormat("0000") // ' ' & tran["name"] & ' for ' & tran["nValue"] & ' ' & '
\r\n' ' ' & tran["name"] & ' for ' & tran["nValue"] & ' ' & '
\r\n' } if (obj.recordCount > 200) { '
Result set truncated. Narrow down your categories.
' } } %>

<% Footer("TranLogSvc") %>