trytond-sale_shipping_date/__init__.py

12 lines
294 B
Python
Raw Normal View History

2019-09-25 10:10:16 +02:00
# 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')