trytond-sale_processing2con.../__init__.py
Sergi Carol 488c099a1a Added new module
* Added a button on sale view that changes the state of the sale to draft
2017-02-07 14:51:31 +01:00

8 lines
272 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(
Sale,
module='sale_processing2confirmed', type_='model')