trytond-intercompany_create.../__init__.py

12 lines
345 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 purchase
from . import sale
def register():
Pool.register(
purchase.Purchase,
sale.SaleLine,
module='intercompany_create_sales_from_purchase', type_='model')