1
0
Fork 0
mirror of synced 2023-12-14 06:13:01 +01:00
trytond-sale_price_list_rec.../__init__.py
2015-06-09 10:47:21 +02:00

14 lines
418 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 .sale import *
def register():
Pool.register(
Sale,
RecomputePriceStart,
module='sale_price_list_recompute_price', type_='model')
Pool.register(
RecomputePrice,
module='sale_price_list_recompute_price', type_='wizard')