mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
feat(isa-app): migrate remission navigation to tab-based routing system Replace hardcoded /filiale/remission routes with dynamic tab-based paths using TabService. This enables proper process isolation and multi-tab support for remission workflows. Changes include: - Update notification component to use dynamic remission paths - Migrate goods-in remission preview to tab-based navigation - Refactor side menu to use new remission routing structure - Remove legacy remission route from app routing module - Add linkedSignal for reactive path generation BREAKING CHANGE: Direct navigation to /filiale/remission is no longer supported. Users must access remission through the new tab-based system. Ref: #5323, #5324, #5325
19 lines
422 B
HTML
19 lines
422 B
HTML
<div class="notification-list scroll-bar">
|
|
@for (notification of notifications; track notification) {
|
|
<modal-notifications-list-item
|
|
[item]="notification"
|
|
(itemSelected)="itemSelected($event)"
|
|
></modal-notifications-list-item>
|
|
<hr />
|
|
}
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<a
|
|
class="cta-primary"
|
|
[routerLink]="remissionPath()"
|
|
(click)="navigated.emit()"
|
|
>Zur Remission</a
|
|
>
|
|
</div>
|