trytond-sale_from_openerp/__init__.py
Sergi Almacellas Abellana 9c3fb67d6a Initial commit
2014-04-07 14:05:03 +02:00

13 lines
303 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 .sale import *
def register():
Pool.register(
StockMove,
Sale,
SaleLine,
module='sale_from_openerp', type_='model')