Skip to content

Commit

Permalink
TVA intracommunautaire code review
Browse files Browse the repository at this point in the history
  • Loading branch information
stakovicz committed Dec 8, 2023
1 parent bc4b443 commit 30cfd70
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sources/Afup/Comptabilite/Facture.php
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,7 @@ function genererFacture($reference, $chemin = null)
utf8_decode($coordonnees['code_postal']) . "\n" .
utf8_decode($coordonnees['ville']) . "\n" .
utf8_decode($pays->obtenirNom($coordonnees['id_pays'])) .
$coordonnees['tva_intra'] ? ("\nTVA : ".utf8_decode($coordonnees['tva_intra'])) : null
);
($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 30cfd70

Please sign in to comment.