Overview
Expedientes are conciliation files that track mediation and dispute resolution proceedings. Each expediente is linked to a client and can have multiple submaterias (subject matters), invitados (invited parties), and conciliadores (conciliators) assigned.Prerequisites
Required permissions:
encargado, admin, or asistente roleCreating a New Expediente
Navigate to Expedientes Module
Access the conciliation module from the main menu and go to
/conciliacion/expediente.Enter Required Fields
Complete the mandatory information:
- Expediente Number (
n_expediente): Unique identifier for this conciliation file - Start Date (
fecha_inicio): Date when the conciliation process begins - Status (
estado): Current state (e.g., Active, Pending, Resolved, Closed) - Client (
id_cliente): Select the client for this expediente
Add Optional Information
Optionally provide:
- End Date (
fecha_final): Completion date for concluded expedientes - Description (
descripcion): Details about the conciliation matter
Validation Requirements
Expediente States and Status
Expedientes progress through various states during the conciliation process:- Active: Currently in progress
- Pending: Awaiting parties or information
- In Mediation: Active mediation sessions ongoing
- Resolved: Agreement reached
- Closed: Process completed or terminated
- Archived: Historical records
Updating Expediente Status
Access Expediente Details
Click on an expediente from the list to view details at
/conciliacion/expediente/{id}.Assigning Submaterias (Subject Matters)
Submaterias categorize the legal subject matter of the conciliation.Select Submateria
Choose one or more submaterias from the dropdown (e.g., Contract Disputes, Property, Family Matters).
Removing Submaterias
To remove an incorrectly assigned submateria:- Locate the submateria in the expediente details
- Click the remove or delete button
- Confirm removal - you’ll see: “Submateria Removido.”
An expediente can have multiple submaterias assigned simultaneously.
Adding Invitados (Invited Parties)
Invitados are the parties invited to participate in the conciliation process.Select or Create Invitado
Choose from existing invitados or create a new invited party with their contact information.
Removing Invitados
- Find the invited party in the expediente details
- Click the remove button
- Confirm - you’ll see: “invitado Removido.”
Assigning Conciliadores (Conciliators)
Conciliadores are the mediators or conciliators assigned to facilitate the process.Removing Conciliadores
- Locate the assigned conciliator in the expediente details
- Click the remove button
- Confirm removal - you’ll see: “Conciliador Removido.”
Multiple conciliators can be assigned to a single expediente for complex cases requiring multiple mediators.
Searching Expedientes
Quickly locate expedientes using the search functionality:Use Search Bar
On the expedientes index page at
/conciliacion/expediente, use the search input field.Deleting Expedientes
If the expediente has dependencies, you’ll receive an error: “No puede eliminar! Tiene asignado recursos.”
Complete Workflow Example
Here’s a typical workflow for managing a conciliation expediente:Upload Documents
Upload relevant documents to the expediente.
Schedule Sessions
Create activities for conciliation meetings.
Best Practices
- Detailed Descriptions: Include comprehensive details in the description field for future reference
- Timely Updates: Update status regularly to reflect current progress
- Complete Documentation: Ensure all relevant parties and submaterias are assigned
- Clear Numbering: Use a logical numbering system (e.g., EXP-YYYY-NNN)
- Communication: Keep invitados informed through documented activities
- Resource Management: Assign appropriate conciliators based on expertise and availability
Related Actions
Common next steps after creating an expediente:- Upload expediente documents
- Schedule conciliation activities
- View expediente history and timeline
- Generate conciliation reports
- Manage submateria catalog
- Manage invitado and conciliador registries
Technical Reference
Controller:ExpedienteController.php
Key Routes:
- List expedientes:
GET /conciliacion/expediente - Create expediente:
POST /conciliacion/expediente - View expediente:
GET /conciliacion/expediente/{id} - Update expediente:
PUT /conciliacion/expediente/{id} - Delete expediente:
DELETE /conciliacion/expediente/{id} - Assign submateria:
POST /conciliacion/expediente/{id}/submaterias - Assign invitado:
POST /conciliacion/expediente/{id}/invitados - Assign conciliador:
POST /conciliacion/expediente/{id}/conciliadores
Expedientes with relationships to Cliente, Submaterias, InvitadoConciliacion, Conciliador