DV : Fix position tampon and signature

This commit is contained in:
narindraezway 2025-07-30 09:37:52 +03:00
parent aa71d04f17
commit 2950fed400
2 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@ class CareCertificatePdfHandler extends FPDF {
}
private function SetSigning(){
$this->SetXY(140,$this->GetY() + 15);
$this->SetXY(140,$this->GetY() + 12);
$this->Cell(0,10,'Cachet et signature');
if($this->tamponImageExist){
@ -81,7 +81,7 @@ class CareCertificatePdfHandler extends FPDF {
}
if($this->signatureImageExist){
$this->Image($this->imagePath."sign.png", 140, $this->GetY() + 40, 40, 16);
$this->Image($this->imagePath."sign.png", 140, $this->GetY() + 42, 40, 16);
}
}

View File

@ -76,7 +76,7 @@ class PacemakerCertificatePdfHandler extends FPDF
private function SetSigning()
{
$this->SetXY(140, $this->GetY() + 15);
$this->SetXY(140, $this->GetY() + 12);
$this->Cell(0, 10, 'Cachet et signature');
if($this->tamponImageExist){
@ -84,7 +84,7 @@ class PacemakerCertificatePdfHandler extends FPDF
}
if($this->signatureImageExist){
$this->Image($this->imagePath."sign.png", 140, $this->GetY() + 40, 40, 16);
$this->Image($this->imagePath."sign.png", 140, $this->GetY() + 42, 40, 16);
}
}