refactor : rename Inventory_frontend to frontend in docs

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-04-01 14:20:19 +02:00
parent 73b2cf300d
commit be859e57db
17 changed files with 227 additions and 227 deletions

View File

@@ -811,9 +811,9 @@ private function resolvePieceQuantity(MachinePieceLink $pieceLink): int
### Task 2.5: Update Frontend to Handle New Structure Format
**Files:**
- Modify: `Inventory_frontend/app/composables/useMachineHierarchy.ts``buildMachineHierarchyFromLinks()`
- Modify: `Inventory_frontend/app/shared/utils/structureDisplayUtils.ts`
- Modify: `Inventory_frontend/app/shared/utils/structureSelectionUtils.ts`
- Modify: `frontend/app/composables/useMachineHierarchy.ts``buildMachineHierarchyFromLinks()`
- Modify: `frontend/app/shared/utils/structureDisplayUtils.ts`
- Modify: `frontend/app/shared/utils/structureSelectionUtils.ts`
**Note:** The API response shape for `structure` stays the same (pieces/subcomponents/products arrays), so frontend changes should be minimal. The main change is that `path` fields are removed and `resolvedPiece` is now always populated inline.
@@ -950,7 +950,7 @@ ALTER TABLE pieces DROP COLUMN IF EXISTS productids;
### Task 4.1: Update Frontend Types
**Files:**
- Modify: `Inventory_frontend/app/shared/types/` (if type definitions reference structure/skeleton JSON shapes)
- Modify: `frontend/app/shared/types/` (if type definitions reference structure/skeleton JSON shapes)
- [ ] **Step 1: Search frontend for all references to `structure.pieces`, `structure.subcomponents`, `structure.products`, `skeleton`, `productIds`**