From ff7b4a7d3d1de6cb652609ea440b274d6d008d5b Mon Sep 17 00:00:00 2001 From: Juan Felipe Zapata Moreno Date: Mon, 8 Dec 2025 10:14:21 -0600 Subject: [PATCH] Fix: RepuveService consultar vehiculo --- app/Services/RepuveService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/RepuveService.php b/app/Services/RepuveService.php index 54566a3..9d63226 100644 --- a/app/Services/RepuveService.php +++ b/app/Services/RepuveService.php @@ -288,7 +288,7 @@ public function consultarVehiculo(?string $niv = null, ?string $placa = null) $url = $this->baseUrl . '/jaxws-consultarpv/ConsultaRpv'; // Construir arg2: NIV|PLACA||||||| - $arg2 = ($niv ?? '') . '|' . ($placa ?? '') . str_repeat('|', 7); + $arg2 = ($niv ?? '') . '|' . ($placa ?? '') . str_repeat('|', 4); $soapBody = <<