# -*- coding: utf-8 -*- { 'name': "HR Recruitment Extended", 'summary': "Extention of HR Recruitment Module", 'description': """ Extention of HR Recruitment MOdule """, '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/Recruitment', 'version': '0.1', # any module necessary for this one to work correctly 'depends': ['base','hr_recruitment','hr','hr_recruitment_skills','website_hr_recruitment','requisitions'], # always loaded 'data': [ 'security/security.xml', 'security/ir.model.access.csv', 'data/cron.xml', 'data/sequence.xml', 'data/mail_template.xml', 'views/hr_recruitment.xml', 'views/hr_location.xml', 'views/stages.xml', 'views/hr_applicant_views.xml', 'views/hr_job_recruitment.xml', 'views/res_partner.xml', 'views/hr_recruitment_application_templates.xml', 'views/candidate_experience.xml', 'views/recruitment_attachments.xml', 'views/hr_employee_education_employer_family.xml', 'views/hr_recruitment_source.xml', 'views/requisitions.xml', 'views/skills.xml', 'wizards/post_onboarding_attachment_wizard.xml', # 'views/resume_pearser.xml', ], 'assets': { 'web.assets_backend': [ 'hr_recruitment_extended/static/src/img/pdf_icon.png', ], 'web.assets_frontend': [ 'hr_recruitment_extended/static/src/js/website_hr_applicant_form.js', 'hr_recruitment_extended/static/src/js/post_onboarding_form.js', ], } }