trytond-stock_shipment_web_.../__init__.py
Francisco jose f0f0ef8642 Allow to send internal shipment links
This commit refs #14613


(cherry picked from commit bfa7d23bc6)
2020-10-20 09:25:33 +00:00

20 lines
603 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 . import shipment
from . import configuration
from . import company
def register():
Pool.register(
shipment.ShipmentOut,
shipment.ShipmentIn,
shipment.ShipmentInternal,
shipment.SendLinkStart,
configuration.Configuration,
company.Company,
module='stock_shipment_web_link', type_='model')
Pool.register(
shipment.SendLink,
module='stock_shipment_web_link', type_='wizard')