mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
9 lines
190 B
Python
Executable File
9 lines
190 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
from odoo import models, fields
|
|
|
|
|
|
class HrContract(models.Model):
|
|
_inherit = 'hr.contract'
|
|
|
|
paid_hourly = fields.Boolean(string="Paid Hourly", default=False)
|