trytondo-account_co_co/country.py

23 lines
617 B
Python
Raw Normal View History

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.model import ModelView, ModelSQL, fields, DeactivableMixin
from trytond.pool import PoolMeta, Pool
from trytond.pyson import Eval
from trytond.transaction import Transaction
2020-11-15 01:57:10 +01:00
__all__ = ['Subdivision']
class Subdivision(ModelSQL, ModelView):
"Subdivision"
__metaclass__ = PoolMeta
__name__ = 'country.subdivision'
dane_code = fields.Char('Codigo Dane',
help="Codigo Dane, usado en Colombia"
)