From 46372434ea089bd8c1f42ddd7405179799f1152b Mon Sep 17 00:00:00 2001 From: Abin Antony Date: Fri, 24 May 2024 12:36:45 -0700 Subject: [PATCH] #FOIMOD-3163 ENV, FOR alert updates --- .../ministry-confirmation.component.html | 9 +++++++-- .../ministry-confirmation.component.ts | 19 +++++++++++++++++-- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/web/src/app/route-components/ministry-confirmation/ministry-confirmation.component.html b/web/src/app/route-components/ministry-confirmation/ministry-confirmation.component.html index 77a5820d..ce0e801f 100644 --- a/web/src/app/route-components/ministry-confirmation/ministry-confirmation.component.html +++ b/web/src/app/route-components/ministry-confirmation/ministry-confirmation.component.html @@ -48,11 +48,16 @@

What ministry or agency has the records you are looking for?

For FOI requests relating to wildfires, records might not be released if there is an active and ongoing investigation into the fire in order to protect the integrity of the investigation. If you have questions whether an FOI request relates to a wildfire under investigation please contact BCWSFOI@gov.bc.ca for more information before submitting the FOI request.

- +

Please be advised that, due to the ongoing wildfire and drought-related developments around the Province, many Ministry of Forests personnel have been deployed across the Province to support the response and recovery. While every effort will be taken by staff to manage our FOI responsibilities, our response time may be impacted during this situation.

+ +

+ For FOI requests relating to a potentially contaminated site, please note that information is accessible to the public through the Site Registry. The records available on the Site Registry are not provided through the FOI process. The Site Registry contains records about the identification, investigation and remediation of potentially contaminated sites. Before continuing to submit your FOI request, please follow instructions on the Site information webpage to obtain Site Registry records. +

+

Based on the public bodies you have selected your application fee is: ${{feeAmount}}

@@ -95,4 +100,4 @@

any other means, and include books, documents, maps, drawings, letters, vouchers and papers.

- + \ No newline at end of file diff --git a/web/src/app/route-components/ministry-confirmation/ministry-confirmation.component.ts b/web/src/app/route-components/ministry-confirmation/ministry-confirmation.component.ts index 50c6b0dd..22ce613b 100644 --- a/web/src/app/route-components/ministry-confirmation/ministry-confirmation.component.ts +++ b/web/src/app/route-components/ministry-confirmation/ministry-confirmation.component.ts @@ -22,8 +22,9 @@ export class MinistryConfirmationComponent implements OnInit { feeAmount: number = 0; requiresPayment: boolean = null; isforestministry: boolean = false; + hideforestministryongoingwildfirealert: boolean = true; isEAOministry: boolean = false; - + isENVministry: boolean = false; constructor(private fb: FormBuilder, private dataService: DataService, private route: Router) { } ngOnInit() { @@ -44,6 +45,14 @@ export class MinistryConfirmationComponent implements OnInit { else if(m.code === "EAO" && m.selected === false){ this.isEAOministry = false; } + if (m.code === "ENV" && m.selected === true) { + this.isENVministry = true; + } + else if((m.code === "ENV" && m.selected === false)){ + this.isENVministry = false; + } + + if (m.code === "FOR" && m.selected === true) { this.isforestministry = true; } @@ -78,6 +87,12 @@ export class MinistryConfirmationComponent implements OnInit { else if(m.code === "EAO" && m.selected === false){ this.isEAOministry = false; } + if (m.code === "ENV" && m.selected === true) { + this.isENVministry = true; + } + else if((m.code === "ENV" && m.selected === false)){ + this.isENVministry = false; + } if (m.code === "FOR" && m.selected === true) { this.isforestministry = true; } @@ -148,4 +163,4 @@ export class MinistryConfirmationComponent implements OnInit { //console.log(`Topic ${this.foiRequest.requestData.requestTopic.value}`) this.base.goFoiBack(); } -} +} \ No newline at end of file