mirror of
https://github.com/NaN-tic/trytond-purchase_request_categories.git
synced 2023-12-14 06:12:54 +01:00
10 lines
381 B
Python
10 lines
381 B
Python
# This file is part purchase_request_categories module for Tryton.
|
|
# 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_request
|
|
|
|
def register():
|
|
Pool.register(
|
|
purchase_request.PurchaseRequest,
|
|
module='purchase_request_categories', type_='model')
|