Skip to content

Commit

Permalink
Correção campo produto
Browse files Browse the repository at this point in the history
Quando se tem vários itens, normalmente acima de 20, os itens estão sobrescrevendo os campos de totais.
  • Loading branch information
faio authored Dec 19, 2023
1 parent 9e7bf68 commit e5fd954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytrustnfe/nfe/danfce.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def _draw_product_table(self, rows, colWidths, rowHeights):
)

w, h = table.wrapOn(self.canvas, 200, 450)
table.drawOn(self.canvas, 0, self.current_height - (h * 1.2))
table.drawOn(self.canvas, 0, self.current_height - h)
self.current_height -= h * 1.1

def totais(self, oXML=None):
Expand Down

0 comments on commit e5fd954

Please sign in to comment.