<% @header [("title", ["MoneyMatters"])]; ref showNormal = true; if $"hist" <> "" then showNormal := false; val id = Web.stoi ($"hist") %> <% foreach (amount, trn) in Money.listUserTransactions id do %> <% end %>
Date Description Amount
<% #d trn %> <% Web.html (#descr trn) %> <% amount %>/<% #amount trn %>
<% elseif $"cmd" = "list" then val admin = Group.inGroupName "money"; showNormal := false %>

Transactions

<% foreach trn in Money.listTransactions () do %> <% switch Money.listChargesWithNames (#id trn) of [(name, cha)] => %><% | _ => %><% end; if admin then %><% end %><% end %>
Date Description Amount Last modified Participants
<% #d trn %> <% Web.html (#descr trn) %> <% #amount trn %> <% #stamp trn %><% name %>multi[Hosting] [Payment] [Other] [Delete]
<% elseif $"cmd" = "bals" then showNormal := false %>

Balances

<% foreach bal in Balance.listOwnedBalances () do %> <% end %>
<% #name bal %> <% #amount bal %> <% switch Balance.listBalanceUsers (#id bal) of [] => | (user :: users) => %><% Web.html (#name user) %><% foreach user in users do %>, <% Web.html (#name user) %><% end end %>
<% elseif $"cmd" = "hosting" then Group.requireGroupName "money"; showNormal := false %>

New hosting bill

Description:
Date:
Amount:
Free bandwidth cutoff (MB):
Cost/GB:
Member usage:
<% elseif $"cmd" = "hosting2" then Group.requireGroupName "money"; val id = Money.addTransaction ($"descr", Util.neg (Web.stor ($"amount")), $"d"); Money.addHostingCharges {trn = id, cutoff = 1000 * Web.stoi ($"cutoff"), cost = Web.stor ($"cost"), usage = $"usage"}; %>

Hosting transaction added.

<% elseif $"modHosting" <> "" then Group.requireGroupName "money"; showNormal := false; val id = Web.stoi ($"modHosting"); val trn = Money.lookupTransaction id %>

Modify hosting bill

Description:
Date:
Amount:
Free bandwidth cutoff (MB):
Cost/GB:
Member usage:
<% elseif $"saveHosting" <> "" then Group.requireGroupName "money"; val id = Web.stoi ($"saveHosting"); val trn = Money.lookupTransaction id; Money.clearCharges id; Money.modTransaction {trn with descr = $"descr", d = $"d", amount = Util.neg (Web.stor ($"amount"))}; Money.addHostingCharges {trn = id, cutoff = 1000 * Web.stoi ($"cutoff"), cost = Web.stor ($"cost"), usage = $"usage"}; %>

Hosting transaction modified.

<% elseif $"cmd" = "evenForm" then Group.requireGroupName "money"; showNormal := false %>

New generic/even transaction

Description:
Date:
Amount:
Members:
<% elseif $"cmd" = "pay" then Group.requireGroupName "money"; showNormal := false %>

New member payment

Description:
Date:
Amount:
Member:
<% elseif $"cmd" = "pay2" then Group.requireGroupName "money"; val amount = Web.stor ($"amount"); val id = Money.addTransaction ($"descr", amount, $"d"); Money.addCharge {trn = id, usr = Web.stoi ($"usr"), amount = amount}; Money.applyCharges id; %>

Payment transaction added.

<% elseif $"modPay" <> "" then Group.requireGroupName "money"; showNormal := false; val id = Web.stoi ($"modPay"); val trn = Money.lookupTransaction id %>

Modify member payment

Description:
Date:
Amount:
Member:
<% elseif $"savePay" <> "" then Group.requireGroupName "money"; val id = Web.stoi ($"savePay"); val trn = Money.lookupTransaction id; val amount = Web.stor ($"amount"); Money.clearCharges id; Money.modTransaction {trn with descr = $"descr", d = $"d", amount = amount}; Money.addCharge {trn = id, usr = Web.stoi ($"usr"), amount = amount}; Money.applyCharges id; %>

Member payment modified.

<% elseif $"cmd" = "evenForm" then Group.requireGroupName "money"; showNormal := false %>

New generic/even transaction

Description:
Date:
Amount:
Members:
<% elseif $"cmd" = "even" then Group.requireGroupName "money"; val id = Money.addTransaction ($"descr", Web.stor ($"amount"), $"d"); Money.addEvenCharges (id, map Web.stoi (Web.getMultiParam "usrs")) %>

Even transaction added.

<% elseif $"modEven" <> "" then Group.requireGroupName "money"; showNormal := false; val trn = Money.lookupTransaction (Web.stoi ($"modEven")) %>

Modify even transaction

">
Description:
Date:
Amount:
Members:
<% elseif $"saveEven" <> "" then Group.requireGroupName "money"; val id = Web.stoi ($"saveEven"); val trn = Money.lookupTransaction id; Money.clearCharges id; Money.modTransaction {trn with descr = $"descr", d = $"d", amount = Web.stor ($"amount")}; Money.addEvenCharges (id, map Web.stoi (Web.getMultiParam "usrs")) %>

Even transaction modified

<% elseif $"del" <> "" then Group.requireGroupName "money"; showNormal := false; val trn = Money.lookupTransaction (Web.stoi ($"del")) %>

Are you sure you want to delete transaction <% Web.html (#descr trn) %>?

">Yes, delete <% Web.html (#descr trn) %>! <% elseif $"del2" <> "" then Group.requireGroupName "money"; val id = Web.stoi ($"del2"); val trn = Money.lookupTransaction id; Money.clearCharges id; Money.deleteTransaction id %>

<% Web.html (#descr trn) %> deleted!

<% elseif $"cmd" = "equalize" then Group.requireGroupName "money"; Money.equalizeBalances (); %>

Balances equalized

<% elseif $"trn" <> "" then showNormal := false; val id = Web.stoi ($"trn"); val trn = Money.lookupTransaction id %> <% ref first = true; foreach (name, cha) in Money.listChargesWithNames id do if first then first := false else %> <% end %><% end %>
TRN#: <% id %>
Description: <% Web.html (#descr trn) %>
Date: <% #d trn %>
Amount: $<% #amount trn %>
Distribution:
<% name %> $<% #amount cha %>
<% end %> <% if showNormal then %>

Your balance: $<% #amount (Balance.lookupBalance (#bal (Init.getUser ()))) %>

List all transactions
List all balances
<% if Group.inGroupName "money" then %>
New transaction:
Hosting bill
Payment from member
Generic/even

Equalize balances

Most recent transactions

<% foreach trn in Money.listTransactionsLimit 20 do %> <% switch Money.listChargesWithNames (#id trn) of [(name, cha)] => %><% | _ => %><% end %> <% end %>
Date Description Amount Participants Replace Delete
<% #d trn %> <% Web.html (#descr trn) %> <% #amount trn %><% name %>multi[Hosting] [Payment] [Other] [Delete]
<% else %>

Add to your balance with PayPal

Your recent account activity

<% foreach (amount, trn) in Money.listUserTransactionsLimit (Init.getUserId (), 20) do %> <% end %>
Date Description Amount
<% #d trn %> <% Web.html (#descr trn) %> <% amount %>/<% #amount trn %>
<% end end %> <% @footer [] %>