|
noalyss
Version-6.7.2
|
Public Member Functions | |
| Header () | |
| set_info ($p_from_poste, $to_poste, $p_from, $p_to) | |
| set_info(dossier,from poste,to poste, from periode, to periode) | |
Definition at line 230 of file class_pdf.php.
Reimplemented from PDF.
Definition at line 247 of file class_pdf.php.
References PDF\Cell(), from, from_poste, PDF\Ln(), to, and to_poste.
{
parent::Header();
$this->SetFont('DejaVu','B',8);
$titre=sprintf("Balance simple poste %s %s date %s %s",
$this->from_poste,
$this->to_poste,
$this->from,
$this->to);
$this->Cell(0,7,$titre,1,0,'C');
$this->Ln();
$this->SetFont('DejaVu','',6);
$this->Cell(20,7,'id','B');
$this->Cell(90,7,'Poste Comptable','B');
$this->Cell(20,7,'Débit','B',0,'L');
$this->Cell(20,7,'Crédit','B',0,'L');
$this->Cell(20,7,'Solde','B',0,'L');
$this->Cell(20,7,'D/C','B',0,'L');
$this->Ln();
}
| PDFBalance_simple::set_info | ( | $ | p_from_poste, |
| $ | to_poste, | ||
| $ | p_from, | ||
| $ | p_to | ||
| ) |
set_info(dossier,from poste,to poste, from periode, to periode)
| $p_from_poste | start = poste |
| $p_to_poste | end = poste |
| $p_from | periode start |
| $p_to | periode end |
Definition at line 239 of file class_pdf.php.
References $to_poste, from, from_poste, to, and to_poste.
{
$this->dossier='Balance simple '.dossier::name();
$this->from_poste=$p_from_poste;
$this->to_poste=$to_poste;
$this->from=$p_from;
$this->to=$p_to;
}