Skip to content

Commit

Permalink
on affiche le numéro de TVA intercommunautaire sur les devis
Browse files Browse the repository at this point in the history
Quand on avait saisi un numéro de TVA intercommunautaire sur un devis
celui-ci n'était pas affiché, c'est maintenant le cas.
  • Loading branch information
agallou committed Aug 31, 2024
1 parent be8b56b commit 9e650a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sources/Afup/Comptabilite/Facture.php
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,9 @@ function genererDevis($reference, $chemin = null)
utf8_decode($coordonnees['adresse']) . "\n" .
utf8_decode($coordonnees['code_postal']) . " " .
utf8_decode($coordonnees['ville']) . "\n" .
utf8_decode($pays->obtenirNom($coordonnees['id_pays'])));
utf8_decode($pays->obtenirNom($coordonnees['id_pays'])) .
($coordonnees['tva_intra'] ? ("\n" . utf8_decode('N° TVA Intracommunautaire : ' . $coordonnees['tva_intra'])) : null)
);

$pdf->Ln(10);
$pdf->SetFont('Arial', 'BU', 10);
Expand Down

0 comments on commit 9e650a0

Please sign in to comment.