Skip to content
Snippets Groups Projects
Commit e8b19c50 authored by Marlène SIMONDANT's avatar Marlène SIMONDANT
Browse files

Merge branch '515-enlever-accompagnement-a-distance-dans-les-structures' into 'dev'

refacto: remove remoteAccompaniment

See merge request !760
parents af0ee87f 11859234
No related branches found
No related tags found
2 merge requests!783V3.0.0,!760refacto: remove remoteAccompaniment
......@@ -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;
......
......@@ -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>
......@@ -297,7 +297,6 @@
[clickable]="false"
/>
</div>
<p *ngIf="structure.remoteAccompaniment">Accompagnement à distance</p>
</section>
<!-- Publics -->
......
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment