18 lines
498 B
Python
18 lines
498 B
Python
|
# 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")
|