# -*- coding: utf-8 -*- { 'name': "Payroll Tax Management", 'summary': "Manage Income Tax Declarations for Employees in Payroll", 'description': """ Payroll IT Declarations ======================== This module allows HR and payroll departments to manage and track Income Tax (IT) declarations submitted by employees. Features: --------- - Employee-wise tax declaration submission - HR approval workflow for declarations - Category-wise declaration limits (e.g. 80C, HRA, LTA, etc.) - Auto-calculation of eligible deductions - Integration with Odoo Payroll for accurate tax computation - Attach supporting documents (PDFs, images) - Employee self-service through portal Built with usability and compliance in mind, this module streamlines the IT declaration process and ensures transparency and efficiency across the organization. Developed by: Pranay """, 'author': "Pranay", 'website': "https://www.ftprotech.com", # Categories can be used to filter modules in modules listing # Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml # for the full list 'category': 'Human Resources', 'version': '0.1', # any module necessary for this one to work correctly 'depends': ['base','hr','hr_payroll','hr_employee_extended'], # always loaded 'data': [ 'security/ir.model.access.csv', 'views/payroll_periods.xml', 'views/investment_types.xml', # 'views/payroll_periods.xml', 'views/slab_master.xml', 'views/emp_it_declaration.xml', 'views/report_it_tax_statement.xml', 'report/report_action.xml', 'report/it_tax_template.xml', 'views/it_tax_menu_and_wizard_view.xml', 'wizards/children_education_costing.xml', 'wizards/employee_life_insurance.xml', 'wizards/nsc_declaration.xml', 'wizards/self_occupied_property.xml', 'wizards/letout_house_property.xml', 'wizards/nsc_income_loss.xml', # 'views/it_investment_type.xml', # 'views/it_investment_costing.xml' ], }