9 lines
292 B
Python
9 lines
292 B
Python
from trytond.pool import Pool
|
|
from . import automation,rules,freight_booking #, document
|
|
|
|
def register():
|
|
Pool.register(
|
|
automation.AutomationDocument,
|
|
rules.AutomationRuleSet,
|
|
freight_booking.FreightBookingInfo,
|
|
module='automation', type_='model') |