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.
mohemm_moe/Mohem/src/app/mowadhafi/request-details/request-details.component.html

71 lines
2.4 KiB
HTML

5 years ago
<app-generic-header
showBack="true"
[headerText]="'userProfile, MyHR-request' | translate">
</app-generic-header>
5 years ago
<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" >
5 years ago
<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 > {{status}}</ion-col>
<ion-col class="date">{{ts.trPK('userProfile','postedDate')}}{{date}}</ion-col>
5 years ago
</ion-row>
<ion-col [size]="12">
<h2 class="labels">{{ts.trPK('userProfile','refrence')}}</h2>
<p class="text">{{ticketRefre}}</p>
5 years ago
</ion-col>
<ion-col [size]="12">
<h2 class="labels"> {{ts.trPK('userProfile','section')}}</h2>
<p class="text">{{section}}</p>
5 years ago
</ion-col>
<ion-col [size]="12">
<h2 class="labels"> {{ts.trPK('userProfile','topic')}}</h2>
<p class="text">{{topic}}</p>
5 years ago
</ion-col>
<ion-col [size]="12">
<h2 class="labels">{{ts.trPK('userProfile','Description')}}</h2>
<p class="DescrText">{{description}}</p>
5 years ago
</ion-col>
</ion-card-content>
</ion-card>
</div>
<div>
<ion-card class="result-containerList" >
5 years ago
<ion-card-content>
<div *ngFor="let action of actionInfo ;let i = index" style="position: relative;">
5 years ago
<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>
5 years ago
<div class="action-data">
<p >{{action.comments}}</p>
<span [ngClass]="direction == 'en'? 'date-span':'date-span-ar'">{{(action.actionDate)?.substring(0,10)}}</span>
5 years ago
</div>
</div>
</div>
</div>
</ion-card-content>
</ion-card>
</div>
</ion-content>