13 lines
319 B
Python
13 lines
319 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
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')
|
|
intent = fields.Bollean(string='Intent')
|
|
|