mirror of
https://gitlab.com/datalifeit/trytond-sale_kit_shipment_move_price
synced 2023-12-14 06:23:03 +01:00
788f64eda7
(cherry picked from commit 018a5a76f7
)
16 lines
459 B
Python
16 lines
459 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 sale
|
|
from . import move
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
sale.Sale,
|
|
move.Move,
|
|
module='sale_kit_shipment_move_price', type_='model')
|
|
Pool.register(
|
|
sale.SaleValued,
|
|
module='sale_kit_shipment_move_price', type_='model',
|
|
depends=['stock_valued'])
|