geom_test.py 207 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 from odoo import api, fields, models class GeomTest(models.Model): _description = 'GeomTest' _name = 'geom.test' name = fields.Char(index=True) geom = fields.GeoPolygon(index=True)