import { Component, OnInit } from '@angular/core'; import { Platform, Events, MenuController } from '@ionic/angular'; import { CommonService } from 'src/app/hmg-common/services/common/common.service'; import { TranslatorService } from 'src/app/hmg-common/services/translator/translator.service'; import { AuthenticationService } from 'src/app/hmg-common/services/authentication/authentication.service'; import { AuthenticatedUser } from 'src/app/hmg-common/services/authentication/models/authenticated-user'; import { SharedDataService } from 'src/app/hmg-common/services/shared-data-service/shared-data.service'; import { MowadhafiService } from '../mowadhafi.service'; import { Location } from '@angular/common'; @Component({ selector: 'app-request-details', templateUrl: './request-details.component.html', styleUrls: ['./request-details.component.scss'], }) export class RequestDetailsComponent implements OnInit { public direction : String; constructor( public ts: TranslatorService, public cs: CommonService, public authService: AuthenticationService, public sharedData: SharedDataService, public events: Events, public MowadhafiService: MowadhafiService, private location: Location, private menu: MenuController, ) { this.direction = TranslatorService.getCurrentLanguageName(); } ngOnInit() { this.getTicketTransaction(); this.getTicketDetails() } goback() { this.location.back(); } getTicketTransaction(){ const request = { EmployeeNumber:"121816", ItgTicketId:"5a10de61-c4db-4c77-e464-08d8a1beaaac", }; this.MowadhafiService.getTicketTransaction(request, ()=> {} , this.ts.trPK('general', 'retry')).subscribe((result)=> { this.handlegetTicketTransactionResult(result); }) } handlegetTicketTransactionResult(result){ } getTicketDetails(){ const request = { EmployeeNumber:"121816", TokenID:"@dm!n", ItgTicketId:"5a10de61-c4db-4c77-e464-08d8a1beaaac", }; this.MowadhafiService.getTicketDetails(request, ()=> {} , this.ts.trPK('general', 'retry')).subscribe((result)=> { this.handlegetTicketDetailsResult(result); }) } handlegetTicketDetailsResult(result){ } }