trytondo-sale_opportunity_m.../locations/city.py
camilogs 6b972da26b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: Se configura creación de ciudades y departamentos
2023-08-05 17:14:23 -05:00

13 lines
400 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 ModelSQL, ModelView, fields
class City(ModelSQL, ModelView):
'Ciudad'
__name__ = 'sale.city'
name = fields.Char('City')
code = fields.Char('Code')
parent = fields.Many2One('sale.department', 'Departamento')