[HOTFIX] Fix broken link in supplier details

This commit is contained in:
CodeSteak 2020-07-02 14:26:37 +02:00
parent 471d859987
commit 3a85997f99
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@
<tr th:each="order : ${SupplierDetail.orders}">
<td><span th:text="${order.id}"></span></td>
<td><span th:text="${order.dateOrder}"></span></td>
<td><a th:href="@{/intern/articles/{id}(id = ${order.articleId})}" class="button smaller" th:text="${order.articleName}"></a></td>
<td><span th:text="${order.articleName}"></span></td>
<td><span th:text="${order.priceNet}"></span></td>
<td><span th:text="${order.quantity}"></span></td>
<td><span th:text="${order.priceTotal}"></span></td>