Merged PR 1879: Warenbegleitschein Übersicht und Details

Related work items: #5137, #5138
This commit is contained in:
Lorenz Hilpert
2025-07-10 16:00:16 +00:00
parent f6b2b554bb
commit a36d746fb8
115 changed files with 37648 additions and 32935 deletions

View File

@@ -1,21 +1,21 @@
<ui-toolbar>
<span class="text-isa-neutral-600 isa-text-body-2-regular">Sortieren</span>
<div class="flex-grow"></div>
@for (orderBy of orderByOptions(); track orderBy.by) {
<button
class="flex flex-1 gap-1 items-center text-nowrap"
uiTextButton
type="button"
(click)="toggleOrderBy(orderBy)"
data-what="sort-button"
[attr.data-which]="orderBy.by"
>
<div>
{{ orderBy.label }}
</div>
@if (orderBy.currentDir) {
<ng-icon [name]="orderBy.currentDir" size="1.25rem"></ng-icon>
}
</button>
}
</ui-toolbar>
<ui-toolbar>
<span class="text-isa-neutral-600 isa-text-body-2-regular">Sortieren</span>
<div class="flex-grow"></div>
@for (orderBy of orderByOptions(); track orderBy.by) {
<button
class="flex flex-grow-0 gap-1 items-center text-nowrap"
uiTextButton
type="button"
(click)="toggleOrderBy(orderBy)"
data-what="sort-button"
[attr.data-which]="orderBy.by"
>
<div>
{{ orderBy.label }}
</div>
@if (orderBy.currentDir) {
<ng-icon [name]="orderBy.currentDir" size="1.25rem"></ng-icon>
}
</button>
}
</ui-toolbar>