Rev 7621 | Rev 20727 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<html ><head><title>Statistics</title></head><body>#parse("../content/reports-common.vm")<!--<h2 >Statistics</h2><div><table border="1"><tr><th width=50%>Field</th><th>Value</th></tr><tr><td>Number of Registrations</td><td align="right">$noOfRegisterUsers</td></tr><tr><td>Number of Valid Orders</td><td align="right">$noOfOrders</td></tr><tr><td>Number of Distinct Customers</td><td align="right">$noOfCustomers</td></tr><tr><td>Maximum Order Amount</td><td align="right">$maxOrderAmount</td></tr><tr><td>Minimum Order Amount</td><td align="right">$minOrderAmount</td></tr><tr><td>Maximum Payment Amount</td><td align="right">$maxPaymentAmount</td></tr><tr><td>Minimum Payment Amount</td><td align="right">$minPaymentAmount</td></tr><br/></table><br/>--><h3>Last 50 Orders</h3><table border="1" width="100%"><thead><tr><th width="8%">Order ID</th><th width="18%">Date/Time</th><th width="32%">Product</th><th width="8%">Type</th><th width="16%">Status</th><th width="10%">Source</th><th width="8%">Customer City </th></tr></thead><tbody>#set($count = 0)#foreach($order in $action.getValidOrders())#if($order.getSource() == 1 && $count < 50)#set($count = $count + 1)#set($item = $action.getItem($order))<tr><td>$order.getId()</td><td>$action.getDateTime($order.getCreated_timestamp())</td>#set($modelname = "")#set($modelnumber = "")#if($item.getModel_name())#set($modelname = $item.getModel_name())#end#if($item.getModel_number())#set($modelnumber = $item.getModel_number())#end<td>$item.getBrand() $modelname $modelnumber</td>#if($order.isCod())<td>COD</td>#else<td>Prepaid</td>#end<td>$action.getOrderStatusString($order.getStatus())</td><td>WEBSITE</td><td>$order.getCustomer_city()</td></tr>#end#end</tbody></table></div></body></html>