trytond-stock_prevent_exced.../__init__.py

11 lines
301 B
Python
Raw Permalink Normal View History

2015-01-19 14:46:14 +01:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2018-02-21 16:28:16 +01:00
from . import shipment
2015-01-19 14:46:14 +01:00
def register():
Pool.register(
2018-02-21 16:28:16 +01:00
shipment.ShipmentOut,
2015-01-19 14:46:14 +01:00
module='stock_prevent_exceding_quantities', type_='model')