Parametros correctos

This commit is contained in:
Juan Pablo Vial
2025-05-13 20:12:26 -04:00
parent 3e937ab748
commit d6e60efcaf
3 changed files with 8 additions and 9 deletions

View File

@ -72,7 +72,7 @@ class Customer extends AbstractEndPoint
if ($ref === null) {
continue;
}
if (array_key_exists($ref, $data)) {
if (array_key_exists($ref, $data) and $data[$ref] !== '' and $data[$ref] !== null) {
$params[$key] = $data[$ref];
}
}