trytond-sale_cost_apply_inv.../__init__.py

15 lines
401 B
Python
Raw Normal View History

# 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_cost
from . import invoice
def register():
Pool.register(
sale_cost.CostType,
sale_cost.CostTemplate,
sale_cost.SaleCost,
invoice.InvoiceLine,
module='sale_cost_apply_invoice', type_='model')