Parametros correctos
This commit is contained in:
@ -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];
|
||||
}
|
||||
}
|
||||
|
@ -127,7 +127,7 @@ class Invoice extends AbstractEndPoint
|
||||
$params[$key] = $data['cuota']->id;
|
||||
continue;
|
||||
}
|
||||
if (array_key_exists($ref, $data)) {
|
||||
if (array_key_exists($ref, $data) and $data[$ref] !== '' and $data[$ref] !== null) {
|
||||
$params[$key] = $data[$ref];
|
||||
}
|
||||
}
|
||||
@ -149,11 +149,11 @@ class Invoice extends AbstractEndPoint
|
||||
return $mappedData;
|
||||
}
|
||||
|
||||
protected function datosCuota(Model\Venta\Cuota $cuota): string
|
||||
protected function datosCuota(Model\Venta\Cuota $cuota): array
|
||||
{
|
||||
return json_encode([
|
||||
return [
|
||||
'numero' => $cuota->numero,
|
||||
'monto_clp' => $cuota->pago->valor
|
||||
]);
|
||||
];
|
||||
}
|
||||
}
|
||||
|
@ -73,7 +73,7 @@ class Subscription extends AbstractEndPoint
|
||||
$params[$key] = $this->datosVenta($data['venta']);
|
||||
continue;
|
||||
}
|
||||
if (array_key_exists($ref, $data)) {
|
||||
if (array_key_exists($ref, $data) and $data[$ref] !== '' and $data[$ref] !== null) {
|
||||
$params[$key] = $data[$ref];
|
||||
}
|
||||
}
|
||||
@ -94,12 +94,11 @@ class Subscription extends AbstractEndPoint
|
||||
}
|
||||
return $mappedData;
|
||||
}
|
||||
protected function datosVenta(Venta $venta): string
|
||||
protected function datosVenta(Venta $venta): array
|
||||
{
|
||||
$datos = [
|
||||
return [
|
||||
'proyecto' => $venta->proyecto()->descripcion,
|
||||
'unidades' => $venta->propiedad()->summary()
|
||||
];
|
||||
return json_encode($datos);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user