trytond-sale_discount_old/__init__.py

15 lines
362 B
Python

#This file is part sale_discount module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
from trytond.pool import Pool
from move import *
from sale import *
def register():
Pool.register(
Sale,
SaleLine,
Move,
module='sale_discount', type_='model')