Warenwirtschaft: AP-09 bis AP-13 (Produktbestand, Set-Produkte, Ausschuss, Konzepte)
- 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>
This commit is contained in:
parent
78679e0c55
commit
3ee2d756e9
63 changed files with 5968 additions and 901 deletions
|
|
@ -137,9 +137,9 @@
|
|||
|
||||
<div class="form-group">
|
||||
<label for="received_at">{{ __('Eingangsdatum') }} <span class="text-danger">*</span></label>
|
||||
<input type="date" name="received_at" id="received_at" required
|
||||
class="form-control @error('received_at') is-invalid @enderror"
|
||||
value="{{ old('received_at', now()->toDateString()) }}">
|
||||
<input type="text" name="received_at" id="received_at" required autocomplete="off"
|
||||
class="form-control datepicker-base @error('received_at') is-invalid @enderror"
|
||||
value="{{ old('received_at', now()->format('d.m.Y')) }}">
|
||||
@error('received_at')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
|
|
@ -175,8 +175,8 @@
|
|||
|
||||
<div class="form-group">
|
||||
<label for="best_before">{{ __('Mindesthaltbarkeit') }} <span class="text-danger">*</span></label>
|
||||
<input type="date" name="best_before" id="best_before"
|
||||
class="form-control @error('best_before') is-invalid @enderror"
|
||||
<input type="text" name="best_before" id="best_before" autocomplete="off"
|
||||
class="form-control datepicker-base @error('best_before') is-invalid @enderror"
|
||||
value="{{ old('best_before') }}">
|
||||
@error('best_before')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue