22 lines
516 B
Python
Executable File
22 lines
516 B
Python
Executable File
from trytond.pool import Pool
|
|
|
|
from . import (
|
|
price, price_value, ir)
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
price.Price,
|
|
price.FixType,
|
|
price.MarketArea,
|
|
price.Calendar,
|
|
price.CalendarLine,
|
|
price.Product,
|
|
price.Composite,
|
|
price_value.PriceValue,
|
|
price_value.PriceValueReport,
|
|
price_value.PVRContext,
|
|
price_value.PriceValueReport2,
|
|
price_value.PVRContext2,
|
|
module='price', type_='model')
|