oc_template/modules/account_co_co/country.py

18 lines
498 B
Python
Raw Permalink Normal View History

2024-06-15 11:00:00 -05:00
# 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
from trytond.pool import PoolMeta
__all__ = ['Subdivision']
class Subdivision(ModelSQL, ModelView):
"Subdivision"
__metaclass__ = PoolMeta
__name__ = 'country.subdivision'
dane_code = fields.Char('Codigo Dane',
help="Codigo Dane, usado en Colombia")