You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
695 B
16 lines
695 B
# -*- encoding: utf-8 -*-
|
|
##############################################################################
|
|
# For copyright and license notices, see __openerp__.py file in root directory
|
|
##############################################################################
|
|
from openerp import models, fields
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
capital_country = fields.Many2one(
|
|
'res.country', string="Capital country",
|
|
help="Country of origin of the capital of this company")
|
|
capital_registered = fields.Integer(string="Capital registered")
|
|
turnover_range = fields.Many2one(comodel_name='crm.turnover_range')
|
|
turnover_number = fields.Integer()
|