The Atención al Clientes (Customer Service) role is the primary operational role for processing day-to-day banking transactions on behalf of clients. Unlike Management and Presidency, who evaluate and approve credits, Customer Service staff are the hands-on actors who initiate credits, open accounts, collect payments, and process all financial movements within the platform.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/DanielRivera03/SistemaBancario/llms.txt
Use this file to discover all available pages before exploring further.
Dashboard
The Customer Service dashboard is served at?cashmanhagestion=inicioatencionclientes and is restricted to users whose id_rol equals 4. Because all metrics on this dashboard are scoped to the individual employee, the controller uses the employee’s unique code ($_SESSION['usuario_unico']) as a filter for every query.
On load, the controller calls five data sources in parallel:
MostrarListadoNotificacionesRecortadaRecibidasUsuarios()— notification badge for the logged-in employeeConsultarListadoUltimasTrasacciones_PortalAtencionClientes($CodigoUsuarios)— the employee’s own last processed transactions (filtered by their unique employee code)Consulta_ContadorTransaccionesProcesadas_AtencionClientes($CodigoUsuarios)— total transaction count processed by this employeeConsulta_ContadorSolicitudesCreditosProcesadas_AtencionClientes($CodigoUsuarios)— total credit applications submitted by this employeeConsulta_TotalIngresosTransaccionesCreditosProcesadas_AtencionClientes($CodigoUsuarios)— total monetary income processed by this employee
Employee Performance Metrics
These metrics are unique to the Customer Service role and are not available on any other portal dashboard:| Metric | Model Method | Stored Procedure |
|---|---|---|
| Transactions processed | Consulta_ContadorTransaccionesProcesadas_AtencionClientes() | ContadorTransaccionesProcesadas_EmpleadosAtencionClientes |
| Credit requests handled | Consulta_ContadorSolicitudesCreditosProcesadas_AtencionClientes() | ConsultaSolicitudesCreditosProcesadas_EmpleadosAtencionClientes |
| Total income processed | Consulta_TotalIngresosTransaccionesCreditosProcesadas_AtencionClientes() | ConsultaTotalIngresosTransaccionesCreditos_EmpleadosAtencion |
Core Operational Capabilities
Credit Application Submission
Customer Service staff initiate new credit requests on behalf of eligible clients. These are submitted into the review queue that Management then evaluates at the first-level step.- Route: credit assignment and client selection views under
consulta-general-usuarios-asignacion-creditos-atencion-clientes.php
Savings Account Operations
Open a New Account
Register a new savings account for a client using
registro-nuevos-cuentas-ahorros-clientes-atencion-al-cliente.php.Route: ?cashmanhagestion=registro-nuevas-cuentas-ahorro-atencion-clientesProcess a Deposit
Credit funds to a client’s savings account via
registro-depositos-cuentas-ahorros-clientes-atencion-al-cliente.php.Process a Withdrawal
Debit funds from a client’s savings account via
registro-retiros-cuentas-ahorros-clientes-atencion-al-cliente.php.Transaction Processing (Orden de Pago)
Customer Service staff process monthly installment payments through the Orden de Pago workflow:- Queue view:
gestionador-cuotas-contratos-creditos-atencion-al-cliente.php— lists contracts pending payment collection - Payment order:
orden-pagos-cuotas-creditos-clientes-atencion-al-cliente.php— records the actual payment and issues the transaction receipt
Client Profile Access
Full client profile data is available to Customer Service staff to support credit evaluation and account management:- Complete user profiles:
consulta-completa-usuarios-clientes-atencion-al-cliente.php - Active credit account statement for a specific client:
estado-cuenta-nuevos-creditos-clientes-atencion-al-cliente.php - Active credit details:
consulta-especifica-solicitud-credito-aprobada-en-curso-clientes-atencion-clientes.php
Additional Views
| View file | Purpose |
|---|---|
consulta-clientes-creditos-activos-en-curso-atencion-al-cliente.php | List all active credits |
consulta-clientes-creditos-cancelados-atencion-al-cliente.php | List all cancelled credits |
consulta-cuotas-creditos-sistema-pagos-cashmanha-atencion-al-cliente.php | View all installment records |
consulta-general-cuentas-ahorros-registradas-atencion-al-cliente.php | All savings accounts |
consulta-general-mis-transacciones-clientes-procesadas-atencion-al-cliente.php | Employee’s own transactions |
consulta-especifica-listado-transacciones-cuentas-clientes-atencion-al-cliente.php | Per-client transaction drill-down |
mensajeria-usuarios-cashmanha-atencion-al-cliente.php | Internal messaging inbox |
notificaciones-recibidas-usuarios-atencion-al-cliente.php | Received notifications |
registro-reportes-fallos-plataforma-usuarios-atencion-al-cliente.php | Submit platform fault reports |
gestionar-solicitudes-reestructuracion-creditos-atencion-clientes.php | Manage restructuring requests |
Restrictions
Key Routes
| Route | Purpose |
|---|---|
?cashmanhagestion=inicioatencionclientes | Customer Service dashboard |
?cashmanhagestion=perfilatencionclientes | Employee profile |
?cashmanhagestion=registro-nuevas-cuentas-ahorro-atencion-clientes | Open new savings account |
?cashmanhagestion=gestionador-cuentas-ahorros-clientes-atencion-clientes | View all savings accounts |
?cashmanhagestion=mensajeria-cashmanha-usuarios-atencion-al-cliente | Messaging inbox |