|
|
|
|
@ -38,7 +38,7 @@
|
|
|
|
|
<ion-slides pager="true" class="slides-gray-bullets">
|
|
|
|
|
<ion-slide class="slide-1">
|
|
|
|
|
|
|
|
|
|
<div *ngIf="pInformation && pInformation != '' " class="tipsPadding">{{pInformation}}</div>
|
|
|
|
|
<div *ngIf="pInformation && pInformation != '' " class="tipsPadding">{{pInformation}}</div>
|
|
|
|
|
|
|
|
|
|
<ion-card class="cardContent">
|
|
|
|
|
<!-- <ion-card-header class="boxHdr">
|
|
|
|
|
@ -198,6 +198,10 @@
|
|
|
|
|
<div class="hrTitle"> {{ts.trPK('worklistMain','info')}} </div>
|
|
|
|
|
</ion-card-header> -->
|
|
|
|
|
<ion-card-content>
|
|
|
|
|
<div [hidden]="PRLines && PRLines.length > 0">
|
|
|
|
|
<p>{{ 'general, empty' | translate}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="PRLines && PRLines.length > 0 ">
|
|
|
|
|
<ion-grid>
|
|
|
|
|
<div *ngFor="let Lines of PRLines; let i=index; " style="text-align: left">
|
|
|
|
|
<ion-row>
|
|
|
|
|
@ -277,12 +281,18 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</ion-grid>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-card-content>
|
|
|
|
|
</ion-card>
|
|
|
|
|
</ion-slide>
|
|
|
|
|
<ion-slide>
|
|
|
|
|
<ion-card class="cardContent">
|
|
|
|
|
<ion-card-content>
|
|
|
|
|
|
|
|
|
|
<div [hidden]="actionHistoryRes && actionHistoryRes.length > 0">
|
|
|
|
|
<p>{{ 'general, empty' | translate}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="actionHistoryRes && actionHistoryRes.length > 0 ">
|
|
|
|
|
<ion-list class="notification-list ">
|
|
|
|
|
<div class="timeline">
|
|
|
|
|
<ion-item *ngFor="let actionHistory of actionHistoryRes">
|
|
|
|
|
@ -320,6 +330,7 @@
|
|
|
|
|
</ion-item>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-list>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-card-content>
|
|
|
|
|
</ion-card>
|
|
|
|
|
|
|
|
|
|
@ -340,7 +351,7 @@
|
|
|
|
|
-->
|
|
|
|
|
<ion-grid>
|
|
|
|
|
<div *ngFor="let attachList of attachmentRes">
|
|
|
|
|
<ion-row>
|
|
|
|
|
<ion-row (click)="OpenAttachFiles(attachList.FILE_DATA,attachList.FILE_CONTENT_TYPE)">
|
|
|
|
|
<ion-col col-12>
|
|
|
|
|
<div *ngIf="attachList.FILE_CONTENT_TYPE === 'pdf' || attachList.FILE_CONTENT_TYPE === 'PDF'"> <img float-start class="attachImg" src="../assets/imgs/pdf.png">
|
|
|
|
|
</div>
|
|
|
|
|
@ -353,12 +364,12 @@
|
|
|
|
|
<ion-label>
|
|
|
|
|
{{attachList.SEQ_NUM }}. {{attachList.FILE_NAME}} </ion-label>
|
|
|
|
|
</ion-col>
|
|
|
|
|
<ion-col col-2>
|
|
|
|
|
<!-- <ion-col col-2>
|
|
|
|
|
<button float-end class="attachImgBtn"
|
|
|
|
|
(click)="OpenAttachFiles(attachList.FILE_DATA,attachList.FILE_CONTENT_TYPE)">
|
|
|
|
|
<img class="attachImg" src="../assets/imgs/view.png">
|
|
|
|
|
</button>
|
|
|
|
|
</ion-col>
|
|
|
|
|
</ion-col> -->
|
|
|
|
|
</ion-row>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|