fix: Se asigna tipo de dato adecuado al campo prospect_city

This commit is contained in:
2023-08-07 11:40:55 -05:00
parent a6b53dd021
commit c5c80d348a
3 changed files with 6 additions and 5 deletions

View File

@@ -6,6 +6,7 @@ from trytond.model import ModelSQL, ModelView, fields
class City(ModelSQL, ModelView):
'Ciudad'
__name__ = 'sale.city'
_rec_name = 'name'
name = fields.Char('City')
code = fields.Char('Code')