We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Al buscar el detalle del IVA se usan las líneas de tasas de una factura, que están agrupadas por tasa.
for inv_tax in invoice.tax_line: if 'iva' in inv_tax.name.lower(): [...]
Debe cambiarse y buscar las tasas por cada línea de factura:
for inv_line in invoice.invoice_line: for tax in inv_line.invoice_line_tax_id: if 'iva' in tax.name.lower(): [...]
The text was updated successfully, but these errors were encountered:
gdalmau
No branches or pull requests
Al buscar el detalle del IVA se usan las líneas de tasas de una factura, que están agrupadas por tasa.
Debe cambiarse y buscar las tasas por cada línea de factura:
The text was updated successfully, but these errors were encountered: