mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
hr_payroll_holidays hr_payroll_input_name_report hr_payroll_input_report hr_payroll_payment hr_payroll_timesheet hr_payslip_line_date l10n_us_fl_hr_payroll l10n_us_hr_payroll l10n_us_mo_hr_payroll l10n_us_oh_hr_payroll l10n_us_va_hr_payroll
7 lines
182 B
Python
Executable File
7 lines
182 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) |