SetFont('DejaVu', 'B', 12); //Title $this->Cell(0,10,$this->dossier, 'B', 0, 'C'); //Line break $this->Ln(20); $this->SetFont('DejaVu', 'B', 7); $this->Cell(10,6,_('Date')); $this->Cell(30,6,_('Piece')); $this->Cell(20,6,_('Interne')); $this->Cell(25,6,_('Tiers')); $this->Cell(60,6,_('Commentaire')); $this->Cell(20,6,_('Devise'),0,0,'R'); $this->Cell(15,6,_('Montant'),0,0,'R'); $this->Ln(6); } function Footer() { //Position at 2 cm from bottom $this->SetY(-20); //Arial italic 8 $this->SetFont('Arial', 'I', 8); //Page number $this->Cell(0,6,'Date '.$this->date." - Page ".$this->PageNo().'/{nb}',0,0,'C'); $this->Ln(3); // Created by NOALYSS $this->Cell(0,6,'Created by NOALYSS, online on https://www.noalyss.eu',0,0,'C',false,'https://www.noalyss.eu'); } /** *@brief print the pdf *@param *@param *@return *@see */ function export() { $a_jrn=$this->get_ledger()->get_rowSimple($this->get_from(),$this->get_to()); $this->SetFont('DejaVu', '', 6); if ( $a_jrn == null ) return; $ledger=$this->get_ledger(); for ( $i=0;$iwrite_cell(10,5, smaller_date($row['date'])); $this->write_multi(30,3,$row['jr_pj_number']); $this->write_cell(20,5,$row['jr_internal']); $type=$this->cn->get_value("select jrn_def_type from jrn_def where jrn_def_id=$1",array($a_jrn[$i]['jr_def_id'])); $other=mb_substr($ledger->get_tiers($type,$a_jrn[$i]['jr_id']),0,25); $this->write_multi(25,3,$other,0,'L'); $positive=$row['montant']; $this->write_multi(60,3,$row['comment'],0,'L'); if ( $type == 'FIN' ) { $positive = $this->cn->get_value("select qf_amount from quant_fin ". " where jr_id=".$row['jr_id']); } if ( $row['currency_id'] != 0 ) { $this->write_cell(20,5,nbm(bcadd($row['sum_ocvat_amount'],$row['sum_ocamount']),2).$row['cr_code_iso'],0,0,'R'); } else { $this->write_cell(20,5,""); } $this->write_cell(15,5,nbm($positive),0,0,'R'); $this->line_new(5); } } }