mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
Improve
This commit is contained in:
@@ -37,15 +37,41 @@
|
||||
<p >{{LoadedDocument.Status}}</p>
|
||||
</ion-item>
|
||||
</div>
|
||||
<div class="bottom-content width-100">
|
||||
<div class="bottom-content width-100" *ngIf="LoadedDocument">
|
||||
<ion-list>
|
||||
<h5>Documentos Anexados</h5>
|
||||
<ion-item class="ion-no-margin ion-no-padding">
|
||||
|
||||
<ion-label
|
||||
(click)="viewDocument()">
|
||||
<p class="attach-title-item">{{LoadedDocument.Assunto}}<span class="span-right color-red btn-size"><ion-icon hidden name="close"></ion-icon></span></p>
|
||||
<p hidden><span class="span-left">Remetente</span><span class="span-right"></span></p>
|
||||
(click)="viewDocument()"
|
||||
*ngIf="LoadedDocument.ApplicationId == 8 || LoadedDocument.ApplicationID == 8"
|
||||
>
|
||||
|
||||
<div class="attach-title-item">
|
||||
{{LoadedDocument.Assunto}}
|
||||
</div>
|
||||
<div class="d-flex justify-between" style="justify-content: space-between">
|
||||
<span class="span-left">{{ LoadedDocument.Sender }}</span>
|
||||
<span class="span-right">{{ LoadedDocument.DocDate | date: 'dd-MM-yyyy HH:mm' }}</span>
|
||||
</div>
|
||||
|
||||
</ion-label>
|
||||
|
||||
<ion-label
|
||||
(click)="viewDocument()"
|
||||
*ngIf="LoadedDocument.ApplicationId == 361 || LoadedDocument.ApplicationID == 361"
|
||||
>
|
||||
<div *ngFor="let Document of LoadedDocument.Documents">
|
||||
<div class="attach-title-item">
|
||||
{{Document.Assunto}}
|
||||
</div>
|
||||
<div *ngIf="Document.Sender" class="d-flex justify-between" style="justify-content: space-between">
|
||||
<span class="span-left">{{ Document.Sender }}</span>
|
||||
<span class="span-right">{{ Document.DocDate | date: 'dd-MM-yyyy HH:mm' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</ion-label>
|
||||
|
||||
</ion-item>
|
||||
</ion-list>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user