Skip to content

Commit

Permalink
Merge pull request #1983 from bcgov/hotfix/ALCS-2382
Browse files Browse the repository at this point in the history
Change Detailed Building Plan Documents to Required and Accept Multiple Files
  • Loading branch information
Abradat authored Nov 15, 2024
2 parents 7e8e893 + a76ed61 commit f4c1f7e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,8 @@ <h2>Proposal</h2>
(openFile)="openFile($event)"
[showErrors]="showErrors"
[showVirusError]="showBuildingPlanVirus"
[isRequired]="true"
[allowMultiple]="true"
></app-file-drag-drop>
</div>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,8 @@ <h2>Proposal</h2>
(openFile)="openFile($event)"
[showErrors]="showErrors"
[showVirusError]="showBuildingPlanVirus"
[isRequired]="true"
[allowMultiple]="true"
></app-file-drag-drop>
</div>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,8 @@ <h2>Proposal</h2>
(openFile)="openFile($event)"
[showErrors]="showErrors"
[showVirusError]="showBuildingPlanVirus"
[isRequired]="true"
[allowMultiple]="true"
></app-file-drag-drop>
</div>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ export class GenerateSubmissionDocumentService {

crossSections: crossSections.map((d) => d.document),
reclamationPlans: reclamationPlans.map((d) => d.document),
buildingPlans: buildingPlans[0]?.document.fileName,
buildingPlans: buildingPlans.map((d) => d.document),
noticesOfWork: noticesOfWork.map((d) => d.document),
soilIsExtractionOrMining: formatBooleanToYesNoString(
submission.soilIsExtractionOrMining,
Expand Down
Binary file modified services/templates/pdf/submissions/pfrs-submission-template.docx
Binary file not shown.
Binary file modified services/templates/pdf/submissions/pofo-submission-template.docx
Binary file not shown.
Binary file modified services/templates/pdf/submissions/roso-submission-template.docx
Binary file not shown.

0 comments on commit f4c1f7e

Please sign in to comment.