You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.5 KiB
HTML
71 lines
2.5 KiB
HTML
|
|
|
|
<app-generic-header
|
|
showBack="true"
|
|
[headerText]="'userProfile, MyHR-request' | translate">
|
|
</app-generic-header>
|
|
|
|
<ion-content>
|
|
<!-- <div>
|
|
<ion-row [ngClass]="direction == 'en' ? 'empty-en':'empty-ar' ">{{ts.trPK('general','empty')}}</ion-row>
|
|
</div> -->
|
|
<div>
|
|
<ion-card class="result-container" >
|
|
<ion-card-content>
|
|
<ion-row [ngClass]=" direction == 'en'? 'card-content' : 'card-content-ar'" >
|
|
<!-- <ion-col [ngClass]="{
|
|
'New': statusID === 1 ,
|
|
'ReOpen': statusID === 2,
|
|
'AssToManager': statusID === 3,
|
|
'AssToSpec': statusID === 4,
|
|
'Pending': statusID === 5,
|
|
'BackToSpec': statusID === 6,
|
|
'Closed': statusID === 7,
|
|
'BackToManager': statusID === 8,
|
|
'AssignedToHR': statusID === 9,}" > {{status}}</ion-col> -->
|
|
<ion-col style="color: #259CB8; font-weight: bold;" > {{status}}</ion-col>
|
|
<ion-col [ngClass]=" direction == 'en'? 'date' : 'date-ar'" >{{ts.trPK('userProfile','postedDate')}}{{date}}</ion-col>
|
|
</ion-row>
|
|
<ion-col [size]="12">
|
|
<h2 class="labels">{{ts.trPK('userProfile','refrence')}}</h2>
|
|
<p class="text">{{ticketRefre}}</p>
|
|
</ion-col>
|
|
<ion-col [size]="12">
|
|
<h2 class="labels"> {{ts.trPK('userProfile','section')}}</h2>
|
|
<p class="text">{{section}}</p>
|
|
</ion-col>
|
|
<ion-col [size]="12">
|
|
<h2 class="labels"> {{ts.trPK('userProfile','topic')}}</h2>
|
|
<p class="text">{{topic}}</p>
|
|
</ion-col>
|
|
<ion-col [size]="12">
|
|
<h2 class="labels">{{ts.trPK('userProfile','Description')}}</h2>
|
|
<p class="DescrText">{{description}}</p>
|
|
</ion-col>
|
|
</ion-card-content>
|
|
</ion-card>
|
|
</div>
|
|
|
|
<div>
|
|
<ion-card class="result-containerList" >
|
|
<ion-card-content>
|
|
<div *ngFor="let action of actionInfo ;let i = index" style="position: relative;">
|
|
<div [ngClass]=" direction == 'en'? 'request-list-container' : 'request-list-container-ar'" >
|
|
<div>
|
|
<!-- <div *ngFor="let formattedAction of showFormattedAction; let i = index"> -->
|
|
<span [ngClass]="direction == 'en'? 'text-span':'text-span-ar'">{{ts.trPK('userProfile','actionBy')}}{{action.actionBy}}</span>
|
|
<div class="action-data">
|
|
<p >{{action.comments}}</p>
|
|
<span [ngClass]="direction == 'en'? 'date-span':'date-span-ar'">{{(action.actionDate)?.substring(0,10)}}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ion-card-content>
|
|
</ion-card>
|
|
</div>
|
|
|
|
</ion-content>
|
|
|
|
|