Initial import from Docker volume
This commit is contained in:
27
modules/stock_shipment_cost/__init__.py
Executable file
27
modules/stock_shipment_cost/__init__.py
Executable file
@@ -0,0 +1,27 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.modules.stock.stock_reporting_margin import Abstract
|
||||
from trytond.pool import Pool
|
||||
|
||||
from . import carrier, stock, stock_reporting_margin
|
||||
from .stock import ShipmentCostMixin
|
||||
|
||||
__all__ = ['register', 'ShipmentCostMixin']
|
||||
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
carrier.Carrier,
|
||||
stock.Move,
|
||||
stock.ShipmentOut,
|
||||
stock.ShipmentOutReturn,
|
||||
stock_reporting_margin.Context,
|
||||
module='stock_shipment_cost', type_='model')
|
||||
Pool.register(
|
||||
module='stock_shipment_cost', type_='wizard')
|
||||
Pool.register(
|
||||
module='stock_shipment_cost', type_='report')
|
||||
Pool.register_mixin(
|
||||
stock_reporting_margin.AbstractShipmentOutCostMixin, Abstract,
|
||||
module='stock_shipment_cost')
|
||||
Reference in New Issue
Block a user