[IMP] hr_payslip_line_date: Add hr_payslip_line_date to Odoo v13

Add the hr_payslip_line module to Odoo13

H3953
This commit is contained in:
Leighton Pennicott
2020-10-08 16:31:39 -04:00
committed by Jared Kipe
parent 157670291a
commit 031af239e5
6 changed files with 83 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
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)