trytond-sale_discount_old/__init__.py

15 lines
362 B
Python
Raw Normal View History

2012-07-18 11:09:01 +02:00
#This file is part sale_discount module for Tryton.
2012-11-27 17:03:05 +01:00
#The COPYRIGHT file at the top level of this repository contains
2012-07-18 11:09:01 +02:00
#the full copyright notices and license terms.
2012-10-16 17:09:39 +02:00
from trytond.pool import Pool
from move import *
2008-12-30 08:27:10 +01:00
from sale import *
2012-10-16 17:09:39 +02:00
def register():
Pool.register(
Sale,
2012-10-16 17:09:39 +02:00
SaleLine,
Move,
module='sale_discount', type_='model')