This commit is contained in:
gsinghpal
2026-04-07 22:03:20 -04:00
parent f4c6dca171
commit c30a61c93f
7 changed files with 59 additions and 81 deletions

View File

@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-
from . import hr_employee
from . import hr_contract
# hr_contract.py is not imported: hr.contract model does not exist in Odoo 19
# (replaced by hr.version in Enterprise payroll)
from . import hr_payslip
from . import hr_roe
from . import hr_tax_remittance

View File

@@ -293,14 +293,3 @@ class HrTaxRemittance(models.Model):
remittance.action_calculate_amounts()
return remittance
class HrTaxRemittanceSequence(models.Model):
"""Create sequence for tax remittance"""
_name = 'hr.tax.remittance.sequence'
_description = 'Tax Remittance Sequence Setup'
_auto = False
def init(self):
# This will be handled by ir.sequence data instead
pass