mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-24 15:12:08 +02:00
10 lines
299 B
Python
10 lines
299 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class HrEmployee(models.Model):
|
|
_inherit = 'hr.employee'
|
|
|
|
hourly_cost = fields.Monetary('Hourly Cost', currency_field='currency_id',
|
|
groups="hr.group_hr_user", default=0.0)
|