Latex za izvoze: IZVOZ-73: Ureditev izpisa odgovorov respondentov ob datapiping, Število

This commit is contained in:
patrik2020 2021-04-14 19:33:19 +02:00
parent 1ef79b161c
commit dacf49fcdb

View File

@ -273,7 +273,9 @@ class SteviloLatex extends LatexSurveyElement
} }
//izpis besedila enote //izpis besedila enote
$tex .= $this->encodeText($rowVrednost['naslov']); $stringEnota = $rowVrednost['naslov'];
$stringEnota = Common::getInstance()->dataPiping($stringEnota, $usr_id, $loop_id);
$tex .= $this->encodeText($stringEnota);
if($okvir == 1){ //ce rabimo prazen okvir, izpisi if($okvir == 1){ //ce rabimo prazen okvir, izpisi
//izpis praznega text box-a dolocene sirine in visine //izpis praznega text box-a dolocene sirine in visine
@ -315,9 +317,11 @@ class SteviloLatex extends LatexSurveyElement
$tex .= ' \\\\ '; //pojdi v novo vrstico $tex .= ' \\\\ '; //pojdi v novo vrstico
}else{ }else{
$tex .= ' & '; //v nov stolpec tabele $tex .= ' & '; //v nov stolpec tabele
} }
$tex .= ' '.$this->encodeText($rowVrednost['naslov']); $stringEnota = $rowVrednost['naslov'];
$stringEnota = Common::getInstance()->dataPiping($stringEnota, $usr_id, $loop_id);
$tex .= ' '.$this->encodeText($stringEnota);
if($indeksZaWhile==1&&$export_format=='pdf'){ //ce je prvi okvir in je pdf if($indeksZaWhile==1&&$export_format=='pdf'){ //ce je prvi okvir in je pdf
//$tex .= ' \hspace{0.5cm} '; //dodaj še nekaj prostora, za prvim okvirjem, da bo dovolj prostora //$tex .= ' \hspace{0.5cm} '; //dodaj še nekaj prostora, za prvim okvirjem, da bo dovolj prostora