feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
180 changed files with 603 additions and 6505 deletions
Showing only changes of commit 688b500f1e - Show all commits

View File

@ -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);