13 lines
470 B
Python
13 lines
470 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class HrEmployee(models.Model):
|
||
|
_inherit = 'hr.employee'
|
||
|
|
||
|
# FIXME: this field should be in module hr_timesheet, not sale_timesheet
|
||
|
timesheet_cost = fields.Monetary('Timesheet Cost', currency_field='currency_id', default=0.0)
|
||
|
currency_id = fields.Many2one('res.currency', related='company_id.currency_id', readonly=True)
|