23 lines
669 B
Python
23 lines
669 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Employee Documents',
|
|
'version': '1.0',
|
|
'category': 'Human Resources',
|
|
'summary': 'Manage Employee Documents',
|
|
'description': """
|
|
This module allows you to manage employee documents such as Offer Letters, Contracts, ID Proofs, etc.
|
|
It adds a documents tab in the Employee form view.
|
|
""",
|
|
'author': 'Antigravity',
|
|
'depends': ['hr'],
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/employee_document_views.xml',
|
|
'views/hr_employee_views.xml',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
}
|