5 <h3>[% 'Journal of Last 10 Transfers' | $T8 %]</h3>
 
   9  <tr class='listheading'>
 
  10   <th>[% 'Date' | $T8 %]</th>
 
  11   <th>[% 'Trans Type' | $T8 %]</th>
 
  12   <th>[% 'Part' | $T8 %]</th>
 
  13   <th>[% 'Warehouse From' | $T8 %]</th>
 
  14   <th>[% 'Qty' | $T8 %]</th>
 
  15   <th>[% 'Unit' | $T8 %]</th>
 
  16   <th>[% 'Warehouse To' | $T8 %]</th>
 
  17   <th>[% 'Charge Number' | $T8 %]</th>
 
  18   <th>[% 'Comment' | $T8 %]</th>
 
  20 [% FOREACH row = journal %]
 
  22   <td>[% row.base.itime_as_date  %]</td>
 
  23   <td>[% row.base.trans_type.description | $T8 %]</td>
 
  24   <td>[% row.base.part.displayable_name | html %]</td>
 
  25   <td>[% row.out ? row.out.bin.full_description : '-' | html %]</td>
 
  26   <td class='numeric'>[% row.in ? row.in.qty_as_number : LxERP.format_amount(-1 * row.out.qty, 2) %]</td>
 
  27   <td>[% row.base.part.unit | html %]</td>
 
  28   <td>[% row.in ? row.in.bin.full_description : '-' | html %]</td>
 
  29   <td>[% row.base.chargenumber | html %]</td>
 
  30   <td>[% row.base.comment | html %]</td>
 
  35 <p>[% 'No transactions yet.' | $T8 %]</p>