trytond-sale_shipping_date/__init__.py
Sergio Morillo 850515ae79 Initial commit.
This commit refs #9719
2019-09-25 10:10:16 +02:00

12 lines
294 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.Sale,
sale.SaleLine,
module='sale_shipping_date', type_='model')