Backend (FastAPI + PostgreSQL): Chargen mit MHD, FEFO-Auslagern, Einheiten-Umrechnung (Stueck/g/ml + Packungen), Open-Food-Facts-Lookup mit lokalem Fallback, JWT-Auth mit Rollen (Admin/Nutzer), erster Admin beim Setup, Einkaufsliste, Ablaufwarnung, Lagerorte, pytest fuer FEFO. Web-UI (React/Vite): Login, Dashboard, Ein-/Auslagern, Produkte, Lagerorte, Benutzerverwaltung, Einkaufsliste - rollenabhaengig. Deploy: docker-compose + install.sh (Docker-Autoinstall, Secrets), README und Roadmap fuer Schritt 2 (iOS) und Schritt 3. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
from fastapi import APIRouter, Depends, HTTPException, status
|
|
from sqlalchemy.orm import Session
|
|
|
|
from ..database import get_db
|
|
from ..deps import get_current_user, require_admin
|
|
from ..models import Location, User
|
|
from ..schemas import LocationCreate, LocationOut
|
|
|
|
router = APIRouter(prefix="/locations", tags=["locations"])
|
|
|
|
|
|
@router.get("", response_model=list[LocationOut])
|
|
def list_locations(
|
|
db: Session = Depends(get_db), _: User = Depends(get_current_user)
|
|
) -> list[Location]:
|
|
return db.query(Location).order_by(Location.name).all()
|
|
|
|
|
|
@router.post("", response_model=LocationOut, status_code=status.HTTP_201_CREATED)
|
|
def create_location(
|
|
payload: LocationCreate,
|
|
db: Session = Depends(get_db),
|
|
_: User = Depends(require_admin),
|
|
) -> Location:
|
|
loc = Location(name=payload.name, parent_id=payload.parent_id)
|
|
db.add(loc)
|
|
db.commit()
|
|
db.refresh(loc)
|
|
return loc
|
|
|
|
|
|
@router.delete("/{location_id}", status_code=status.HTTP_204_NO_CONTENT)
|
|
def delete_location(
|
|
location_id: int,
|
|
db: Session = Depends(get_db),
|
|
_: User = Depends(require_admin),
|
|
) -> None:
|
|
loc = db.get(Location, location_id)
|
|
if loc is None:
|
|
raise HTTPException(status.HTTP_404_NOT_FOUND, "Lagerort nicht gefunden")
|
|
db.delete(loc)
|
|
db.commit()
|