fix: pago.reintentar usa nombre_remitente del flujoData igual que el primer intento

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro
2026-07-19 22:53:06 +00:00
co-authored by Claude Sonnet 4.6
parent 97e1bdb72b
commit c294d3f2b8
+3 -2
View File
@@ -1472,8 +1472,9 @@ class PublicChat extends Component
return;
}
$datosPago = $this->flujoData['datosPago'];
$resultado = app(\App\Services\PagoValidadorService::class)->validar($datosPago, $this->userId, $this->nombreUsuario, 'web');
$datosPago = $this->flujoData['datosPago'];
$nombreParaValidar = $this->flujoData['nombre_remitente'] ?? $this->nombreUsuario;
$resultado = app(\App\Services\PagoValidadorService::class)->validar($datosPago, $this->userId, $nombreParaValidar, 'web');
$motivo = $resultado['motivo'] ?? '';
if ($resultado['estado'] === 'confirmado') {