|
|
|
|
@ -40,7 +40,7 @@
|
|
|
|
|
<ng-container *ngIf="activeSegment === 'info'">
|
|
|
|
|
|
|
|
|
|
<div *ngIf="notificationBodyRes?.length > 0 ">
|
|
|
|
|
<ion-card *ngFor="let item of notificationBodyRes; let i=index ">
|
|
|
|
|
<ion-card *ngFor="let item of notificationBodyRes;let i=index; ">
|
|
|
|
|
|
|
|
|
|
<!-- <ion-card-header class="boxHdr">
|
|
|
|
|
<div class="hrTitle"> {{'worklistMain, notfDetails' | translate}}</div>
|
|
|
|
|
@ -109,6 +109,7 @@
|
|
|
|
|
</ion-grid>
|
|
|
|
|
<!-- </ion-col> -->
|
|
|
|
|
</ion-item>
|
|
|
|
|
|
|
|
|
|
<!-- </ion-card-content>
|
|
|
|
|
</ion-card> -->
|
|
|
|
|
</ng-container>
|
|
|
|
|
@ -390,14 +391,19 @@
|
|
|
|
|
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="activeSegment === 'attach'">
|
|
|
|
|
<ion-card class="cardContent">
|
|
|
|
|
<ion-card-content>
|
|
|
|
|
|
|
|
|
|
<div class="noDataDiv" [hidden]="attachmentRes && attachmentRes.length > 0">
|
|
|
|
|
<p>{{ 'general, notAttch' | translate}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div *ngIf="attachmentRes && attachmentRes.length > 0 ">
|
|
|
|
|
|
|
|
|
|
<ion-grid>
|
|
|
|
|
<ion-item class="itemAttch" *ngFor="let attachList of attachmentRes">
|
|
|
|
|
<ion-item class="itemAttch" *ngFor="let attachList of attachmentRes ;let i=index;">
|
|
|
|
|
<!-- <div *ngIf="attachList.FILE_CONTENT_TYPE === 'pdf' || attachList.FILE_CONTENT_TYPE === 'PDF'">
|
|
|
|
|
<img float-start class="attachImg" src="../assets/imgs/pdf.png">
|
|
|
|
|
</div>
|
|
|
|
|
@ -412,8 +418,8 @@
|
|
|
|
|
*ngIf="attachList.FILE_CONTENT_TYPE === 'png' || attachList.FILE_CONTENT_TYPE === 'jpeg' || attachList.FILE_CONTENT_TYPE === 'jpg'|| attachList.FILE_CONTENT_TYPE === 'PNG' || attachList.FILE_CONTENT_TYPE === 'JPEG'|| attachList.FILE_CONTENT_TYPE === 'JPG'">
|
|
|
|
|
<img float-start class="attachImg" src="../assets/imgs/img.png">
|
|
|
|
|
</div> -->
|
|
|
|
|
<ion-label>
|
|
|
|
|
{{attachList.SEQ_NUM }}. {{attachList.FILE_NAME}} </ion-label>
|
|
|
|
|
<ion-label style="color: black !important">
|
|
|
|
|
{{i+1 }}. {{attachList.FILE_NAME}} </ion-label>
|
|
|
|
|
|
|
|
|
|
<button float-end class="attachImgBtn"
|
|
|
|
|
(click)="OpenAttachFiles(attachList.FILE_DATA,attachList.FILE_CONTENT_TYPE)">
|
|
|
|
|
@ -426,6 +432,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</ion-card-content>
|
|
|
|
|
</ion-card>
|
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -443,9 +451,8 @@
|
|
|
|
|
<div *ngIf="messageSuccess" class="succssfullMSG">
|
|
|
|
|
<ion-col size="12">
|
|
|
|
|
<ion-icon class="succssfullIcon" name="checkmark"></ion-icon>
|
|
|
|
|
<!--filled-->
|
|
|
|
|
</ion-col>
|
|
|
|
|
<ion-col size="12"> <div style="font-size: 30px !important"> Transaction Successful </div> </ion-col>
|
|
|
|
|
<ion-col size="12"> <div style="font-size: 30px !important"> {{'worklistMain, Tran_Succ' | translate}} </div> </ion-col>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-content>
|
|
|
|
|
|
|
|
|
|
|