You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
331 B
11 lines
331 B
#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. |
|
|
|
from trytond.pool import Pool |
|
from .invoice import * |
|
|
|
def register(): |
|
Pool.register( |
|
Invoice, |
|
module='sale_invoice_cancel', type_='model')
|
|
|