22 lines
684 B
Python
22 lines
684 B
Python
{
|
|
'name': 'Employee PIN Generator',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Human Resources',
|
|
'summary': 'Randomly generate a unique 6-digit PIN for each employee',
|
|
'description': """
|
|
This module adds a unique 6-digit PIN to each employee record.
|
|
The PIN is globally unique across all companies.
|
|
A new PIN can be regenerated at any time via a button.
|
|
""",
|
|
'author': 'Suherdy Yacob',
|
|
'depends': ['hr'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'wizard/regenerate_pin_wizard_views.xml',
|
|
'views/hr_employee_views.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'LGPL-3',
|
|
}
|