diff --git a/include/export/export_fiche_detail_pdf.php b/include/export/export_fiche_detail_pdf.php index cb9330c1e..aa6936dd4 100644 --- a/include/export/export_fiche_detail_pdf.php +++ b/include/export/export_fiche_detail_pdf.php @@ -98,8 +98,8 @@ for ($e=0;$eSetFont('DejaVu','B',8); $pdf->LongLine(15,6,_('totaux'),0,'L'); @@ -203,8 +203,8 @@ for ($e=0;$eSetFont('DejaVu','B',8); diff --git a/include/export/export_poste_detail_pdf.php b/include/export/export_poste_detail_pdf.php index cda145a4a..db7d54c50 100644 --- a/include/export/export_poste_detail_pdf.php +++ b/include/export/export_poste_detail_pdf.php @@ -114,8 +114,8 @@ foreach ($a_poste as $poste) if ( $current_exercice == "") $current_exercice=$row['p_exercice']; if ( $current_exercice != $row['p_exercice']) { - $str_debit=sprintf("% 12.2f €",$tot_deb); - $str_credit=sprintf("% 12.2f €",$tot_cred); + $str_debit=sprintf("% 12.2f ",$tot_deb); + $str_credit=sprintf("% 12.2f ",$tot_cred); $diff_solde=bcsub($tot_deb,$tot_cred); if ( $diff_solde < 0 ) { @@ -126,7 +126,7 @@ foreach ($a_poste as $poste) { $solde=_(" D "); } - $str_diff_solde=sprintf("%12.2f €",$diff_solde); + $str_diff_solde=sprintf("%12.2f ",$diff_solde); $pdf->SetFont('DejaVu','B',8); $pdf->write_cell(15,6,_('totaux'),0,0,'L'); @@ -221,8 +221,8 @@ foreach ($a_poste as $poste) } } } - $str_debit=sprintf("% 12.2f €",$tot_deb); - $str_credit=sprintf("% 12.2f €",$tot_cred); + $str_debit=sprintf("% 12.2f ",$tot_deb); + $str_credit=sprintf("% 12.2f ",$tot_cred); $diff_solde=bcsub($tot_deb,$tot_cred); $solde=" = "; if ( $diff_solde < 0 ) @@ -234,7 +234,7 @@ foreach ($a_poste as $poste) { $solde=_(" D "); } - $str_diff_solde=sprintf("%12.2f €",$diff_solde); + $str_diff_solde=sprintf("%12.2f ",$diff_solde); $pdf->SetFont('DejaVu','B',8);