Overview
Clisés are flexographic printing plates that transfer ink to substrates during production. The P.FLEX system tracks their complete lifecycle from creation through retirement.CliseItem Data Model
Complete interface definition frominventory.models.ts:16-43:
Field Descriptions
Unique identifier code for the cliché (e.g., “CL-2045-A”)
Physical location in warehouse. Examples:
1150→ Rack CL-1, range 1136-1190A-01→ Zona A, position 01- Numeric values auto-map to visual rack layout
Customer name (e.g., “Coca Cola”, “Nestlé”)
Cylinder gear teeth count. Used for die compatibility matching. Common values: “280”, “360”, “420”
Print width in millimeters
Repeat length (advance) in millimeters. Critical for production setup.
Legacy die reference field (text-based). Modern system uses
linkedDies array for structured references.Array of die IDs explicitly linked to this cliché. Enables production planning and die compatibility warnings.
Critical maintenance field: Accumulated meters of substrate printed with this cliché.
- Below 500,000m: Status = OK
- Above 500,000m: Status = MANT (maintenance required)
- Triggers alerts and maintenance scheduling
Detailed breakdown of meters printed per color:Used for color-specific maintenance planning.
Complete audit trail of operations. See History Tracking section below.
Import validation flag. Set to
true when required fields (item, cliente) are missing during Excel import.History Tracking
Every operation is logged in thehistory array:
Example History Entry
inventory.models.ts:2-9
KPI Statistics
The component calculates real-time inventory metrics:Excel Import
Flexible column mapping handles diverse spreadsheet formats:Import Workflow
Preview & Validation
System displays preview modal showing:
- Valid records (green badge)
- Conflicts requiring review (red badge, animated pulse)
Die Linking
Clisés can be linked to compatible dies for production planning:Manual Die Linking
Manual Die Linking
In edit mode, use the die search dropdown:Reference:
inventory-clise.component.ts:420-438Automatic Z-Value Matching
Automatic Z-Value Matching
System auto-suggests dies with matching Z-values:
CRUD Operations
Add New Cliché
inventory.service.ts:237-241
Update Existing Cliché
inventory.service.ts:243-252
UI Component
TheInventoryCliseComponent provides:
- Search/Filter: Real-time text search across item, cliente, descripcion
- Pagination: 20 items per page (configurable via
pageSize) - Sorting: Click column headers to sort
- Detail Modal: Double-click row or click eye icon
- Edit Mode: Toggle between read-only and edit modes
- Image Preview: Visual identification using
imagenfield or placeholder
Modal Sections
- Información General: Basic item data (cliente, item, fecha ingreso)
- Especificaciones Técnicas: Dimensions, Z-value, colors, FLER reference
- Métricas de Uso: Accumulated meters, color usage breakdown with progress bars
- Troqueles Compatibles: Linked dies with search/add functionality
- Registro de Operaciones: Full history table with date, type, user, description
- Observaciones: Yellow-highlighted notes field
- Ubicación Física: Rack visualization with editable position
inventory-clise.component.ts:216-600
Maintenance Alerts
System automatically flags clisés requiring maintenance:The 500,000 meter threshold is configurable. Adjust in the status calculation logic as needed for your production requirements.
Best Practices
Regular Meter Updates
Update
mtl_acum after every production run to ensure accurate maintenance schedulingColor Usage Tracking
Populate
colorUsage array for multi-color clisés to identify high-wear colorsHistory Logging
Add history entries for all operations (production, maintenance, repairs) to maintain compliance
Die Linking
Link compatible dies to enable production planning and reduce setup time
Related Topics
- Die Management - Compatible cutting tools
- Rack Layout - Physical location visualization
- Stock Control - Finished goods using these clisés
