- AP-09 Produktbestand inkl. Bewegungshistorie (product_stock_movements, ProductStockService) - AP-10 Rohstoffbestand-Ansicht je Lager (RawMaterialStockController) - AP-11 Bestandsschwellen / Out-of-Stock-Handling fuer Produkte und Shop - AP-12 Ausgang/Ausschuss (stock_disposals, StockDisposalController, InventoryService) - Set-Produkte (product_set_items) inkl. Aufloesung - Produktentwicklung & Hinweise-Verwaltung (Notices) - AP-13 Entwicklungskonzept Shop-Bestandsabzug im Plan dokumentiert - Feature-Tests fuer neue Module + aktualisierter Entwicklungsplan Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
795 B
PHP
19 lines
795 B
PHP
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
<h4 class="font-weight-bold py-2 mb-2">{{ __('Produktentwicklung') }}</h4>
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="alert alert-info mb-0">
|
|
<h6 class="alert-heading font-weight-bold">{{ __('Briefing ausstehend') }}</h6>
|
|
<p class="mb-0">
|
|
{{ __('Dieser Bereich ist als Platzhalter angelegt. Zur konkreten Funktionsweise der Produktentwicklung steht noch ein genaues Briefing aus.') }}
|
|
</p>
|
|
<p class="mb-0 mt-2 text-muted small">
|
|
{{ __('Es findet hier aktuell keine Bestandsbuchung und keine Verarbeitungslogik statt.') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|