Skip to content

Commit

Permalink
Fix #417 Oculta unidade quando a mesma não está presente nos dados
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffersonrpn committed Nov 11, 2021
1 parent 1d83428 commit 05502de
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<div class="descricao">



<a
*ngIf="temLink; else tituloSemLink"
[routerLink]="['/itens/'+ item.id_item_contrato]"
Expand Down Expand Up @@ -36,7 +33,15 @@
...
</button>
<span class="text-muted">
({{ item.qt_itens_contrato }} {{ item.sg_unidade_medida | lowercase }})
<span *ngIf="item.qt_itens_contrato && item.sg_unidade_medida">
({{ item.qt_itens_contrato }} {{ item.sg_unidade_medida | lowercase }})
</span>
<span *ngIf="item.qt_itens_contrato && !item.sg_unidade_medida">
(Quantidade {{ item.qt_itens_contrato }} de unidade não informada)
</span>
<span *ngIf="!item.qt_itens_contrato && item.sg_unidade_medida">
(Quantidade não informada de {{ item.sg_unidade_medida | lowercase }})
</span>
</span>

<div>
Expand Down

0 comments on commit 05502de

Please sign in to comment.