From 688b500f1e73d3c6a3e63286ac0b7dd788c25c50 Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Tue, 3 Jun 2025 16:06:14 -0400 Subject: [PATCH] Parametros correctos --- cli/src/Command/Ventas/MedioPagos/Toku/Reset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/Command/Ventas/MedioPagos/Toku/Reset.php b/cli/src/Command/Ventas/MedioPagos/Toku/Reset.php index d27358f..0ae9292 100644 --- a/cli/src/Command/Ventas/MedioPagos/Toku/Reset.php +++ b/cli/src/Command/Ventas/MedioPagos/Toku/Reset.php @@ -20,7 +20,7 @@ class Reset extends Command $venta_ids = $input->getOption('venta_ids'); $body = []; if (!empty($venta_ids)) { - $body = ['venta_ids' => explode('|', $input->getOption('venta_ids'))]; + $body = ['skips' => ['subscription' => explode('|', $venta_ids)]]; } $options = count($body) > 0 ? ['json' => $body] : []; $response = $this->client->delete($uri, $options);