mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-23 07:12:04 +02:00
12 lines
359 B
Python
12 lines
359 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
class FleetVehicleLogContract(models.Model):
|
|
_inherit = 'fleet.vehicle.log.contract'
|
|
|
|
purchaser_employee_id = fields.Many2one(
|
|
related='vehicle_id.driver_employee_id',
|
|
string='Driver (Employee)',
|
|
)
|