-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2004 from bcgov/feature/ALCS-2312
Expand Admin Conditions to Add Multiple Due Dates
- Loading branch information
Showing
79 changed files
with
1,923 additions
and
641 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 8 additions & 1 deletion
9
...src/app/features/admin/decision-condition-types/decision-condition-container.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,29 @@ | ||
import { Component } from '@angular/core'; | ||
import { ApplicationDecisionConditionTypesService } from '../../../services/application/application-decision-condition-types/application-decision-condition-types.service'; | ||
import { NoticeofIntentDecisionConditionTypesService } from '../../../services/notice-of-intent/notice-of-intent-decision-condition-types/notice-of-intent-decision-condition-types.service'; | ||
import { NoticeOfIntentDecisionConditionService } from '../../../services/notice-of-intent/decision-v2/notice-of-intent-decision-condition/notice-of-intent-decision-condition.service'; | ||
import { ApplicationDecisionConditionService } from '../../../services/application/decision/application-decision-v2/application-decision-condition/application-decision-condition.service'; | ||
|
||
@Component({ | ||
selector: 'app-decision-condition-container', | ||
templateUrl: './decision-condition-container.component.html', | ||
styleUrls: ['./decision-condition-container.component.scss'], | ||
}) | ||
export class DecisionConditionContainerComponent { | ||
|
||
applicationService: ApplicationDecisionConditionTypesService; | ||
applicationConditionService: ApplicationDecisionConditionService; | ||
noiService: NoticeofIntentDecisionConditionTypesService; | ||
noiConditionService: NoticeOfIntentDecisionConditionService; | ||
|
||
constructor( | ||
private aplicationDecisionConditionTypesService: ApplicationDecisionConditionTypesService, | ||
private aplicationDecisionConditionService: ApplicationDecisionConditionService, | ||
private noiDecisionConditionTypesService: NoticeofIntentDecisionConditionTypesService, | ||
private noiDecisionConditionService: NoticeOfIntentDecisionConditionService, | ||
) { | ||
this.applicationService = this.aplicationDecisionConditionTypesService; | ||
this.applicationConditionService = this.aplicationDecisionConditionService; | ||
this.noiService = this.noiDecisionConditionTypesService; | ||
this.noiConditionService = this.noiDecisionConditionService; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...rontend/src/app/features/admin/decision-condition-types/decision-dialog-data.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
import { NoticeofIntentDecisionConditionTypesService } from '../../../services/notice-of-intent/notice-of-intent-decision-condition-types/notice-of-intent-decision-condition-types.service'; | ||
import { ApplicationDecisionConditionTypesService } from '../../../services/application/application-decision-condition-types/application-decision-condition-types.service'; | ||
import { ApplicationDecisionConditionTypeDto } from '../../../services/application/decision/application-decision-v2/application-decision-v2.dto'; | ||
import { ApplicationDecisionConditionService } from '../../../services/application/decision/application-decision-v2/application-decision-condition/application-decision-condition.service'; | ||
import { NoticeOfIntentDecisionConditionService } from '../../../services/notice-of-intent/decision-v2/notice-of-intent-decision-condition/notice-of-intent-decision-condition.service'; | ||
|
||
export interface DecisionDialogDataInterface { | ||
service: ApplicationDecisionConditionTypesService | NoticeofIntentDecisionConditionTypesService; | ||
conditionService: ApplicationDecisionConditionService | NoticeOfIntentDecisionConditionService; | ||
content: ApplicationDecisionConditionTypeDto; | ||
existingCodes: string[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.