Status update was returning only new_status (string) and the parent list's onStatusUpdated only set status_name. The <select> was bound to status_id, which never changed — so it visually reverted to the old status even though the PATCH succeeded. - Backend: include new_status_id in the status-update response. - Panel: own currentStatusId/currentStatusName state so the select reflects the change immediately and survives stale parent snapshots. - Parent list: update status_id on both the row and selectedTicket so the list row stays in sync when the panel stays open. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
66 lines
1.4 KiB
Python
66 lines
1.4 KiB
Python
"""Normalized DTOs for ticket management endpoints."""
|
|
from __future__ import annotations
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class PSAResourceSchema(BaseModel):
|
|
member_id: int
|
|
member_name: str
|
|
member_identifier: str
|
|
is_rf_user: bool = False
|
|
|
|
|
|
class PSATicketCreatedSchema(BaseModel):
|
|
id: int
|
|
summary: str
|
|
board_name: str
|
|
status_name: str
|
|
priority_name: str
|
|
company_name: str
|
|
resources: list[PSAResourceSchema] = []
|
|
|
|
|
|
class PSATicketStatusUpdateSchema(BaseModel):
|
|
ticket_id: int
|
|
previous_status: str
|
|
new_status: str
|
|
new_status_id: int
|
|
|
|
|
|
class TicketCreatePayloadSchema(BaseModel):
|
|
summary: str
|
|
company_id: int
|
|
board_id: int
|
|
status_id: int
|
|
priority_id: int
|
|
description: str | None = None
|
|
assigned_member_id: int | None = None
|
|
|
|
|
|
class TicketListResponseSchema(BaseModel):
|
|
items: list = []
|
|
total: int = 0
|
|
page: int = 1
|
|
page_size: int = 25
|
|
|
|
|
|
class AiParseRequestSchema(BaseModel):
|
|
prompt: str
|
|
|
|
|
|
class AiParseResponseSchema(BaseModel):
|
|
summary: str | None = None
|
|
company_id: int | None = None
|
|
board_id: int | None = None
|
|
priority_id: int | None = None
|
|
status_id: int | None = None
|
|
assigned_member_id: int | None = None
|
|
description: str | None = None
|
|
missing_fields: list[str] = []
|
|
warnings: list[str] = []
|
|
|
|
|
|
class PSAPrioritySchema(BaseModel):
|
|
id: int
|
|
name: str
|