mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
8 lines
183 B
Python
Executable File
8 lines
183 B
Python
Executable File
from odoo import models, fields
|
|
|
|
|
|
class PayslipLine(models.Model):
|
|
_inherit = 'hr.payslip.line'
|
|
|
|
date = fields.Date(string="Date Account", related='slip_id.date', store=True)
|