-
-
Save htgoebel/46b53878c6055810b9090fbfb6384263 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from trytond.model import fields | |
from trytond.pool import PoolMeta | |
__all__ = ['Country'] | |
class Country(metaclass=PoolMeta): | |
__name__ = 'country.country' | |
active = fields.Boolean('Active') | |
sequence = fields.Integer('Sequence') | |
@classmethod | |
def __setup__(cls): | |
super(Country, cls).__setup__() | |
cls._order.insert(0, ('sequence', 'ASC')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment