feat(oms-data-acess), feat(return-review): implement return review functionality

Add new ReturnReview library with core components and service structure:
- Create ReturnReviewService and ReturnReviewStore for task management
- Extract PrintReceipts functionality into dedicated service
- Implement review page components with task listing and completion
- Add support for receipt item tasks data model
- Update error handling with consistent error types
- Add comprehensive JSDoc documentation throughout

The implementation provides the foundation for the return review workflow,
including task listing and completion functionality.

Ref: #4942
This commit is contained in:
Nino
2025-04-29 17:49:11 +02:00
parent 4c79f2d127
commit c98cbd73b1
18 changed files with 477 additions and 105 deletions

View File

@@ -4,7 +4,3 @@ import { ProcessService } from './process.service';
export function injectActivatedProcessId() {
return inject(ProcessService).activatedProcessId;
}
export function injectActivatedProcess() {
return inject(ProcessService).activatedProcess;
}