13 lines
482 B
Python
13 lines
482 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
from flectra 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)
|