Add POI feature and imporve the overall backend implementation
This commit is contained in:
@@ -108,6 +108,13 @@ class ProductionBatchResponse(BaseModel):
|
||||
actual_duration_minutes: Optional[int]
|
||||
status: ProductionStatusEnum
|
||||
priority: ProductionPriorityEnum
|
||||
|
||||
# Process stage tracking (added to replace frontend mock data)
|
||||
current_process_stage: Optional[str] = None
|
||||
process_stage_history: Optional[List[Dict[str, Any]]] = None
|
||||
pending_quality_checks: Optional[List[Dict[str, Any]]] = None
|
||||
completed_quality_checks: Optional[List[Dict[str, Any]]] = None
|
||||
|
||||
estimated_cost: Optional[float]
|
||||
actual_cost: Optional[float]
|
||||
yield_percentage: Optional[float]
|
||||
|
||||
Reference in New Issue
Block a user