Skip to content

Commit

Permalink
Merge pull request #2 from novosga/fix/395_reiniciar_senhas
Browse files Browse the repository at this point in the history
fix: Allowing null to Unidade parameter
  • Loading branch information
rogeriolino authored Aug 13, 2024
2 parents 1930989 + 8c0f582 commit 5110c8f
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions Service/AtendimentoService.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,10 @@ public function acumularAtendimentos(?Unidade $unidade, $ctx = [])
($this->publisher)(new Update([
"/unidades/{$unidade->getId()}/fila",
], json_encode([ 'id' => $unidade->getId() ])));
} else {
($this->publisher)(new Update([
"/fila",
], json_encode([ ])));
}
($this->publisher)(new Update([
"/fila",
], json_encode([])));
}

public function buscaAtendimento(Unidade $unidade, $id)
Expand Down Expand Up @@ -1002,13 +1001,18 @@ public function getClienteValido(Cliente $cliente)
* Apaga os dados de atendimento da unidade ou global
* @param Unidade $unidade
*/
public function limparDados(Unidade $unidade)
public function limparDados(?Unidade $unidade)
{
$this->storage->apagarDadosAtendimento($unidade);

if ($unidade) {
($this->publisher)(new Update([
"/unidades/{$unidade->getId()}/fila",
], json_encode([ 'id' => $unidade->getId() ])));
}
($this->publisher)(new Update([
"/unidades/{$unidade->getId()}/fila",
], json_encode([ 'id' => $unidade->getId() ])));
"/fila",
], json_encode([])));
}

/**
Expand Down

0 comments on commit 5110c8f

Please sign in to comment.