{"version":3,"file":"src_app_pages_information-requests_information-requests_module_ts.js","mappings":"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","sources":["./src/app/pages/information-requests/information-requests-routing.module.ts","./src/app/pages/information-requests/information-requests.module.ts","./src/app/pages/information-requests/information-requests.page.ts","./src/app/pages/information-requests/information-requests.page.html"],"sourcesContent":["import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { InformationRequestsPage } from './information-requests.page';\n\nconst routes: Routes = [\n {\n path: '',\n component: InformationRequestsPage\n }\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class InformationRequestsPageRoutingModule {}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\nimport { SharedModule } from '../../modules/shared/shared.module';\nimport { IonicModule } from '@ionic/angular';\n\nimport { InformationRequestsPageRoutingModule } from './information-requests-routing.module';\n\nimport { InformationRequestsPage } from './information-requests.page';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n SharedModule,\n IonicModule,\n InformationRequestsPageRoutingModule\n ],\n declarations: [InformationRequestsPage]\n})\nexport class InformationRequestsPageModule {}\n","import { Component, OnInit } from '@angular/core';\n\nimport { SettingsService } from 'src/app/services/settings.service';\nimport { UpdateService } from 'src/app/services/update.service';\n\n@Component({\n selector: 'app-information-requests',\n templateUrl: './information-requests.page.html',\n styleUrls: ['./information-requests.page.scss'],\n})\nexport class InformationRequestsPage implements OnInit {\n\n public numbers: any = {};\n public informationrequests: any = [];\n public quotes: any = [];\n public orders: any = [];\n\n constructor(\n public settings: SettingsService,\n private update: UpdateService, \n ) { \n this.settings.log(1,'InformationRequestsPage constructor start');\n }\n\n ngOnInit() {\n }\n\n ionViewWillEnter() { \n let t = this;\n let s = this.settings; \n this.informationrequests = [];\n this.settings.log(1,'ionViewWillEnter InformationRequestsPage');\n this.update.pageIsReady('InformationRequestsPage').then((result) => {\n // track page views\n t.settings.trackPageView('Questions & Answers');\n this.numbers = result.numbers;\n this.informationrequests = result.informationrequests;\n if (this.informationrequests) {\n this.settings.log(1,'*** InformationRequestsPage s.currentUserRole=' + s.currentUserRole + ' this.informationrequests.length=' + this.informationrequests.length);\n if (s.currentUserRole == \"buyer\") {\n \n } else {\n\n }\n //s.setUserNavigationLists(result);\n }\n\n }).catch((error)=>{\n this.settings.log(1,\"InformationRequestsPage pageIsReady error \" + error.message);\n }); \n\t \n }\n\n}\n","export default \"\\n \\n
\\n
\\n \\n \\n \\n \\n \\n
\\n \\n \\n \\n \\n \\n
\\n
\\n
\\n\\n
\\n \\n
\\n
\\n \\n
\\n

Questions & Answers

\\n
\\n
\\n
\\n
\\n
\\n
{{settings.formatDateTime(\\\"D MMM YYYY HH:mm\\\", c.MessageTime)}}
\\n
\\n
\\n
{{c.CarDetails}}{{c.CarRego}}
\\n
{{c.ReferenceNum}}
\\n
\\n
\\n
{{c.CompanyName}}
\\n
{{c.MessageText}}
\\n
\\n
\\n View\\n
\\n
\\n
\\n
\\n
\\n
\\n\";"],"names":[],"sourceRoot":"webpack:///"}