Files
bakery-ia/frontend/src/pages/app/operations/production/ProductionPage.tsx

665 lines
23 KiB
TypeScript
Raw Normal View History

2025-09-21 07:45:19 +02:00
import React, { useState, useMemo } from 'react';
2025-10-24 13:05:04 +02:00
import { Plus, Clock, AlertCircle, CheckCircle, Timer, ChefHat, Eye, Edit, Package, PlusCircle, Play } from 'lucide-react';
2025-10-27 16:33:26 +01:00
import { Button, StatsGrid, EditViewModal, Toggle, SearchAndFilter, type FilterConfig, EmptyState } from '../../../../components/ui';
2025-09-21 17:35:36 +02:00
import { statusColors } from '../../../../styles/colors';
2025-09-21 07:45:19 +02:00
import { formatters } from '../../../../components/ui/Stats/StatsPresets';
2025-09-26 07:46:25 +02:00
import { LoadingSpinner } from '../../../../components/ui';
2025-08-28 10:41:04 +02:00
import { PageHeader } from '../../../../components/layout';
import { ProductionSchedule, CreateProductionBatchModal, ProductionStatusCard, QualityCheckModal, CompactProcessStageTracker } from '../../../../components/domain/production';
2025-09-21 07:45:19 +02:00
import { useCurrentTenant } from '../../../../stores/tenant.store';
import {
useProductionDashboard,
useActiveBatches,
useCreateProductionBatch,
useUpdateBatchStatus,
2025-10-24 13:05:04 +02:00
useTriggerProductionScheduler,
2025-09-21 07:45:19 +02:00
productionService
} from '../../../../api';
import type {
ProductionBatchResponse,
ProductionBatchCreate,
ProductionBatchStatusUpdate
} from '../../../../api';
import {
ProductionStatusEnum,
ProductionPriorityEnum
} from '../../../../api';
2025-09-26 07:46:25 +02:00
import { useTranslation } from 'react-i18next';
2025-09-23 19:24:22 +02:00
import { ProcessStage } from '../../../../api/types/qualityTemplates';
2025-10-30 21:08:07 +01:00
import { showToast } from '../../../../utils/toast';
2025-08-28 10:41:04 +02:00
const ProductionPage: React.FC = () => {
2025-08-28 23:40:44 +02:00
const [searchQuery, setSearchQuery] = useState('');
2025-09-26 12:12:17 +02:00
const [statusFilter, setStatusFilter] = useState('');
const [priorityFilter, setPriorityFilter] = useState('');
2025-09-21 07:45:19 +02:00
const [selectedBatch, setSelectedBatch] = useState<ProductionBatchResponse | null>(null);
const [showBatchModal, setShowBatchModal] = useState(false);
const [showCreateModal, setShowCreateModal] = useState(false);
2025-09-23 15:57:22 +02:00
const [showQualityModal, setShowQualityModal] = useState(false);
const [modalMode, setModalMode] = useState<'view' | 'edit'>('view');
2025-08-28 10:41:04 +02:00
2025-09-21 07:45:19 +02:00
const currentTenant = useCurrentTenant();
const tenantId = currentTenant?.id || '';
2025-09-26 07:46:25 +02:00
const { t } = useTranslation(['production', 'common']);
2025-09-21 07:45:19 +02:00
// API Data
const {
data: dashboardData,
isLoading: dashboardLoading,
error: dashboardError
} = useProductionDashboard(tenantId);
const {
data: activeBatchesData,
isLoading: batchesLoading,
error: batchesError
} = useActiveBatches(tenantId);
// Mutations
const createBatchMutation = useCreateProductionBatch();
const updateBatchStatusMutation = useUpdateBatchStatus();
// Handlers
const handleCreateBatch = async (batchData: ProductionBatchCreate) => {
try {
await createBatchMutation.mutateAsync({
tenantId,
batchData
});
} catch (error) {
console.error('Error creating production batch:', error);
throw error;
}
2025-08-28 10:41:04 +02:00
};
2025-10-24 13:05:04 +02:00
const handleTriggerScheduler = async () => {
try {
await triggerSchedulerMutation.mutateAsync(tenantId);
2025-10-30 21:08:07 +01:00
showToast.success('Scheduler ejecutado exitosamente');
2025-10-24 13:05:04 +02:00
} catch (error) {
console.error('Error triggering scheduler:', error);
2025-10-30 21:08:07 +01:00
showToast.error('Error al ejecutar scheduler');
2025-10-24 13:05:04 +02:00
}
};
2025-09-23 19:24:22 +02:00
// Stage management handlers
const handleStageAdvance = async (batchId: string, currentStage: ProcessStage) => {
const stages = Object.values(ProcessStage);
const currentIndex = stages.indexOf(currentStage);
const nextStage = stages[currentIndex + 1];
if (nextStage) {
try {
await updateBatchStatusMutation.mutateAsync({
batchId,
updates: {
current_process_stage: nextStage,
process_stage_history: {
[currentStage]: { end_time: new Date().toISOString() },
[nextStage]: { start_time: new Date().toISOString() }
}
}
});
} catch (error) {
console.error('Error advancing stage:', error);
}
} else {
// Final stage - mark as completed
await updateBatchStatusMutation.mutateAsync({
batchId,
updates: { status: ProductionStatusEnum.COMPLETED }
});
}
};
const handleStageStart = async (batchId: string, stage: ProcessStage) => {
try {
await updateBatchStatusMutation.mutateAsync({
batchId,
updates: {
status: ProductionStatusEnum.IN_PROGRESS,
current_process_stage: stage,
process_stage_history: {
[stage]: { start_time: new Date().toISOString() }
}
}
});
} catch (error) {
console.error('Error starting stage:', error);
}
};
const handleQualityCheckForStage = (batch: ProductionBatchResponse, stage: ProcessStage) => {
setSelectedBatch(batch);
setShowQualityModal(true);
// The QualityCheckModal should be enhanced to handle stage-specific checks
};
// Helper function to get process stage data from the batch (now from real backend data)
const getProcessStageData = (batch: ProductionBatchResponse) => {
// Backend now provides these fields in the API response:
// - current_process_stage
// - process_stage_history
// - pending_quality_checks
// - completed_quality_checks
return {
current: batch.current_process_stage || 'mixing',
history: batch.process_stage_history || [],
pendingQualityChecks: batch.pending_quality_checks || [],
completedQualityChecks: batch.completed_quality_checks || []
2025-09-23 19:24:22 +02:00
};
};
2025-08-28 10:41:04 +02:00
2025-09-21 07:45:19 +02:00
const batches = activeBatchesData?.batches || [];
const filteredBatches = useMemo(() => {
2025-09-26 12:12:17 +02:00
let filtered = batches;
2025-09-21 07:45:19 +02:00
2025-09-26 12:12:17 +02:00
// Apply search filter
if (searchQuery) {
const searchLower = searchQuery.toLowerCase();
filtered = filtered.filter(batch =>
batch.product_name.toLowerCase().includes(searchLower) ||
batch.batch_number.toLowerCase().includes(searchLower) ||
(batch.staff_assigned && batch.staff_assigned.some(staff =>
staff.toLowerCase().includes(searchLower)
))
);
}
// Apply status filter
if (statusFilter) {
filtered = filtered.filter(batch => batch.status === statusFilter);
}
// Apply priority filter
if (priorityFilter) {
filtered = filtered.filter(batch => batch.priority === priorityFilter);
}
return filtered;
}, [batches, searchQuery, statusFilter, priorityFilter]);
2025-09-21 07:45:19 +02:00
// Calculate production stats from real data
const productionStats = useMemo(() => {
if (!dashboardData) {
return {
activeBatches: 0,
todaysTarget: 0,
capacityUtilization: 0,
onTimeCompletion: 0,
qualityScore: 0,
totalOutput: 0,
efficiency: 0
};
}
return {
activeBatches: dashboardData.active_batches || 0,
todaysTarget: dashboardData.todays_production_plan?.length || 0,
capacityUtilization: Math.round(dashboardData.capacity_utilization || 0),
onTimeCompletion: Math.round(dashboardData.on_time_completion_rate || 0),
qualityScore: Math.round(dashboardData.average_quality_score || 0),
totalOutput: dashboardData.total_output_today || 0,
efficiency: Math.round(dashboardData.efficiency_percentage || 0)
};
}, [dashboardData]);
// Loading state
if (!tenantId || dashboardLoading || batchesLoading) {
return (
<div className="flex items-center justify-center min-h-64">
<LoadingSpinner text="Cargando producción..." />
</div>
);
}
// Error state
if (dashboardError || batchesError) {
return (
<div className="text-center py-12">
<AlertCircle className="mx-auto h-12 w-12 text-red-500 mb-4" />
<h3 className="text-lg font-medium text-[var(--text-primary)] mb-2">
Error al cargar la producción
</h3>
<p className="text-[var(--text-secondary)] mb-4">
{(dashboardError || batchesError)?.message || 'Ha ocurrido un error inesperado'}
</p>
<Button onClick={() => window.location.reload()}>
Reintentar
</Button>
</div>
);
}
2025-08-28 18:07:16 +02:00
2025-08-28 10:41:04 +02:00
return (
2025-08-30 19:11:15 +02:00
<div className="space-y-6">
2025-10-24 13:05:04 +02:00
<PageHeader
title="Gestión de Producción"
description="Planifica y controla la producción diaria de tu panadería"
actions={[
{
id: 'create-batch',
label: 'Nueva Orden de Producción',
icon: PlusCircle,
onClick: () => setShowCreateModal(true),
variant: 'primary',
size: 'md'
}
]}
/>
2025-08-28 10:41:04 +02:00
{/* Production Stats */}
2025-09-21 07:45:19 +02:00
<StatsGrid
stats={[
{
title: 'Lotes Activos',
value: productionStats.activeBatches,
variant: 'default' as const,
icon: Package,
},
{
title: 'Utilización Capacidad',
value: `${productionStats.capacityUtilization}%`,
variant: productionStats.capacityUtilization >= 80 ? 'success' as const : 'warning' as const,
icon: Timer,
},
{
title: 'Completado a Tiempo',
value: `${productionStats.onTimeCompletion}%`,
variant: productionStats.onTimeCompletion >= 90 ? 'success' as const : 'error' as const,
icon: CheckCircle,
},
{
title: 'Puntuación Calidad',
value: `${productionStats.qualityScore}%`,
variant: productionStats.qualityScore >= 85 ? 'success' as const : 'warning' as const,
icon: Package,
},
{
title: 'Producción Hoy',
value: formatters.number(productionStats.totalOutput),
variant: 'info' as const,
icon: ChefHat,
},
{
title: 'Eficiencia',
value: `${productionStats.efficiency}%`,
variant: productionStats.efficiency >= 75 ? 'success' as const : 'warning' as const,
icon: Timer,
},
]}
2025-08-30 19:21:15 +02:00
columns={3}
2025-08-30 19:11:15 +02:00
/>
2025-08-28 10:41:04 +02:00
2025-09-24 20:14:49 +02:00
{/* Production Batches Section - No tabs needed */}
<>
2025-09-26 12:12:17 +02:00
{/* Search and Filter Controls */}
<SearchAndFilter
searchValue={searchQuery}
onSearchChange={setSearchQuery}
searchPlaceholder="Buscar lotes por producto, número de lote o personal..."
filters={[
{
key: 'status',
label: 'Estado',
type: 'dropdown',
value: statusFilter,
onChange: (value) => setStatusFilter(value as string),
placeholder: 'Todos los estados',
options: Object.values(ProductionStatusEnum).map(status => ({
value: status,
label: status.replace(/_/g, ' ').replace(/\b\w/g, l => l.toUpperCase())
}))
},
{
key: 'priority',
label: 'Prioridad',
type: 'dropdown',
value: priorityFilter,
onChange: (value) => setPriorityFilter(value as string),
placeholder: 'Todas las prioridades',
options: Object.values(ProductionPriorityEnum).map(priority => ({
value: priority,
label: priority.charAt(0).toUpperCase() + priority.slice(1).toLowerCase()
}))
}
] as FilterConfig[]}
/>
2025-08-30 19:11:15 +02:00
2025-09-21 07:45:19 +02:00
{/* Production Batches Grid */}
2025-08-30 19:11:15 +02:00
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-3">
2025-09-23 15:57:22 +02:00
{filteredBatches.map((batch) => (
<ProductionStatusCard
key={batch.id}
batch={batch}
onView={(batch) => {
setSelectedBatch(batch);
setModalMode('view');
setShowBatchModal(true);
}}
onEdit={(batch) => {
setSelectedBatch(batch);
setModalMode('edit');
setShowBatchModal(true);
}}
onStart={async (batch) => {
try {
await updateBatchStatusMutation.mutateAsync({
batchId: batch.id,
updates: { status: ProductionStatusEnum.IN_PROGRESS }
});
} catch (error) {
console.error('Error starting batch:', error);
}
}}
onPause={async (batch) => {
try {
await updateBatchStatusMutation.mutateAsync({
batchId: batch.id,
updates: { status: ProductionStatusEnum.ON_HOLD }
});
} catch (error) {
console.error('Error pausing batch:', error);
}
}}
onComplete={async (batch) => {
try {
await updateBatchStatusMutation.mutateAsync({
batchId: batch.id,
updates: { status: ProductionStatusEnum.QUALITY_CHECK }
});
} catch (error) {
console.error('Error completing batch:', error);
}
}}
onCancel={async (batch) => {
try {
await updateBatchStatusMutation.mutateAsync({
batchId: batch.id,
updates: { status: ProductionStatusEnum.CANCELLED }
});
} catch (error) {
console.error('Error cancelling batch:', error);
}
}}
onQualityCheck={(batch) => {
setSelectedBatch(batch);
setShowQualityModal(true);
}}
onViewHistory={(batch) => {
setSelectedBatch(batch);
setModalMode('view');
setShowBatchModal(true);
}}
showDetailedProgress={true}
/>
))}
2025-08-28 10:41:04 +02:00
</div>
2025-08-30 19:11:15 +02:00
{/* Empty State */}
2025-09-21 07:45:19 +02:00
{filteredBatches.length === 0 && (
2025-10-27 16:33:26 +01:00
<EmptyState
icon={ChefHat}
title="No se encontraron lotes de producción"
description={
batches.length === 0
2025-09-21 07:45:19 +02:00
? 'No hay lotes de producción activos. Crea el primer lote para comenzar.'
: 'Intenta ajustar la búsqueda o crear un nuevo lote de producción'
2025-10-27 16:33:26 +01:00
}
actionLabel="Nueva Orden de Producción"
actionIcon={Plus}
onAction={() => setShowCreateModal(true)}
/>
2025-08-30 19:11:15 +02:00
)}
</>
2025-08-28 10:41:04 +02:00
2025-08-30 19:11:15 +02:00
2025-09-23 12:49:35 +02:00
2025-09-21 07:45:19 +02:00
{/* Production Batch Modal */}
{showBatchModal && selectedBatch && (
2025-09-26 07:46:25 +02:00
<EditViewModal
2025-09-21 07:45:19 +02:00
isOpen={showBatchModal}
onClose={() => {
2025-09-21 07:45:19 +02:00
setShowBatchModal(false);
setSelectedBatch(null);
setModalMode('view');
}}
mode={modalMode}
onModeChange={setModalMode}
2025-09-21 07:45:19 +02:00
title={selectedBatch.product_name}
subtitle={`Lote de Producción #${selectedBatch.batch_number}`}
2025-09-23 15:57:22 +02:00
statusIndicator={{
color: statusColors.inProgress.primary,
2025-09-26 07:46:25 +02:00
text: t(`production:status.${selectedBatch.status.toLowerCase()}`),
2025-09-23 15:57:22 +02:00
icon: Package
}}
size="lg"
sections={[
{
title: 'Información General',
icon: Package,
fields: [
{
2025-09-21 07:45:19 +02:00
label: 'Cantidad Planificada',
value: `${selectedBatch.planned_quantity} unidades`,
highlight: true
},
{
2025-09-21 07:45:19 +02:00
label: 'Cantidad Real',
value: selectedBatch.actual_quantity
? `${selectedBatch.actual_quantity} unidades`
: 'Pendiente',
editable: modalMode === 'edit',
type: 'number'
},
{
label: 'Prioridad',
2025-09-21 07:45:19 +02:00
value: selectedBatch.priority,
type: 'select',
editable: modalMode === 'edit',
2025-09-26 07:46:25 +02:00
options: Object.values(ProductionPriorityEnum).map(value => ({
value,
label: t(`production:priority.${value.toLowerCase()}`)
}))
},
{
2025-09-21 07:45:19 +02:00
label: 'Estado',
value: selectedBatch.status,
type: 'select',
editable: modalMode === 'edit',
2025-09-26 07:46:25 +02:00
options: Object.values(ProductionStatusEnum).map(value => ({
value,
label: t(`production:status.${value.toLowerCase()}`)
}))
2025-09-21 07:45:19 +02:00
},
{
label: 'Personal Asignado',
value: selectedBatch.staff_assigned?.join(', ') || 'No asignado',
editable: modalMode === 'edit',
type: 'text'
}
]
},
{
title: 'Cronograma',
icon: Clock,
fields: [
{
2025-09-21 07:45:19 +02:00
label: 'Inicio Planificado',
value: selectedBatch.planned_start_time,
type: 'datetime'
},
{
label: 'Fin Planificado',
value: selectedBatch.planned_end_time,
type: 'datetime'
},
{
label: 'Inicio Real',
value: selectedBatch.actual_start_time || 'Pendiente',
type: 'datetime'
},
{
2025-09-21 07:45:19 +02:00
label: 'Fin Real',
value: selectedBatch.actual_end_time || 'Pendiente',
type: 'datetime'
}
]
2025-09-21 07:45:19 +02:00
},
2025-09-23 15:57:22 +02:00
{
2025-09-23 19:24:22 +02:00
title: 'Seguimiento de Proceso',
2025-09-23 15:57:22 +02:00
icon: Timer,
fields: [
{
2025-09-23 19:24:22 +02:00
label: '',
value: (
<CompactProcessStageTracker
processStage={getProcessStageData(selectedBatch)}
2025-09-23 19:24:22 +02:00
onAdvanceStage={(currentStage) => handleStageAdvance(selectedBatch.id, currentStage)}
onQualityCheck={(checkId) => {
setShowQualityModal(true);
console.log('Opening quality check:', checkId);
}}
className="w-full"
/>
),
span: 2
2025-09-23 15:57:22 +02:00
}
]
},
2025-09-21 07:45:19 +02:00
{
title: 'Calidad y Costos',
icon: CheckCircle,
fields: [
{
label: 'Puntuación de Calidad',
value: selectedBatch.quality_score
? `${selectedBatch.quality_score}/10`
: 'Pendiente'
},
{
label: 'Rendimiento',
value: selectedBatch.yield_percentage
? `${selectedBatch.yield_percentage}%`
: 'Calculando...'
},
{
label: 'Costo Estimado',
value: selectedBatch.estimated_cost || 0,
type: 'currency'
},
{
label: 'Costo Real',
value: selectedBatch.actual_cost || 0,
type: 'currency'
}
]
}
]}
2025-09-21 07:45:19 +02:00
onSave={async () => {
try {
// Implementation would depend on specific fields changed
console.log('Saving batch changes:', selectedBatch.id);
// await updateBatchStatusMutation.mutateAsync({
// batchId: selectedBatch.id,
// updates: selectedBatch
// });
setShowBatchModal(false);
setSelectedBatch(null);
setModalMode('view');
} catch (error) {
console.error('Error saving batch:', error);
}
}}
onFieldChange={(sectionIndex, fieldIndex, value) => {
if (!selectedBatch) return;
const sections = [
['planned_quantity', 'actual_quantity', 'priority', 'status', 'staff_assigned'],
['planned_start_time', 'planned_end_time', 'actual_start_time', 'actual_end_time'],
['quality_score', 'yield_percentage', 'estimated_cost', 'actual_cost']
];
// Get the field names from modal sections
const sectionFields = [
{ fields: ['planned_quantity', 'actual_quantity', 'priority', 'status', 'staff_assigned'] },
{ fields: ['planned_start_time', 'planned_end_time', 'actual_start_time', 'actual_end_time'] },
{ fields: ['quality_score', 'yield_percentage', 'estimated_cost', 'actual_cost'] }
];
const fieldMapping: Record<string, string> = {
'Cantidad Real': 'actual_quantity',
'Prioridad': 'priority',
'Estado': 'status',
'Personal Asignado': 'staff_assigned'
};
// Get section labels to map back to field names
const sectionLabels = [
['Cantidad Planificada', 'Cantidad Real', 'Prioridad', 'Estado', 'Personal Asignado'],
['Inicio Planificado', 'Fin Planificado', 'Inicio Real', 'Fin Real'],
['Puntuación de Calidad', 'Rendimiento', 'Costo Estimado', 'Costo Real']
];
const fieldLabel = sectionLabels[sectionIndex]?.[fieldIndex];
const propertyName = fieldMapping[fieldLabel] || sectionFields[sectionIndex]?.fields[fieldIndex];
if (propertyName) {
let processedValue: any = value;
if (propertyName === 'staff_assigned' && typeof value === 'string') {
processedValue = value.split(',').map(s => s.trim()).filter(s => s.length > 0);
} else if (propertyName === 'actual_quantity') {
processedValue = parseFloat(value as string) || 0;
}
setSelectedBatch({
...selectedBatch,
[propertyName]: processedValue
});
}
}}
/>
2025-08-30 19:11:15 +02:00
)}
2025-09-21 07:45:19 +02:00
{/* Create Production Batch Modal */}
<CreateProductionBatchModal
isOpen={showCreateModal}
onClose={() => setShowCreateModal(false)}
onCreateBatch={handleCreateBatch}
/>
2025-09-23 15:57:22 +02:00
{/* Quality Check Modal */}
{showQualityModal && selectedBatch && (
<QualityCheckModal
isOpen={showQualityModal}
onClose={() => {
setShowQualityModal(false);
setSelectedBatch(null);
}}
batch={selectedBatch}
onComplete={async (result) => {
console.log('Quality check completed:', result);
// Optionally update batch status to completed or quality_passed
try {
await updateBatchStatusMutation.mutateAsync({
batchId: selectedBatch.id,
updates: {
status: result.overallPass ? ProductionStatusEnum.COMPLETED : ProductionStatusEnum.ON_HOLD
}
});
} catch (error) {
console.error('Error updating batch status after quality check:', error);
}
}}
/>
)}
2025-08-28 10:41:04 +02:00
</div>
);
};
2025-10-30 21:08:07 +01:00
export default ProductionPage;