kalenislims/lims_sale/invoice.py

14 lines
408 B
Python

# This file is part of lims_sale module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.model import fields
from trytond.pool import PoolMeta
class InvoiceLine(metaclass=PoolMeta):
__name__ = 'account.invoice.line'
lims_sale_line_origin = fields.Many2One('sale.line', 'Quote line',
readonly=True)