Skip to content

Commit

Permalink
Merge pull request #9136 from frederic34/patch-17
Browse files Browse the repository at this point in the history
remove % in supplier order pdf
  • Loading branch information
eldy committed Jul 24, 2018
2 parents 2f668cc + 4341e36 commit e470566
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -430,7 +430,7 @@ function write_file($object,$outputlangs='',$srctemplatepath='',$hidedetails=0,$
if ($object->lines[$i]->remise_percent)
{
$remise_percent = pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails);
$pdf->MultiCell($this->postotalht-$this->posxdiscount-1, 3, $remise_percent."%", 0, 'R');
$pdf->MultiCell($this->postotalht-$this->posxdiscount-1, 3, $remise_percent, 0, 'R');
}

// Total HT line
Expand Down

0 comments on commit e470566

Please sign in to comment.