Created
January 26, 2013 21:19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
from decimal import Decimal | |
from trytond.modules.company import CompanyReport | |
from trytond.wizard import Wizard, StateAction | |
from trytond.pool import Pool, PoolMeta | |
from trytond.transaction import Transaction | |
__metaclass__ = PoolMeta | |
log = logging.getLogger(__name__) | |
class CloseSale(Wizard): | |
""" Close Sale """ | |
__name__ = 'sale_wizard.close' | |
start = StateAction('sale_wizard.close_sale_keyword') | |
@classmethod | |
def __setup__(cls): | |
super(CloseSale, cls).__setup__() | |
def transition_start(self): | |
return 'end' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment