Skip to content

Commit 55754a0

Browse files
committed
Merge pull request #19 from viebig/fix-kilogramas
Peso(g) -> Peso(kg) na impressão de etiqueta
2 parents dc424af + c8dd18f commit 55754a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpSigep/Pdf/CartaoDePostagem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ private function _render()
288288
$nf = ' NF: '. $nf;
289289
}
290290

291-
$this->t($lPosChancela, 'Volume: 1/1 '.'Peso(g): ' . ((float)$objetoPostal->getPeso()) . $nf, 1, 'C', null);
291+
$this->t($lPosChancela, 'Volume: 1/1 '.'Peso(kg): ' . ((float)$objetoPostal->getPeso()) . $nf, 1, 'C', null);
292292

293293
// Número da etiqueta
294294
$this->setFillColor(100, 100, 200);

0 commit comments

Comments
 (0)