12 lines
367 B
Python
12 lines
367 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class ResPartner(models.Model):
|
||
|
_inherit = 'res.partner'
|
||
|
|
||
|
plan_to_change_car = fields.Boolean('Plan To Change Car', default=False, tracking=True)
|
||
|
plan_to_change_bike = fields.Boolean('Plan To Change Bike', default=False)
|