mercredi
This commit is contained in:
parent
b5a6e4805c
commit
8cf9af4e26
1 changed files with 14 additions and 4 deletions
|
|
@ -7,7 +7,17 @@ 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.Boolean(string='Intent')
|
||||
|
||||
surface = fields.Float(string='Surface (ha)')
|
||||
lot_number = fields.Text(string='Lot Number')
|
||||
ref_project = fields.Text(string='Project No')
|
||||
intent_signing = fields.Boolean(string='Intent to sign')
|
||||
cyberimpact = fields.Boolean(string='Cyberimpact')
|
||||
specification_date = fields.Date(string='Specification date')
|
||||
crm_stage_activity = fields.Text(string='Project No')
|
||||
interest_level = fields.Selection(selection=[('1','None'),
|
||||
('2','Low'),
|
||||
('3','Average'),
|
||||
('4','High')], string='Interest Level')
|
||||
company_use = fields.Text(string='Company')
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue