This commit is contained in:
gsinghpal
2026-04-07 20:49:21 -04:00
parent 3cc93b8783
commit 4fde4c7bd1
25 changed files with 1253 additions and 900 deletions

View File

@@ -49,9 +49,9 @@ Comprehensive Canadian payroll functionality inspired by QuickBooks Online Payro
Built for Odoo Enterprise Payroll (hr_payroll).
""",
'author': 'Your Company',
'author': 'Nexa Systems Inc.',
'website': '',
'license': 'LGPL-3',
'license': 'OPL-1',
'depends': [
'hr_payroll', # Core payroll functionality
'hr_work_entry_enterprise', # For payroll menu structure (Odoo 19)
@@ -59,10 +59,12 @@ Built for Odoo Enterprise Payroll (hr_payroll).
'hr_attendance', # For punch-in/out time tracking
'mail', # For ROE chatter/tracking
],
'external_dependencies': {
'python': ['lxml'],
},
'data': [
# Views
'views/pay_period_views.xml',
'views/tax_yearly_rates_views.xml',
'views/hr_employee_views.xml',
'views/hr_roe_views.xml',
'views/hr_payslip_views.xml',
@@ -75,7 +77,6 @@ Built for Odoo Enterprise Payroll (hr_payroll).
'views/payroll_tax_payment_schedule_views.xml',
'views/payroll_config_settings_views.xml',
'views/payroll_work_location_views.xml',
'views/payroll_tax_payment_schedule_views.xml',
'views/payroll_dashboard_views.xml',
'views/payroll_cheque_views.xml',
'views/payroll_cheque_print_wizard_views.xml',
@@ -95,18 +96,18 @@ Built for Odoo Enterprise Payroll (hr_payroll).
'data/hr_rule_parameter_data.xml',
# 2. Input types for additional pay (OT, Stat, Bonus)
'data/hr_payslip_input_type_data.xml',
# 3. Legacy tax rates data
'data/tax_yearly_rates_data.xml',
# 4. Payroll structure (creates structure and category)
# 3. Payroll structure (creates structure and category)
'data/hr_payroll_structure.xml',
# 5. Canadian salary rules (references structure and parameters)
'data/hr_salary_rules.xml',
# 6. Demo/Sample data (loads on install)
'demo/demo_data.xml',
# 6. Sequences
'data/ir_sequence_data.xml',
# Security (load last to ensure all models are registered)
'security/ir.model.access.csv',
],
'demo': [],
'demo': [
'demo/demo_data.xml',
],
'images': ['static/description/icon.png'],
'assets': {
'web.assets_backend': [
@@ -123,4 +124,5 @@ Built for Odoo Enterprise Payroll (hr_payroll).
'installable': True,
'application': True,
'auto_install': False,
'post_init_hook': '_fusion_payroll_post_init',
}