Overview
The rewind production system handles:- Roll counting and tracking
- Label quantity verification
- Linear meter calculations
- Quality check validation
- Multi-machine operations (Rebobinadora 1, Rebobinadora 2, Rotoflex, REB EVO)
ProductionRewindComponentLocation:
src/features/production/production-rewind.component.ts
Data Model
While the component uses a simplified inline model, the report structure includes:Unique report identifier (e.g., “REP-RBB-800”)
Report timestamp
Work order number
Client name (Razón Social)
Product description
Rewinding machine name
Total number of finished rolls
Total label count across all rolls
Total linear meters produced
Quality inspection passed/pending status
Available Machines
Rewind operations support four machine types (production-rewind.component.ts:101):
REBOBINADORA 1
Primary rewinding machine for standard operations
REBOBINADORA 2
Secondary rewinding machine for parallel production
ROTOFLEX
High-speed rotary rewinder for large volume orders
REB EVO
Advanced rewinding system with quality inspection capabilities
Report Generation Logic
The system generates rewind reports from completed work orders (production-rewind.component.ts:97):
Calculation Details
Rolls: Random count between 5-55 units Labels Per Roll: Random count between 500-2,500 labels Total Labels:User Interface
Header Section
- Icon: Orange sync symbol representing rewinding action
- Description: “Final finishing, counting, and packaging”
Action Bar
- Search input: Filter reports by OT number
- Nuevo Reporte button: Create new rewind report
Reports Table
The main data table displays rewind reports with the following columns:- Fecha
- OT
- Cliente / Descripción
- Máquina
- Total Rollos
- Etiq. Total
- Metros Lineales
- Calidad
Report date in dd/MM/yyyy format
Row Styling
Quality Check Status
Quality inspection is tracked with a boolean flag and displayed with Material Icons:- Passed (true)
- Pending (false)
- Icon:
check_circle - Color: Green (
text-green-500) - Meaning: Quality inspection passed, ready for packaging
Report Workflow
Select Machine
Choose from available rewinding machines:
- REBOBINADORA 1
- REBOBINADORA 2
- ROTOFLEX
- REB EVO
Record Production Data
Enter the following measurements:Rolls Finished: Total number of completed rollsLabels Per Roll: Average label count per roll (if uniform), or total label countLinear Meters: Total meters produced (optional if system calculates from label count)
Perform Quality Check
Inspect finished rolls for:
- Proper winding tension
- Alignment and registration
- Edge quality
- Label count accuracy
- Core integrity
Integration with Packaging
Rewind reports feed directly into the Packaging module. Once quality check passes, rolls are ready for palletizing and final packaging.
- Track available inventory
- Verify roll counts match packing lists
- Calculate excess production (demasía)
Calculations and Formulas
Labels to Meters Conversion
Roll Distribution
If total labels and target labels per roll are known:Quality Pass Rate
From the report generation logic:Report Actions
Each report row includes a visibility icon button:- Full production breakdown
- Roll-by-roll details
- Quality inspection notes
- Operator information
Search Functionality
While the search input is present in the template, the filtering logic is not explicitly shown. A typical implementation would be:Best Practices
Verify roll count before marking quality check as passed
Ensure label count matches expected quantity from OT
Inspect winding quality on random sample rolls
Record actual labels per roll if not uniform
Document any discrepancies in label count vs. expected
Coordinate with packaging team for handoff
Related Modules
- Packaging - Final packaging and palletizing
- Diecut Production - Preceding conversion stage
- Print Production - Original printing stage
- Operator Mode - Full-screen operator interface
