diff --git a/src/app/models/structure.model.ts b/src/app/models/structure.model.ts index 3fd00f0a62ee5837f30fde74fe5dac597caeda25..15e77b70d54b93d23784bfee9e80469bb73d7f90 100644 --- a/src/app/models/structure.model.ts +++ b/src/app/models/structure.model.ts @@ -36,7 +36,6 @@ export class Structure { public contactPersonEmail: string = null; public categories: Record<string, string[]>; public categoriesDisplay: Record<string, Module[]>; - public remoteAccompaniment: boolean = null; public nbComputers: number = null; public nbPrinters: number = null; public nbScanners: number = null; diff --git a/src/app/shared/components/structure-detail-print/structure-detail-print.component.html b/src/app/shared/components/structure-detail-print/structure-detail-print.component.html index 2cc2e743c8a3bd541d469859efd2ff68a463c3ad..a5885191fb57d9d09d0f19ffe9247a76bece186a 100644 --- a/src/app/shared/components/structure-detail-print/structure-detail-print.component.html +++ b/src/app/shared/components/structure-detail-print/structure-detail-print.component.html @@ -29,10 +29,7 @@ </div> </div> <!-- Accueil --> - <div - *ngIf="tclStopPoints || structure.hours.hasData() || structure.remoteAccompaniment" - class="structure-details-block accessDetails flex column" - > + <div *ngIf="tclStopPoints || structure.hours.hasData()" class="structure-details-block accessDetails flex column"> <!-- Opening Hours --> <div class="w-100 mobile-column flex row mb20"> <div *ngIf="structure.hours.hasData()" class="timeContainer"> @@ -74,8 +71,5 @@ <h3 class="subtitle uppercase">précisions sur les horaires</h3> <p>{{ structure.exceptionalClosures }}</p> </div> - <div *ngIf="structure.remoteAccompaniment" class="bold-info"> - <h3>Cette structure propose un accompagnement à distance.</h3> - </div> </div> </div> diff --git a/src/app/structure-list/components/structure-details/structure-details.component.html b/src/app/structure-list/components/structure-details/structure-details.component.html index dff92a0c1eb84dfe2e902b9df72a1cbe28a95e8f..a2f007e872633789c59ba76e0d702659796a2429 100644 --- a/src/app/structure-list/components/structure-details/structure-details.component.html +++ b/src/app/structure-list/components/structure-details/structure-details.component.html @@ -195,7 +195,6 @@ [clickable]="false" /> </div> - <p *ngIf="structure.remoteAccompaniment">Accompagnement à distance</p> </section> <!-- Publics --> diff --git a/src/app/utils/formUtils.ts b/src/app/utils/formUtils.ts index 93b9851daf70f2e41e51bed815277aea6295982d..2d66f481fb60ec10a79b120a9c8d09ba5821b24d 100644 --- a/src/app/utils/formUtils.ts +++ b/src/app/utils/formUtils.ts @@ -110,7 +110,6 @@ export class FormUtils { advancedSkills: new UntypedFormControl(structure.categories?.advancedSkills), solidarityMaterial: this.loadArrayForCheckbox(structure.categories?.solidarityMaterial, false), }), - remoteAccompaniment: new UntypedFormControl(false), otherDescription: new UntypedFormControl(structure.otherDescription), nbComputers: new UntypedFormControl( structure.categories.selfServiceMaterial.includes('computer') ? structure.nbComputers : 0,