Add the Sales CRM service through collaboration, sync architecture/registry docs, expose crm.torbatyar.ir, and include a production deploy script. Co-authored-by: Cursor <cursoragent@cursor.com>
60 lines
1.9 KiB
Python
60 lines
1.9 KiB
Python
"""Sales quote CRM APIs."""
|
|
from __future__ import annotations
|
|
|
|
from uuid import UUID
|
|
|
|
from fastapi import APIRouter, Depends, status
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.api.deps import get_db, get_pagination, require_tenant
|
|
from app.core.security import get_current_user
|
|
from app.schemas.foundation import QuoteCreate, QuoteRead, QuoteUpdate
|
|
from app.services.foundation import QuoteService
|
|
from shared.pagination import PaginationParams
|
|
from shared.security import CurrentUser
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.post("", response_model=QuoteRead, status_code=status.HTTP_201_CREATED)
|
|
async def create_quote(
|
|
body: QuoteCreate,
|
|
tenant_id: UUID = Depends(require_tenant),
|
|
db: AsyncSession = Depends(get_db),
|
|
_user: CurrentUser = Depends(get_current_user),
|
|
):
|
|
return await QuoteService(db).create(tenant_id, body)
|
|
|
|
|
|
@router.get("", response_model=list[QuoteRead])
|
|
async def list_quotes(
|
|
tenant_id: UUID = Depends(require_tenant),
|
|
pagination: PaginationParams = Depends(get_pagination),
|
|
db: AsyncSession = Depends(get_db),
|
|
_user: CurrentUser = Depends(get_current_user),
|
|
):
|
|
return await QuoteService(db).list(
|
|
tenant_id, offset=pagination.offset, limit=pagination.page_size
|
|
)
|
|
|
|
|
|
@router.get("/{quote_id}", response_model=QuoteRead)
|
|
async def get_quote(
|
|
quote_id: UUID,
|
|
tenant_id: UUID = Depends(require_tenant),
|
|
db: AsyncSession = Depends(get_db),
|
|
_user: CurrentUser = Depends(get_current_user),
|
|
):
|
|
return await QuoteService(db).get(tenant_id, quote_id)
|
|
|
|
|
|
@router.patch("/{quote_id}", response_model=QuoteRead)
|
|
async def update_quote(
|
|
quote_id: UUID,
|
|
body: QuoteUpdate,
|
|
tenant_id: UUID = Depends(require_tenant),
|
|
db: AsyncSession = Depends(get_db),
|
|
_user: CurrentUser = Depends(get_current_user),
|
|
):
|
|
return await QuoteService(db).update(tenant_id, quote_id, body)
|