fix/add-venta (#44)
FIXES: - cast Comuna.id to int in Propietario - Inmobiliaria without tipoSociedad not loading descripcion Log exception processor Get Money values when stored as 0 Co-authored-by: Juan Pablo Vial <jpvialb@incoviba.cl> Reviewed-on: #44
This commit is contained in:
@ -53,7 +53,7 @@ class Money
|
||||
}
|
||||
try {
|
||||
$this->data[$provider] = (array) $this->fetchRedis($redisService, $redisKey);
|
||||
if (!isset($this->data[$provider][$date->format('Y-m-d')])) {
|
||||
if (!isset($this->data[$provider][$date->format('Y-m-d')]) or $this->data[$provider][$date->format('Y-m-d')] === 0) {
|
||||
throw new EmptyRedis($redisKey);
|
||||
}
|
||||
} catch (EmptyRedis) {
|
||||
|
Reference in New Issue
Block a user