2023-10-24 17:04:33 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-10-24 16:55:47 -04:00
|
|
|
|
2023-10-24 17:04:33 -04:00
|
|
|
from odoo import api, fields, models, _
|
|
|
|
|
from odoo.addons.website.models import ir_http
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
|
|
|
_inherit = 'res.partner'
|
|
|
|
|
|
|
|
|
|
surface = fields.Float(string='Surface')
|
|
|
|
|
ref_project = fields.Text(string='Project')
|
2023-10-24 17:15:05 -04:00
|
|
|
intent = fields.Boolean(string='Intent')
|
2023-10-24 17:04:33 -04:00
|
|
|
|