Implement Warehouse.... #47

Merged
Seil0 merged 6 commits from feature/intern_warehouse into master 2020-06-08 13:40:11 +02:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit fc239983a7 - Show all commits
prototype/src/main/resources/templates/intern/warehouse

View File

@ -44,7 +44,7 @@
</tr>
<tr th:each="pos : ${booking.positions}">
<td><img th:src="@{/shop/articles/{id}/image.jpg(id=${pos.article.id})}" class="s"/></td>
<td><a th:href="@{/intern/listedArticles/{id}(id=${pos.article.id})}"
<td><a th:href="@{/intern/articles/{id}(id=${pos.article.id})}"
th:text="${pos.article.title}"></a></td>
<th:block th:if="${pos.amount > 0}">
<td th:text="${pos.amount}"></td>

View File

@ -78,7 +78,7 @@
<tr th:data-group="${booking.id}" th:each="pos : ${booking.positions}">
<td></td>
<td><a th:href="@{/intern/listedArticles/{id}(id=${pos.article.id})}"
<td><a th:href="@{/intern/articles/{id}(id=${pos.article.id})}"
th:text="${pos.article.title}"></a></td>
<th:block th:if="${pos.amount > 0}">
<td th:text="${pos.amount}"></td>

View File

@ -78,7 +78,7 @@
<tr th:each="pos : ${booking.positions}" th:data-group="${booking.id}">
<td><img th:src="@{/shop/articles/{id}/image.jpg(id=${pos.article.id})}" class="s"/></td>
<td><a th:href="@{/intern/listedArticles/{id}(id=${pos.article.id})}"
<td><a th:href="@{/intern/articles/{id}(id=${pos.article.id})}"
th:text="${pos.article.title}"></a></td>
<th:block th:if="${pos.amount > 0}">
<td th:text="${pos.amount}"></td>