Skip to content

Commit

Permalink
Missing info on pdf header
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucieo committed Mar 6, 2024
1 parent 6decfae commit 3ceb1de
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions web/components/pdfs/ApplicationHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,27 +55,27 @@ const ApplicationHeader = ({ application }: { application: Application }) => {
</View>
<View style={{ paddingHorizontal: 10, width: '33%' }}>
<View style={{ fontSize: FONT_SIZE, lineHeight: 1.2 }}>
<Text>Hofesch Schechter Company</Text>
<Text>74 rue de Ménilmontant</Text>
<Text>75020 Paris</Text>
<Text>{application?.company?.structureName}</Text>
<Text>{application?.company?.address}</Text>
<Text>{`${application?.company?.zipCode} ${application?.company?.city}`}</Text>
</View>
<View style={{ marginTop: 14, fontSize: FONT_SIZE, lineHeight: 1.2 }}>
<Text>Tél. : +33 (0)9 87 89 82 02</Text>
<Text>Email : [email protected]</Text>
<Text>Tél. : {application?.company?.phone}</Text>
<Text>Email : {application?.company?.email}</Text>
<Link
src="mailto:hofesch-schechter.fr"
style={{ textDecoration: 'underline', color: 'black' }}
>
hofesch-schechter.fr
{application?.company?.website}
</Link>
</View>
</View>
<View style={{ fontSize: FONT_SIZE, lineHeight: 1.2, width: '33%' }}>
<Text>SIRET : 800 452 575 00062</Text>
<Text>APE : 75012Z</Text>
<Text>Assurance : Maif</Text>
<Text>N° assurance : 75012Z</Text>
<Text>Licence(s) : 57500062, 57500063</Text>
<Text>SIRET : {application?.company?.siret}</Text>
<Text>APE : {application?.company?.ape}</Text>
<Text>Assurance : {application?.company?.insuranceName}</Text>
<Text>N° assurance : {application?.company?.insuranceNumber}</Text>
<Text>Licence(s) : {application?.company?.license}</Text>
</View>
</View>
)
Expand Down

0 comments on commit 3ceb1de

Please sign in to comment.