Part Controller history - Artikelnummer mit anzeigen
authorG. Richardson <information@kivitendo-premium.de>
Tue, 30 May 2017 13:01:41 +0000 (15:01 +0200)
committerG. Richardson <information@kivitendo-premium.de>
Tue, 30 May 2017 13:30:47 +0000 (15:30 +0200)
templates/webpages/part/history.html

index 9184675..d8931fb 100644 (file)
@@ -3,15 +3,17 @@
 
 <table>
 <tr>
-<th>[% 'Time' | $T8 %]</th>
-<th>[% 'Aktion' | $T8 %]</th>
-<th>[% 'Employee' | $T8 %]</th>
+<th>[% 'Time'       | $T8 %]</th>
+<th>[% 'Aktion'     | $T8 %]</th>
+<th>[% 'Employee'   | $T8 %]</th>
+<th>[% 'Partnumber' | $T8 %]</th>
 </tr>
 [% FOREACH history = history_entries %]
 <tr>
  <td>[% history.itime.to_kivitendo %] [% history.itime.to_kivitendo_time %]</td>
  <td>[% history.addition | $T8 %]</td>
  <td>[% HTML.escape(history.employee.name) %]</td>
+ <td>[% HTML.escape(history.parsed_snumber) %]</td>
 </tr>
 [% END %]
 </table>