Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: sobreposição de itens #609

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 42 additions & 30 deletions src/NFe/Danfe.php
Original file line number Diff line number Diff line change
Expand Up @@ -546,24 +546,31 @@ protected function monta(
//##################################################################
//Verificando quantas linhas serão usadas para impressão das duplicatas
$linhasDup = 0;
$qtdPag = 0;
if (isset($this->dup) && $this->dup->length > 0) {
$qtdPag = $this->dup->length;
} elseif (isset($this->detPag) && $this->detPag->length > 0) {
$qtdPag = $this->detPag->length;
}
if (($qtdPag > 0) && ($qtdPag <= 7)) {
$linhasDup = 1;
} elseif (($qtdPag > 7) && ($qtdPag <= 14)) {
$linhasDup = 2;
} elseif (($qtdPag > 14) && ($qtdPag <= 21)) {
$linhasDup = 3;
} elseif ($qtdPag > 21) {
// chinnonsantos 11/05/2016: Limite máximo de impressão de duplicatas na NFe,
// só vai ser exibito as 21 primeiras duplicatas (parcelas de pagamento),
// se não oculpa espaço d+, cada linha comporta até 7 duplicatas.
$linhasDup = 3;
if (($qtdPag > 0) && ($qtdPag <= 7)) {
$linhasDup = 1;
} elseif (($qtdPag > 7) && ($qtdPag <= 14)) {
$linhasDup = 2;
} elseif (($qtdPag > 14) && ($qtdPag <= 21)) {
$linhasDup = 3;
} elseif ($qtdPag > 21) {
// chinnonsantos 11/05/2016: Limite máximo de impressão de duplicatas na NFe,
// só vai ser exibito as 21 primeiras duplicatas (parcelas de pagamento),
// se não oculpa espaço d+, cada linha comporta até 7 duplicatas.
$linhasDup = 3;
}
}

//Verificando quantas linhas serão usadas para impressão de pagamentos
$linhasPag = 0;
if ($this->exibirTextoFatura && isset($this->detPag) && $this->detPag->length > 0) {
$linhasPag = ceil($this->detPag->length / 4);
if ($linhasPag > 4) {
$linhasPag = 4;
}
}

//verifica se será impressa a linha dos serviços ISSQN
$linhaISSQN = 0;
if ((isset($this->ISSQNtot)) && ($this->getTagValue($this->ISSQNtot, 'vServ') > 0)) {
Expand All @@ -583,16 +590,17 @@ protected function monta(
$hcabecalho = 47; //para cabeçalho
$hdestinatario = 25; //para destinatario
$hduplicatas = 12; //para cada grupo de 7 duplicatas
$hpagamentos = 9; //para cada grupo de pagamentos
$hlocalentrega = 0;
if (isset($this->entrega)) {
$hlocalentrega = 25;
} else {
$hlocalentrega = 0;
}

$hlocalretirada = 0;
if (isset($this->retirada)) {
$hlocalretirada = 25;
} else {
$hlocalretirada = 0;
}

$himposto = 18; // para imposto
$htransporte = 25; // para transporte
$hissqn = 11; // para issqn
Expand All @@ -604,6 +612,7 @@ protected function monta(
+ $hlocalentrega
+ $hlocalretirada
+ ($linhasDup * $hduplicatas)
+ ($linhasPag * $hpagamentos)
+ $himposto + $htransporte
+ ($linhaISSQN * $hissqn)
+ $this->hdadosadic
Expand Down Expand Up @@ -708,7 +717,9 @@ protected function monta(
//caso tenha boleto imprimir fatura
if ($this->dup->length > 0) {
$y = $this->fatura($x, $y + 1);
} elseif ($this->exibirTextoFatura) {
}

if ($this->exibirTextoFatura) {
//Se somente tiver a forma de pagamento sem pagamento não imprimir nada
if (count($formaPag) == '1' && isset($formaPag[90])) {
$y = $y;
Expand All @@ -718,6 +729,7 @@ protected function monta(
$y = $this->pagamento($x, $y + 1);
}
}

//coloca os dados dos impostos e totais da NFe
$y = $this->imposto($x, $y + 1);
//coloca os dados do trasnporte
Expand Down Expand Up @@ -2005,16 +2017,16 @@ protected function fatura($x, $y)

return ($y + $h - 3);
}
if ($textoFatura !== "" && $this->exibirTextoFatura) {
$myH = 6;
$myW = $this->wPrint;
if ($this->orientacao == 'L') {
$myW -= $this->wCanhoto;
}
$aFont = ['font' => $this->fontePadrao, 'size' => 8, 'style' => ''];
$this->pdf->textBox($x, $y, $myW, $myH, $textoFatura, $aFont, 'C', 'L', 1, '');
$y += $myH + 1;
}
// if ($textoFatura !== "" && $this->exibirTextoFatura) {
// $myH = 6;
// $myW = $this->wPrint;
// if ($this->orientacao == 'L') {
// $myW -= $this->wCanhoto;
// }
// $aFont = ['font' => $this->fontePadrao, 'size' => 8, 'style' => ''];
// $this->pdf->textBox($x, $y, $myW, $myH, $textoFatura, $aFont, 'C', 'L', 1, '');
// $y += $myH + 1;
// }
if ($this->orientacao == 'P') {
$w = round($this->wPrint / 7.018, 0) - 1;
} else {
Expand Down