Skip to content

Commit

Permalink
fix(export): add column content
Browse files Browse the repository at this point in the history
  • Loading branch information
pYassine committed Oct 1, 2024
1 parent 04ba0a8 commit daa50d8
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ export const buildEntretienForDocs = (
ENTRETIEN_REVENUS_DETAIL: string;
ENTRETIEN_LIEN_COMMUNE: string;
ENTRETIEN_COMPOSITION_MENAGE: string;
ENTRETIEN_COMMENTAIRE: string;
ENTRETIEN_SITUATION_RESIDENTIELLE: string;
} => {
return {
Expand Down Expand Up @@ -275,6 +276,7 @@ export const buildEntretienForDocs = (
ENTRETIEN_COMPOSITION_MENAGE: usager.entretien.typeMenage
? ENTRETIEN_TYPE_MENAGE[usager.entretien.typeMenage]
: "",
ENTRETIEN_COMMENTAIRE: usager.entretien.commentaires ?? "",
ENTRETIEN_SITUATION_RESIDENTIELLE:
usager.entretien.residence === "AUTRE"
? "Autre: " + ucFirst(usager.entretien.residenceDetail)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export const CUSTOM_DOC_ATTESTATION_POSTALE: StructureCustomDocTags = {
ENTRETIEN_RAISON_DEMANDE: "Exercice des droits civils ou civiques",
ENTRETIEN_RATTACHEMENT: "",
ENTRETIEN_SITUATION_PROFESSIONNELLE: "",
ENTRETIEN_COMMENTAIRE: "",

// Transferts
TRANSFERT_ACTIF: "NON",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export const CUSTOM_DOC_COURRIER_REFUS: StructureCustomDocTags = {
ENTRETIEN_ORIENTATION: "OUI",
ENTRETIEN_ORIENTATION_DETAIL: "",
ENTRETIEN_REVENUS_DETAIL: "",
ENTRETIEN_COMMENTAIRE: "",

USAGER_LANGUE: "",
USAGER_NATIONALITE: "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
class="invalid-feedback"
id="invalid-title"
>
Le type d'information est obligatoire
Le titre est obligatoire
</p>
</div>

Expand Down Expand Up @@ -77,7 +77,7 @@
name="description"
[required]="true"
></ckeditor>

{{ tempMessageForm.get("description")?.value }}
<div
*ngIf="
tempMessageForm.get('description')?.invalid &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ export class ManageStructureInformationFormComponent
return null;
};
}

onSubmit(): void {
this.submitted = true;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@ <h1 class="title">Paramètres d'envoi de SMS pour votre structure</h1>
Vidéo explicative
</button>
<a
href="/assets/files/guide_sms.pdf"
href="https://fabnummas.notion.site/Activer-les-notifications-SMS-a045349c1edc423c8f228d24c0edc72c"
target="_blank"
class="btn btn-white-primary my-1 my-md-0"
rel="noopener noreferrer"
download
>
<fa-icon aria-hidden="true" [icon]="['fas', 'info-circle']"></fa-icon>
Télécharger le guide SMS
Consulter le guide SMS
</a>
</div>
</div>
Expand Down Expand Up @@ -54,13 +53,10 @@ <h1 class="title">Paramètres d'envoi de SMS pour votre structure</h1>
<br />
Vous pouvez
<a
href="/assets/files/guide_sms.pdf"
href="https://fabnummas.notion.site/Activer-les-notifications-SMS-a045349c1edc423c8f228d24c0edc72c"
target="_blank"
rel="noopener noreferrer"
aria-label="Vous pouvez télécharger un document explicatif sur la mise en place
des notifications SMS en cliquant ici "
download
>télécharger un document explicatif
>consulter un document explicatif
</a>
sur la mise en place des notifications SMS.
</p>
Expand Down
Binary file removed packages/frontend/src/assets/files/guide_sms.pdf
Binary file not shown.

0 comments on commit daa50d8

Please sign in to comment.