trytond-sale_line_address/__init__.py
2018-10-27 23:35:00 +02:00

13 lines
292 B
Python

#The COPYRIGHT file at the top level of this repository contains the full
#copyright notices and license terms.
from trytond.pool import Pool
from . import sale
def register():
Pool.register(
sale.SaleLine,
sale.Sale,
module='sale_line_address', type_='model')