Files
tradon/modules/account_rule/sale.py
2026-03-14 09:42:12 +00:00

15 lines
520 B
Python

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.pool import PoolMeta
from trytond.transaction import Transaction
class Line(metaclass=PoolMeta):
__name__ = 'sale.line'
def get_invoice_line(self):
with Transaction().set_context(
taxes=[t.id for t in self.taxes],
return_=self.type == 'line' and self.quantity < 0):
return super().get_invoice_line()