|
@@ -1524,7 +1524,7 @@ class pdf_sponge extends ModelePDFFactures
|
|
|
$tvakey = str_replace('*', '', $tvakey);
|
|
|
$tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
|
|
|
}
|
|
|
- $totalvat = $outputlangs->transcountrynoentities("TotalVAT", $mysoc->country_code)(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalVAT", $mysoc->country_code) : '');
|
|
|
+ $totalvat = $outputlangs->transcountrynoentities("TotalVAT", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalVAT", $mysoc->country_code) : '');
|
|
|
$totalvat.=' ';
|
|
|
$totalvat .= vatrate($tvakey, 1).$tvacompl;
|
|
|
$pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
|
|
@@ -1556,7 +1556,7 @@ class pdf_sponge extends ModelePDFFactures
|
|
|
$tvakey=str_replace('*', '', $tvakey);
|
|
|
$tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
|
|
|
}
|
|
|
- $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code)(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT1", $mysoc->country_code) : '');
|
|
|
+ $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT1", $mysoc->country_code) : '');
|
|
|
$totalvat.=' ';
|
|
|
$totalvat.=vatrate(abs($tvakey), 1).$tvacompl;
|
|
|
|