Commit 5a9da097c42446e8da4c8608cd0cadf60118cd3c
1 parent
8286033b
Exists in
master
Redmine #5043 Tela visualizar atendimento
Showing
1 changed file
with
9 additions
and
0 deletions
Show diff stats
cit-adm-materiais-api/src/main/java/br/com/centralit/api/viewHelper/AtendimentoVH.java
... | ... | @@ -56,6 +56,8 @@ public class AtendimentoVH implements Serializable { |
56 | 56 | private List<Long> idsUnidadesRequisitantes; |
57 | 57 | |
58 | 58 | private SearchParams searchParams; |
59 | + | |
60 | + private boolean bloquearAtendimento; | |
59 | 61 | |
60 | 62 | /** |
61 | 63 | * Retorna o valor do atributo <code>idOrganizacao</code> |
... | ... | @@ -129,4 +131,11 @@ public class AtendimentoVH implements Serializable { |
129 | 131 | this.searchParams = searchParams; |
130 | 132 | } |
131 | 133 | |
134 | + public boolean isBloquearAtendimento() { | |
135 | + return bloquearAtendimento; | |
136 | + } | |
137 | + | |
138 | + public void setBloquearAtendimento(boolean bloquearAtendimento) { | |
139 | + this.bloquearAtendimento = bloquearAtendimento; | |
140 | + } | |
132 | 141 | } | ... | ... |