|
@@ -1503,15 +1503,39 @@ class Agreement
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ $pdf->AddPage();
|
|
|
+
|
|
|
+ $pdf->br(1, 1);
|
|
|
+ $pdf->font($this->font_size, 'B');
|
|
|
+ $pdf->left('【以下为签署页,无正文】', 100);
|
|
|
+ $pdf->br();
|
|
|
+
|
|
|
$pdf->br(1, 20);
|
|
|
$pdf->font($this->font_size, '');
|
|
|
- $pdf->left('甲 方(盖章):', 90)->left('乙 方(盖章/签字):', 90);
|
|
|
+ $pdf->left('甲 方(盖章):', 100);
|
|
|
+ $pdf->br();
|
|
|
+
|
|
|
+ $pdf->br(1, 20);
|
|
|
+ $pdf->left('法定代表人或授权代表(签字):', 100);
|
|
|
$pdf->br();
|
|
|
|
|
|
$pdf->br(1, 1);
|
|
|
$pdf->font($this->font_size, '');
|
|
|
- $pdf->left('日 期:'.$qdate, 90);
|
|
|
- $pdf->left('日 期:'.$qdate, 80);
|
|
|
+ $pdf->left('签署时间:'.$qdate, 90);
|
|
|
+ $pdf->br();
|
|
|
+
|
|
|
+ $pdf->br(1, 20);
|
|
|
+ $pdf->font($this->font_size, '');
|
|
|
+ $pdf->left('乙方(盖章):', 100);
|
|
|
+ $pdf->br();
|
|
|
+
|
|
|
+ $pdf->br(1, 20);
|
|
|
+ $pdf->left('法定代表人或授权代表(签字):王雷', 100);
|
|
|
+ $pdf->br();
|
|
|
+
|
|
|
+ $pdf->br(1, 1);
|
|
|
+ $pdf->font($this->font_size, '');
|
|
|
+ $pdf->left('签署时间:'.$qdate, 90);
|
|
|
$pdf->br();
|
|
|
|
|
|
$pic = Dever::pic($base['agreement_sign']);
|
|
@@ -1520,16 +1544,17 @@ class Agreement
|
|
|
$cy = $pdf->GetY();
|
|
|
|
|
|
$x = $cx + 50;
|
|
|
- $y = $cy - 25;
|
|
|
+ $y = $cy - 50;
|
|
|
|
|
|
- $pdf->Image($pic, $x, $y, 15, 15);
|
|
|
+ $pdf->Image($pic, $x, $y, 30, 30);
|
|
|
|
|
|
- $x += 100;
|
|
|
+ $x += 20;
|
|
|
+ $y -= 48;
|
|
|
|
|
|
if ($info['sign']) {
|
|
|
$info['sign'] = Dever::pic($info['sign']);
|
|
|
if (strstr($info['sign'], 'http')) {
|
|
|
- $pdf->Image($info['sign'], $x, $y, 15, 15);
|
|
|
+ $pdf->Image($info['sign'], $x, $y, 30, 30);
|
|
|
}
|
|
|
}
|
|
|
|