Merge branch '205-global-search-warranty-fields' into 'master'
Resolve "Global search warranty fields" Closes #205 See merge request jankstudio/resq!239
This commit is contained in:
commit
daf0d03065
1 changed files with 8 additions and 0 deletions
|
|
@ -191,6 +191,10 @@
|
|||
<th>Last Name</th>
|
||||
<th>First Name</th>
|
||||
<th>Plate Number</th>
|
||||
<th>Warranty Class</th>
|
||||
<th>Expiry Date</th>
|
||||
<th>Serial</th>
|
||||
<th>Battery</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
@ -200,6 +204,10 @@
|
|||
<td>{{ result.getLastName|default("") }}</td>
|
||||
<td>{{ result.getFirstName|default("") }}</td>
|
||||
<td>{{ result.getPlateNumber|default("") }}</td>
|
||||
<td>{{ result.getWarrantyClass|default("") }}</td>
|
||||
<td>{{ result.getDateExpire|default("")|date('d M Y') }}</td>
|
||||
<td>{{ result.getSerial|default("") }}</td>
|
||||
<td>{{ result.getSAPBattery.getID|default("") }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
|||
Loading…
Reference in a new issue