mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
- Introduce `addReturnItem` and `addReturnSuggestionItem` methods to `RemissionReturnReceiptService` with full schema validation and error handling - Add models and schemas for receipt-return tuples and add-return-item/suggestion operations - Refactor `RemissionStore` (formerly `RemissionSelectionStore`) to support selection, quantity updates, and clearing of remission items; update all usages to new store name and API - Update `RemissionListItemComponent` to support item selection via checkbox and quantity dialog, following workspace UX and state management guidelines - Enhance `RemissionListComponent` to handle selected items, batch remission, and error/success feedback using new store and service APIs - Fix and extend tests for new store and service logic, ensuring coverage for selection, quantity, and remission flows - Update remission start dialog and assign package number components for improved validation and loading state handling Ref: #5221
31 lines
712 B
JSON
31 lines
712 B
JSON
{
|
|
"extends": "../../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"importHelpers": true,
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "preserve"
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"typeCheckHostBindings": true,
|
|
"strictTemplates": true
|
|
},
|
|
"files": [],
|
|
"include": [],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "./tsconfig.spec.json"
|
|
}
|
|
]
|
|
}
|