|
|
|
|
@ -47,9 +47,11 @@
|
|
|
|
|
|
|
|
|
|
<ion-row>
|
|
|
|
|
<!-- NOT ADDRESS & BASIC_DETAILS -->
|
|
|
|
|
<ion-col *ngIf="getPassNotificationDetails?.REQUEST_TYPE != 'ADDRESS' && getPassNotificationDetails?.REQUEST_TYPE != 'BASIC_DETAILS' ">
|
|
|
|
|
<ion-col
|
|
|
|
|
*ngIf="getPassNotificationDetails?.REQUEST_TYPE != 'ADDRESS' && getPassNotificationDetails?.REQUEST_TYPE != 'BASIC_DETAILS' ">
|
|
|
|
|
<div *ngIf="notificationBodyRes?.length > 0 ">
|
|
|
|
|
<ion-card *ngFor="let item of notificationBodyRes;let i=index; " style="width: 91%;">
|
|
|
|
|
<ion-card *ngFor="let item of notificationBodyRes;let i=index; "
|
|
|
|
|
style="width: 91%;">
|
|
|
|
|
<ion-card-content *ngIf="item.Collection_Notification.length > 0">
|
|
|
|
|
<div>
|
|
|
|
|
<ion-row *ngIf=" item.Collection_Notification.DISPLAY_FLAG != 'N' ">
|
|
|
|
|
@ -119,36 +121,33 @@
|
|
|
|
|
</ion-col>
|
|
|
|
|
|
|
|
|
|
<!-- IF BASIC_DETAILS -->
|
|
|
|
|
<ion-col *ngIf="getPassNotificationDetails?.REQUEST_TYPE != 'BASIC_DETAILS'">
|
|
|
|
|
<ion-col *ngIf="getPassNotificationDetails?.REQUEST_TYPE == 'BASIC_DETAILS' ||
|
|
|
|
|
getPassNotificationDetails?.REQUEST_TYPE == 'ADDRESS'">
|
|
|
|
|
<div *ngIf='notificationBodyRes.length > 0'>
|
|
|
|
|
<ion-card style="width: 91%;">
|
|
|
|
|
<ion-card-content >
|
|
|
|
|
<ion-card-content>
|
|
|
|
|
<div>
|
|
|
|
|
<ion-row>
|
|
|
|
|
<ion-col class="rowBorder"
|
|
|
|
|
*ngFor="let item of notificationBodyRes;let i=index;"
|
|
|
|
|
size="6" [hidden]="item.UPDATED_FLAG == 'N'">
|
|
|
|
|
<ion-col class="rowBorder" style="background: #269db8;">
|
|
|
|
|
<ion-label>
|
|
|
|
|
<p style="color: white;">Current</p>
|
|
|
|
|
</ion-label>
|
|
|
|
|
</ion-col>
|
|
|
|
|
<ion-col class="rowBorder" style="background: #269db8;">
|
|
|
|
|
<ion-label>
|
|
|
|
|
<p style="color: white;">Proposed</p>
|
|
|
|
|
</ion-label>
|
|
|
|
|
</ion-col>
|
|
|
|
|
</ion-row>
|
|
|
|
|
<ion-row *ngFor="let item of notificationBodyRes;let i=index;">
|
|
|
|
|
<ion-col class="rowBorder" size="6"
|
|
|
|
|
[hidden]="item.UPDATED_FLAG == 'N'">
|
|
|
|
|
<label class="colItemReq">{{item.SEGMENT_PROMPT}}</label>
|
|
|
|
|
<br />
|
|
|
|
|
<label>{{item.SEGMENT_VALUE_DSP}}</label>
|
|
|
|
|
<label>{{item.PREV_SEGMENT_VALUE_DSP}}</label>
|
|
|
|
|
</ion-col>
|
|
|
|
|
</ion-row>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-card-content>
|
|
|
|
|
</ion-card>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-col>
|
|
|
|
|
|
|
|
|
|
<!-- IF ADDRESS -->
|
|
|
|
|
<ion-col *ngIf="getPassNotificationDetails?.REQUEST_TYPE != 'ADDRESS'">
|
|
|
|
|
<div *ngIf='notificationBodyRes.length > 0'>
|
|
|
|
|
<ion-card style="width: 91%;">
|
|
|
|
|
<ion-card-content >
|
|
|
|
|
<div>
|
|
|
|
|
<ion-row>
|
|
|
|
|
<ion-col class="rowBorder"
|
|
|
|
|
*ngFor="let item of notificationBodyRes;let i=index;"
|
|
|
|
|
size="6" [hidden]="item.UPDATED_FLAG == 'N'">
|
|
|
|
|
<ion-col class="rowBorder" size="6"
|
|
|
|
|
[hidden]="item.UPDATED_FLAG == 'N'">
|
|
|
|
|
<label class="colItemReq">{{item.SEGMENT_PROMPT}}</label>
|
|
|
|
|
<br />
|
|
|
|
|
<label>{{item.SEGMENT_VALUE_DSP}}</label>
|
|
|
|
|
@ -346,7 +345,7 @@
|
|
|
|
|
<ion-slide>
|
|
|
|
|
<ng-container *ngIf="activeSegment === 'action-history'">
|
|
|
|
|
|
|
|
|
|
<ion-card class="cardContent action-history" style="width: 100%;">
|
|
|
|
|
<ion-card class="cardContent action-history" style="width: 100%;">
|
|
|
|
|
<ion-card-content>
|
|
|
|
|
|
|
|
|
|
<div class="noDataDiv" [hidden]="actionHistoryRes && actionHistoryRes.length > 0">
|
|
|
|
|
@ -387,7 +386,8 @@
|
|
|
|
|
</div>
|
|
|
|
|
<button class="showMore"
|
|
|
|
|
(click)="actionHistory.visible = !actionHistory.visible">
|
|
|
|
|
{{actionHistory.visible ? 'Show less': 'Show More' }}</button>
|
|
|
|
|
{{actionHistory.visible ? 'Show less': 'Show More'
|
|
|
|
|
}}</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<ion-label
|
|
|
|
|
|