trytond-sale_invoice_cancel/__init__.py

12 lines
331 B
Python
Raw Permalink Normal View History

2012-07-18 11:09:33 +02:00
#This file is part sale_invoice_cancel module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
2012-07-09 19:23:39 +02:00
2012-10-09 09:37:05 +02:00
from trytond.pool import Pool
from .invoice import *
def register():
Pool.register(
Invoice,
module='sale_invoice_cancel', type_='model')